:root {
  --ink: #212121;
  --ink-soft: #3e3e3e;
  --muted: #6b6b6b;
  --line: #e6e6e6;
  --paper: #f6f5f8;
  --white: #ffffff;
  --accent: #cc9933;
  --accent-deep: #b8862b;
  --accent-soft: #f6edd8;
  --navy: #0d0625;
  --danger: #b42318;
  --success: #067647;
  --shadow-sm: 0 1px 2px rgba(13, 6, 37, 0.06);
  --shadow: 0 12px 32px rgba(13, 6, 37, 0.10);
  --shadow-lg: 0 24px 64px rgba(13, 6, 37, 0.16);
  --radius: 0;
  --max: 1200px;
  --font: "Albert Sans", Arial, Helvetica, sans-serif;
  --display: "Albert Sans", Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-radius: 0 !important;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

h1, h2, h3, h4 { font-family: var(--display); letter-spacing: -0.02em; }

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ============ Header ============ */

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 0.45rem 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.topbar a { color: #fff; font-weight: 600; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.brand-logo {
  width: auto;
  height: 78px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.brand-text strong {
  display: block;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.15s ease;
}

.nav a:hover { color: var(--accent-deep); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* ============ Buttons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.8rem 1.4rem;
  font-weight: 700;
  font-size: 0.93rem;
  font-family: var(--display);
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.18s ease;
}

.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #1d3349; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(14, 156, 133, 0.35); }
.btn-ghost { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-wa { background: #1fa855; color: #fff; }
.btn-wa:hover { background: #179047; transform: translateY(-1px); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.86rem; }
.btn-lg { padding: 1rem 1.9rem; font-size: 1rem; }
.btn-block { width: 100%; }

.cart-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.05rem;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--display);
  transition: background 0.15s ease;
}

.cart-chip:hover { background: #1d3349; }

.cart-chip .badge {
  min-width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
  cursor: pointer;
}

/* ============ Hero ============ */

.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(11, 26, 42, 0.98) 0%,
    rgba(11, 26, 42, 0.95) 38%,
    rgba(11, 26, 42, 0.72) 58%,
    rgba(11, 26, 42, 0.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 7.5rem;
  max-width: 620px;
  animation: rise 0.8s ease both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}

.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2fd4b5;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: normal;
  color: #2fd4b5;
}

.hero p {
  margin: 0 0 2.2rem;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats div strong {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
}

.hero-stats div span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* ============ Trust strip ============ */

.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.4rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.trust-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.9rem;
  font-family: var(--display);
}

.trust-item span {
  color: var(--muted);
  font-size: 0.8rem;
}

/* ============ Sections ============ */

.section { padding: 5rem 0; }
.section-tight { padding: 3.5rem 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.section-head .kicker {
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  margin: 0 0 0.4rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

/* ============ Categories ============ */

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.cat-tile {
  position: relative;
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: all 0.22s ease;
  overflow: hidden;
}

.cat-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #2fd4b5);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.cat-tile:hover {
  background: #fff;
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.cat-tile:hover::before { opacity: 1; }

.cat-tile .cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.cat-tile h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.cat-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.cat-tile .cat-link {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ============ Product cards ============ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.22s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.product-card .thumb {
  aspect-ratio: 3 / 4;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.product-card .thumb img {
  position: absolute;
  inset: 0.65rem;
  width: calc(100% - 1.3rem);
  height: calc(100% - 1.3rem);
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}

.product-card:hover .thumb img { transform: scale(1.03); }

.product-card .body {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.product-card .meta {
  color: var(--accent-deep);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.product-card h2,
.product-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.product-card .desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.product-card .price {
  margin-top: auto;
  padding-top: 0.7rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--ink);
}

.product-card .price small {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.78rem;
  font-family: var(--font);
}

/* ============ CTA band ============ */

.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, #17453c 100%);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 212, 181, 0.25), transparent 70%);
}

.cta-band h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 800;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 52ch;
}

/* ============ Page hero ============ */

.page-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 3.25rem 0;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
}

.page-hero p { margin: 0; color: var(--muted); max-width: 58ch; }

/* ============ Layout / panels ============ */

.layout-split {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.75rem;
  align-items: start;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.panel h3 { margin: 0 0 1rem; font-size: 1rem; font-weight: 700; }

.filter-list { display: flex; flex-direction: column; gap: 0.3rem; }

.filter-list a {
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.15s ease;
}

.filter-list a:hover,
.filter-list a.active {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.search-bar { display: flex; gap: 0.6rem; margin-bottom: 1.4rem; }

.search-bar input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1.15rem;
  background: #fff;
}

/* ============ Product detail ============ */

.product-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.gallery {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  aspect-ratio: 3 / 4;
  min-height: 0;
  position: sticky;
  top: 100px;
  overflow: hidden;
}

.gallery-main img {
  position: absolute;
  inset: 1.1rem;
  width: calc(100% - 2.2rem);
  height: calc(100% - 2.2rem);
  object-fit: contain;
  object-position: center;
}

.detail-card h1 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
}

.detail-card .lead { color: var(--muted); margin: 0 0 1.4rem; font-size: 1.02rem; }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: grid;
  gap: 0.55rem;
}

.feature-list li {
  padding-left: 1.6rem;
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.price-lg {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0.4rem 0 0.25rem;
}

.stock-note { color: var(--muted); font-size: 0.88rem; margin-bottom: 1.2rem; }

.qty-row { display: flex; gap: 0.75rem; align-items: end; flex-wrap: wrap; }
.qty-row select { min-width: 200px; }
.qty-row input { max-width: 110px; }

/* ============ Forms ============ */

.form-grid { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14, 156, 133, 0.12);
}

textarea { min-height: 110px; resize: vertical; }

/* ============ Tables / misc ============ */

.table { width: 100%; border-collapse: collapse; }

.table th, .table td {
  padding: 0.95rem 0.6rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.table th {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 700;
}

.alert {
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  margin: 1rem 0;
  font-weight: 600;
  font-size: 0.92rem;
}

.alert-success { background: #e7f8ef; color: var(--success); }
.alert-error { background: #fdecec; color: var(--danger); }

.empty { text-align: center; padding: 3.5rem 1rem; color: var(--muted); }

.pagination { display: flex; gap: 0.45rem; margin-top: 1.75rem; flex-wrap: wrap; }

.pagination a {
  min-width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.pagination a.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.auth-box, .checkout-grid { display: grid; gap: 1.5rem; }
.auth-box { max-width: 460px; margin: 0 auto; }
.checkout-grid { grid-template-columns: 1.2fr 0.8fr; align-items: start; }

.content-prose {
  max-width: 74ch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}

.content-prose p { color: var(--ink-soft); line-height: 1.75; }

.page-cover {
  margin: 0 0 1.5rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.page-cover img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

/* ============ About band ============ */

.about-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.about-visual {
  min-height: 360px;
  border-radius: 20px;
  background: center / cover no-repeat;
  background-image: none;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-visual .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13, 30, 48, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  color: #fff;
}

.about-visual h3 { margin: 0 0 0.4rem; font-size: 1.4rem; font-weight: 800; }
.about-visual p { margin: 0; color: rgba(255,255,255,0.82); font-size: 0.94rem; }

/* ============ Footer ============ */

.site-footer {
  margin-top: 5rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-grid h4,
.footer-grid .footer-heading {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: #fff;
  font-weight: 700;
}

.footer-grid p, .footer-grid a {
  color: rgba(255, 255, 255, 0.65);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}

.footer-grid a:hover { color: #2fd4b5; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.footer-brand img {
  width: auto;
  height: 96px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
}

.footer-brand strong {
  font-family: var(--display);
  font-size: 1.08rem;
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

/* ============ WhatsApp float ============ */

.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1fa855;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(31, 168, 85, 0.45);
  transition: transform 0.18s ease;
}

.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ Responsive ============ */

@media (max-width: 1024px) {
  .category-grid, .product-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .category-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .layout-split, .product-detail, .checkout-grid, .about-band, .footer-grid { grid-template-columns: 1fr; }
  .gallery { position: static; aspect-ratio: auto; min-height: 0; max-height: none; overflow: visible; }
  .cta-band { grid-template-columns: 1fr; padding: 2.5rem 1.75rem; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.5rem 1.5rem;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--shadow);
  }
  .mobile-toggle { display: inline-grid; place-items: center; }
  .header-inner { position: relative; }
  .hero-content { padding: 4.5rem 0 5rem; }
  .hero-media { background-position: 80% center; }
  .hero-stats { gap: 1.5rem; }
  .topbar { display: none; }
}

@media (max-width: 560px) {
  .container { width: min(var(--max), calc(100% - 1.75rem)); }
  .category-grid, .product-grid, .form-row { grid-template-columns: 1fr; }
  .trust-strip .container { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .account-layout { grid-template-columns: 1fr !important; }
  .table { display: block; overflow-x: auto; }
  .brand-text span { display: none; }
}

/* Vivid brand refresh */
:root {
  --ink: #071b2d;
  --ink-soft: #314d59;
  --muted: #6a7e84;
  --line: #dce7e7;
  --paper: #f2f8f7;
  --accent: #c7ea35;
  --accent-deep: #527c08;
  --accent-soft: #eef9c9;
  --navy: #071b2d;
  --success: #07865f;
  --shadow: 0 18px 45px rgba(0, 87, 102, .12);
}
body { background: #fff; }
.topbar { background: #061725; }
.site-header { background: rgba(255,255,255,.97); }
.brand { min-width: 0; }
.brand-logo { width: auto; height: 78px; object-fit: contain; object-position: left center; }
.header-search { background: #f0f7f6; border-color: #d5e4e3; }
.header-search:focus-within { border-color: #00a6a6; box-shadow: 0 0 0 3px rgba(0,166,166,.12); }
.header-search button, .cart-chip { background: #071b2d; }
.header-search button:hover, .cart-chip:hover { background: #06394a; }
.commerce-nav-wrap { box-shadow: 0 5px 16px rgba(7,27,45,.04); }
.grid-icon, .nav-whatsapp, .section-head .kicker, .text-link { color: #008e96; }
.nav a:hover { color: #008e96; }
.nav a::after { background: #17d6d2; }
.hero { background: #071b2d; }
.hero-media { background-image: none; background-position: center; }
.hero-media::after { background: linear-gradient(90deg, rgba(5,20,35,.98) 0%, rgba(5,20,35,.82) 39%, rgba(5,20,35,.08) 62%, rgba(5,20,35,0) 100%); }
.hero-eyebrow { color: #dff6f3; border-color: rgba(23,214,210,.32); background: rgba(23,214,210,.1); }
.hero-eyebrow::before { background: #17d6d2; }
.hero h1 em { color: #c7ea35; }
.btn-accent { background: #c7ea35; color: #071b2d; }
.btn-accent:hover { background: #d5f653; }
.trust-item .icon { background: #071b2d; color: #17d6d2; }
.quick-links a:hover { border-color: #17d6d2; color: #007f91; background: #e6fafa; }
.cat-tile::before { background: linear-gradient(#17d6d2, #007f91); }
.cat-tile .cat-icon, .use-case-grid > a > span { background: #e5fafa; color: #007f91; }
.featured-section { background: linear-gradient(180deg, #f0f8f7, #f8fbfa); }
.product-card .thumb { background: #fff; }
.product-card .meta, .product-action { color: #007f91; }
.order-guide { background: linear-gradient(135deg, #e7f7f6, #f3f8e2); }
.cta-band { background: linear-gradient(120deg, #071b2d, #005c68); }
.site-footer { background: #061725; }
.footer-brand img { width: auto; height: 96px; padding: 10px 14px; background: #fff; border-radius: 14px; }

@media (max-width: 1100px) {
  .brand { min-width: 0; }
   .brand-logo { width: auto; height: 64px; }
}
@media (max-width: 560px) {
  .brand { min-width: 0; }
   .brand-logo { width: auto; height: 56px; }
  .hero-media { background-position: 62% center; }
  .hero-media::after { background: linear-gradient(90deg, rgba(5,20,35,.96), rgba(5,20,35,.7)); }
}

/* Denser catalogue rhythm */
.section { padding: 4rem 0; }
.section-head { margin-bottom: 1.65rem; }
.section-head h2 { font-size: clamp(1.55rem, 2.5vw, 2.05rem); }
.section-head p { font-size: .88rem; }
.category-section { padding: 3.25rem 0; }
.category-grid { gap: .8rem; }
.cat-tile { min-height: 168px; padding: 1.2rem; border-radius: 15px; }
.cat-tile .cat-icon { width: 36px; height: 36px; margin-bottom: .7rem; }
.cat-tile h3 { font-size: .9rem; }
.cat-tile p { font-size: .74rem; line-height: 1.45; }
.cat-tile .cat-link { padding-top: .55rem; margin-top: auto; font-size: .73rem; }
.use-cases-section { padding: 0 0 3.5rem; }
.use-case-grid { grid-template-columns: repeat(4, 1fr); gap: .75rem; }
.use-case-grid > a { min-height: 112px; grid-template-columns: auto 1fr; gap: .7rem; padding: 1rem; border-radius: 14px; }
.use-case-grid > a > span { width: 34px; height: 34px; }
.use-case-grid h3 { font-size: .84rem; }
.use-case-grid p { font-size: .7rem; line-height: 1.4; }
.use-case-grid > a > b { display: none; }
.featured-section { padding: 3.5rem 0; background: #f3f6f1; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.featured-section .product-grid { grid-template-columns: repeat(5, 1fr); gap: .85rem; }
.featured-section .product-card { border-radius: 14px; }
.featured-section .product-card .thumb { padding: 0.45rem 0.55rem; }
.featured-section .product-card .body { padding: 1rem; }
.featured-section .product-card h2,
.featured-section .product-card h3 { font-size: .9rem; }
.featured-section .product-card .price { font-size: .95rem; padding-top: .5rem; }
.product-action { display: flex; justify-content: space-between; align-items: center; margin-top: .7rem; padding-top: .7rem; border-top: 1px solid var(--line); color: var(--accent-deep); font-size: .74rem; font-weight: 800; }
.product-action b { font-size: .95rem; }
.order-guide-section { padding: 3.5rem 0; }
.order-guide { padding: 2.6rem; }
.cta-band { padding: 3rem; }

@media (max-width: 1100px) {
  .featured-section .product-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
  .use-case-grid { grid-template-columns: 1fr 1fr; }
  .featured-section .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .section { padding: 3rem 0; }
  .category-section { padding: 2.5rem 0; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .cat-tile { min-height: 158px; }
  .use-case-grid { grid-template-columns: 1fr; }
  .featured-section .product-grid { grid-template-columns: 1fr 1fr; }
}

/* Commerce-first navigation and discovery */
.header-main {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3rem);
}
.header-search {
  min-width: 0;
  height: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .7rem;
  padding-left: 1rem;
  border: 1px solid #dce3df;
  border-radius: 999px;
  background: #f5f7f4;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.header-search:focus-within { background: #fff; border-color: #94b52f; box-shadow: 0 0 0 3px rgba(148,181,47,.12); }
.header-search svg { width: 19px; height: 19px; fill: none; stroke: #71807c; stroke-width: 1.8; stroke-linecap: round; }
.header-search input { min-width: 0; padding: 0; border: 0; background: transparent; box-shadow: none; }
.header-search input:focus { box-shadow: none; }
.header-search button { height: 40px; margin-right: 3px; padding: 0 1.25rem; border: 0; border-radius: 999px; background: var(--ink); color: #fff; font-weight: 700; cursor: pointer; }
.header-actions { gap: .9rem; }
.account-link { padding-right: .9rem; border-right: 1px solid var(--line); white-space: nowrap; }
.account-link small, .account-link strong { display: block; line-height: 1.2; }
.account-link small { color: var(--muted); font-size: .65rem; }
.account-link strong { margin-top: .18rem; font-size: .82rem; }
.commerce-nav-wrap { border-top: 1px solid rgba(16,35,31,.07); background: #fff; }
.commerce-nav-inner { min-height: 49px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.commerce-nav-inner .nav { flex: 1; justify-content: flex-start; gap: clamp(1rem, 2vw, 1.75rem); }
.commerce-nav-inner .nav a { font-size: .82rem; white-space: nowrap; }
.commerce-nav-inner .nav a::after { bottom: -.95rem; }
.commerce-nav-inner .all-products { color: var(--ink); font-weight: 800; }
.grid-icon { color: var(--accent-deep); margin-right: .2rem; }
.nav-whatsapp { color: var(--accent-deep); font-size: .8rem; font-weight: 800; white-space: nowrap; }
.nav-whatsapp span { margin-left: .25rem; }
.commerce-nav-inner > .mobile-toggle { display: none; width: auto; padding: 0; border: 0; gap: 4px; background: transparent; }
.commerce-nav-inner > .mobile-toggle b { margin-left: .45rem; font-size: .8rem; }

.hero { min-height: 540px; }
.hero-content { padding: 4.8rem 0 5.2rem; }
.hero h1 { font-size: clamp(2.5rem, 4.7vw, 4.15rem); }
.hero-stats { margin-top: 2.2rem; padding-top: 1.5rem; }
.quick-find { background: #fff; border-bottom: 1px solid var(--line); }
.quick-find-inner { min-height: 64px; display: flex; align-items: center; gap: 1.5rem; }
.quick-find-inner > strong { font-size: .78rem; white-space: nowrap; }
.quick-links { display: flex; align-items: center; gap: .55rem; flex-wrap: wrap; }
.quick-links a { padding: .38rem .78rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); background: #fbfcfa; font-size: .75rem; font-weight: 600; }
.quick-links a:hover { border-color: #aecb55; color: var(--accent-deep); background: var(--accent-soft); }
.use-cases-section { padding-top: 0; }
.text-link { color: var(--accent-deep); font-weight: 800; font-size: .88rem; }
.use-case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.use-case-grid > a { min-height: 125px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; padding: 1.35rem 1.5rem; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: transform .18s, box-shadow .18s, border-color .18s; }
.use-case-grid > a:hover { transform: translateY(-2px); border-color: #cbd8aa; box-shadow: var(--shadow); }
.use-case-grid > a > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); font: 800 .67rem var(--display); }
.use-case-grid h3 { margin: 0 0 .25rem; font-size: .98rem; }
.use-case-grid p { margin: 0; color: var(--muted); font-size: .8rem; }
.use-case-grid b { color: var(--accent-deep); }
.order-guide-section { padding-top: 0; }
.order-guide { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; padding: 3.5rem; border-radius: 28px; background: #eef2eb; }
.order-guide-copy .kicker { margin: 0 0 .6rem; color: var(--accent-deep); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.order-guide-copy h2 { margin: 0 0 1rem; font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1.15; }
.order-guide-copy > p:not(.kicker) { margin: 0 0 1.5rem; color: var(--ink-soft); }
.order-steps { margin: 0; padding: 0; list-style: none; display: grid; gap: .75rem; }
.order-steps li { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1rem; padding: 1rem 1.1rem; background: #fff; border: 1px solid rgba(16,35,31,.07); border-radius: 15px; }
.order-steps li > span { color: var(--accent-deep); font: 800 .7rem var(--display); }
.order-steps strong { font-size: .9rem; }
.order-steps p { margin: .15rem 0 0; color: var(--muted); font-size: .78rem; }

@media (max-width: 1100px) {
  .header-main { grid-template-columns: auto 1fr auto; gap: 1rem; }
  .brand-text span, .account-link small { display: none; }
  .commerce-nav-inner .nav { gap: 1rem; overflow-x: auto; scrollbar-width: none; }
}
@media (max-width: 860px) {
  .header-main { grid-template-columns: auto auto; padding: .65rem 0; }
  .header-search { grid-column: 1 / -1; grid-row: 2; height: 44px; }
  .header-actions { justify-self: end; }
  .commerce-nav-inner { position: relative; }
  .commerce-nav-inner > .mobile-toggle { display: inline-flex; align-items: center; }
  .commerce-nav-inner .nav.open { top: 100%; padding: 1rem; }
  .nav-whatsapp { margin-left: auto; }
  .hero { min-height: 520px; }
  .use-case-grid, .order-guide { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .topbar { display: block; }
  .topbar .container > span { display: none; }
  .topbar .container { justify-content: center; }
   .brand-logo { width: auto; height: 52px; }
  .brand-text strong { font-size: 1rem; }
  .account-link { display: none; }
  .header-search button { padding: 0 1rem; }
  .header-search input { font-size: .8rem; }
  .nav-whatsapp { font-size: .72rem; }
  .quick-find-inner { align-items: flex-start; flex-direction: column; gap: .6rem; padding: 1rem 0; }
  .use-case-grid { grid-template-columns: 1fr; }
  .order-guide { padding: 2rem 1.25rem; }
}

/* 2026 premium storefront layer */
:root {
  --ink: #10231f;
  --ink-soft: #40514d;
  --muted: #71807c;
  --line: #e5e9e6;
  --paper: #f4f6f2;
  --accent: #a9cb39;
  --accent-deep: #648417;
  --accent-soft: #eef5d8;
  --navy: #10231f;
  --shadow: 0 18px 45px rgba(16, 35, 31, .09);
  --shadow-lg: 0 30px 80px rgba(16, 35, 31, .18);
  --radius: 20px;
  --max: 1240px;
}

body { background: #fbfcfa; }
::selection { background: var(--accent); color: var(--ink); }
.topbar { background: #0b1a17; padding: .55rem 0; letter-spacing: .01em; }
.topbar .container { align-items: center; }
.topbar a { display: inline-flex; align-items: center; gap: .5rem; }
.online-dot { width: 7px; height: 7px; border-radius: 50%; background: #b9de43; box-shadow: 0 0 0 4px rgba(185,222,67,.12); }
.site-header { border-bottom-color: rgba(16,35,31,.08); box-shadow: 0 6px 25px rgba(16,35,31,.025); }
.header-inner { min-height: 78px; padding: .7rem 0; }
.brand-logo { width: auto; height: 78px; }
.brand-text strong { font-size: 1.18rem; color: var(--ink); }
.nav { gap: 1.9rem; }
.nav a { position: relative; font-size: .9rem; }
.nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -.55rem; height: 2px; background: var(--accent); transition: right .2s ease; }
.nav a:hover::after { right: 0; }
.btn { border-radius: 999px; }
.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent:hover { background: #b8db42; color: var(--ink); box-shadow: 0 10px 24px rgba(116,151,27,.22); }
.cart-chip { border-radius: 999px; padding: .65rem .85rem .65rem 1rem; }
.cart-chip svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-chip .badge { background: var(--accent); color: var(--ink); }
.mobile-toggle { padding: 10px; gap: 4px; align-content: center; }
.mobile-toggle span { display: block; width: 20px; height: 2px; border-radius: 3px; background: var(--ink); transition: .2s ease; }
.mobile-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero { min-height: 680px; display: grid; align-items: center; background: var(--ink); }
.hero-media { background-position: center right; transform: scale(1.015); }
.hero-media::after { background: linear-gradient(90deg, rgba(10,25,21,.99) 0%, rgba(10,25,21,.95) 42%, rgba(10,25,21,.61) 65%, rgba(10,25,21,.12) 100%); }
.hero::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 72%, rgba(10,25,21,.5)); }
.hero-content { padding: 6.5rem 0; max-width: 690px; }
.hero-eyebrow { color: #eaf5c8; border-color: rgba(185,222,67,.25); background: rgba(185,222,67,.08); text-transform: uppercase; letter-spacing: .12em; font-size: .71rem; }
.hero h1 { font-size: clamp(2.65rem, 5.2vw, 4.65rem); line-height: 1.03; max-width: 13ch; margin-bottom: 1.5rem; }
.hero h1 em { color: var(--accent); }
.hero p { font-size: 1.08rem; max-width: 52ch; }
.hero-stats { max-width: 590px; justify-content: space-between; }
.hero-stats div strong { color: #fff; font-size: 1.35rem; }
.trust-strip { background: #fff; }
.trust-strip .container { padding: 1.7rem 0; }
.trust-item { padding-right: 1rem; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item .icon { background: var(--ink); color: var(--accent); width: 45px; height: 45px; border-radius: 50%; font-family: var(--display); font-size: .69rem; font-weight: 800; letter-spacing: .08em; }
.section { padding: 6rem 0; }
.section-head { margin-bottom: 2.7rem; }
.section-head h2 { max-width: 18ch; line-height: 1.15; }
.section-head .kicker { color: var(--accent-deep); }
.category-grid { gap: 1.25rem; }
.cat-tile { min-height: 230px; display: flex; flex-direction: column; background: #fff; padding: 1.7rem; }
.cat-tile::before { height: 100%; width: 4px; right: auto; background: var(--accent); }
.cat-tile .cat-icon { background: var(--accent-soft); color: var(--accent-deep); font-family: var(--display); font-size: .72rem; font-weight: 800; letter-spacing: .08em; }
.cat-tile .cat-link { margin-top: auto; padding-top: 1rem; }
.product-grid { gap: 1.25rem; }
.product-card { border-color: rgba(16,35,31,.09); }
.product-card .thumb { background: #fff; padding: 0.55rem 0.7rem; }
.product-card .body { padding: 1.3rem 1.35rem 1.45rem; }
.product-card h2,
.product-card h3 { font-size: 1.04rem; }
.product-card .meta { color: var(--accent-deep); }
.cta-band { background: var(--ink); border-radius: 28px; padding: 4rem; }
.cta-band::before { background: radial-gradient(circle, rgba(169,203,57,.3), transparent 70%); }
.page-hero { padding: 4.25rem 0 5rem; background: linear-gradient(135deg, #edf2eb, #f8f9f6); }
.layout-split { margin-top: -1.6rem; position: relative; }
.panel { box-shadow: 0 8px 30px rgba(16,35,31,.035); }
.filter-list a.active { background: var(--ink); color: #fff; }
.search-bar input { min-height: 48px; box-shadow: 0 6px 20px rgba(16,35,31,.04); }
.gallery { background: #fff; }
.site-footer { background: #0b1a17; }
.wa-float { background: #25d366; box-shadow: 0 14px 35px rgba(37,211,102,.35); }

@media (max-width: 860px) {
  .hero { min-height: 610px; }
  .hero-media::after { background: linear-gradient(90deg, rgba(10,25,21,.97), rgba(10,25,21,.76)); }
  .nav.open { border-radius: 0 0 20px 20px; padding: 1.4rem; }
  .nav.open a { width: 100%; padding: .5rem; }
  .trust-item { border-right: 0; }
}

@media (max-width: 560px) {
  .header-actions .btn { display: none; }
  .cart-chip > span:not(.badge) { display: none; }
  .hero { min-height: 650px; }
  .hero-content { padding: 4.2rem 0; }
  .hero h1 { font-size: 2.65rem; }
  .hero-stats { gap: 1rem; }
  .hero-stats div strong { font-size: 1.05rem; }
  .hero-stats div span { font-size: .72rem; }
  .section { padding: 4.5rem 0; }
  .cta-band { padding: 2.5rem 1.5rem; }
}

/* Final storefront theme overrides */
:root { --ink:#071b2d; --ink-soft:#314d59; --muted:#6a7e84; --line:#dce7e7; --paper:#f2f8f7; --accent:#c7ea35; --accent-deep:#527c08; --accent-soft:#eef9c9; --navy:#071b2d; --shadow:0 18px 45px rgba(0,87,102,.12); }
body { background:#fff; }
.topbar,.site-footer { background:#061725; }
.site-header { background:rgba(255,255,255,.97); }
.brand { min-width:0; }
.brand-logo { width:auto; height:78px; object-fit:contain; object-position:left center; }
.header-search { background:#f0f7f6; border-color:#d5e4e3; }
.header-search:focus-within { border-color:#00a6a6; box-shadow:0 0 0 3px rgba(0,166,166,.12); }
.header-search button,.cart-chip { background:#071b2d; }
.header-search button:hover,.cart-chip:hover { background:#06394a; }
.grid-icon,.nav-whatsapp,.section-head .kicker,.text-link { color:#008e96; }
.nav a:hover { color:#008e96; }
.nav a::after { background:#17d6d2; }
.hero { min-height:540px; background:#071b2d; }
.hero-media { background-image:none; background-position:center; }
.hero-media::after { background:linear-gradient(90deg,rgba(5,20,35,.98) 0%,rgba(5,20,35,.84) 38%,rgba(5,20,35,.1) 62%,rgba(5,20,35,0) 100%); }
.hero-content { padding:4.8rem 0 5.2rem; }
.hero-eyebrow { color:#dff6f3; border-color:rgba(23,214,210,.32); background:rgba(23,214,210,.1); }
.hero-eyebrow::before { background:#17d6d2; }
.hero h1 { font-size:clamp(2.5rem,4.7vw,4.15rem); }
.hero h1 em { color:#c7ea35; }
.hero-stats { margin-top:2.2rem; padding-top:1.5rem; }
.btn-accent { background:#c7ea35; color:#071b2d; }
.btn-accent:hover { background:#d5f653; }
.trust-item .icon { background:#071b2d; color:#17d6d2; }
.quick-links a:hover { border-color:#17d6d2; color:#007f91; background:#e6fafa; }
.section { padding:4rem 0; }
.section-head { margin-bottom:1.65rem; }
.section-head h2 { font-size:clamp(1.55rem,2.5vw,2.05rem); }
.section-head p { font-size:.88rem; }
.category-section { padding:3.25rem 0; }
.category-grid { gap:.8rem; }
.cat-tile { min-height:168px; padding:1.2rem; border-radius:15px; }
.cat-tile::before { background:linear-gradient(#17d6d2,#007f91); }
.cat-tile .cat-icon { width:36px; height:36px; margin-bottom:.7rem; background:#e5fafa; color:#007f91; }
.cat-tile h3 { font-size:.9rem; }
.cat-tile p { font-size:.74rem; line-height:1.45; }
.cat-tile .cat-link { padding-top:.55rem; font-size:.73rem; }
.featured-section { padding:3.5rem 0; background:linear-gradient(180deg,#f0f8f7,#f8fbfa); border-block:1px solid var(--line); }
.featured-section .product-grid { grid-template-columns:repeat(5,1fr); gap:.85rem; }
.featured-section .product-card .thumb { padding:0.45rem 0.55rem; background:#fff; }
.featured-section .product-card .body { padding:1rem; }
.featured-section .product-card h2,
.featured-section .product-card h3 { font-size:.9rem; }
.featured-section .product-card .price { font-size:.95rem; padding-top:.5rem; }
.product-card .meta,.product-action { color:#007f91; }
.use-cases-section { padding:3.5rem 0; }
.use-case-grid { grid-template-columns:repeat(4,1fr); gap:.75rem; }
.use-case-grid>a { min-height:112px; grid-template-columns:auto 1fr; padding:1rem; }
.use-case-grid>a>span { width:34px; height:34px; background:#e5fafa; color:#007f91; }
.use-case-grid>a>b { display:none; }
.use-case-grid h3 { font-size:.84rem; }
.use-case-grid p { font-size:.7rem; }
.order-guide { padding:2.6rem; background:linear-gradient(135deg,#e7f7f6,#f3f8e2); }
.cta-band { padding:3rem; background:linear-gradient(120deg,#071b2d,#005c68); }
.footer-brand img { width:auto; height:96px; padding:10px 14px; background:#fff; border-radius:14px; }
@media (max-width:1100px) { .brand { min-width:0; } .brand-logo { width:auto; height:64px; } .featured-section .product-grid { grid-template-columns:repeat(4,1fr); } }
@media (max-width:860px) { .use-case-grid { grid-template-columns:1fr 1fr; } .featured-section .product-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px) { .brand { min-width:0; } .brand-logo { width:auto; height:56px; } .hero-media { background-position:62% center; } .hero-media::after { background:linear-gradient(90deg,rgba(5,20,35,.96),rgba(5,20,35,.7)); } .section { padding:3rem 0; } .category-grid,.featured-section .product-grid { grid-template-columns:1fr 1fr; } .use-case-grid { grid-template-columns:1fr; } }
/* Hero split: text left, image right */
.hero {
  position: relative;
  min-height: 0;
  display: block;
  overflow: hidden;
  background: #071b2d;
  color: #fff;
}
.hero-media,
.hero-media::after,
.hero::after {
  display: none !important;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  min-height: 560px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  width: 100%;
  padding: 4.5rem 0;
  margin: 0;
  color: #fff;
  animation: rise 0.8s ease both;
}
.hero-content > * { max-width: 100%; }
.hero h1 {
  max-width: 11ch;
  margin: 0 0 1.15rem;
  color: #fff;
  font-size: clamp(2.35rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  text-shadow: none;
}
.hero h1 em { color: #c7ea35; font-style: normal; }
.hero p {
  max-width: 40ch;
  margin: 0 0 1.8rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
}
.hero-stats {
  max-width: 100%;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  justify-content: flex-start;
}
.hero-stats div span { color: rgba(255, 255, 255, 0.7); }
.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  display: flex;
  align-items: stretch;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 28%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, #071b2d 0%, rgba(7, 27, 45, 0) 100%);
}
.hero-photo,
.hero-shade,
.hero.hero--photo .hero-photo,
.hero.hero--photo .hero-shade {
  display: none !important;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
  }
  .hero-content {
    max-width: 100%;
    padding: 3.5rem 0 2rem;
  }
  .hero h1 { max-width: 14ch; font-size: clamp(2.1rem, 8vw, 2.8rem); }
  .hero-visual {
    min-height: 280px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
  .hero-visual img { min-height: 280px; object-position: center; }
  .hero-visual::before {
    inset: 0 0 auto 0;
    width: auto;
    height: 40%;
    background: linear-gradient(180deg, #071b2d 0%, rgba(7, 27, 45, 0) 100%);
  }
}

/* Trust strip: keep 4 equal columns aligned */
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}
.trust-item {
  min-width: 0;
  padding-right: 0.75rem;
}
@media (max-width: 860px) {
  .trust-strip .container { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .trust-strip .container { grid-template-columns: 1fr; }
}

/* Featured: avoid cramped 5-col on mid widths */
.featured-section .product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .featured-section .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .featured-section .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Atasay Mutfak — 2elsamsun.com paleti, köşesiz */

:root {
  --ink: #212121;
  --ink-soft: #3e3e3e;
  --muted: #6b6b6b;
  --line: #e6e6e6;
  --paper: #f6f5f8;
  --white: #ffffff;
  --accent: #cc9933;
  --accent-deep: #b8862b;
  --accent-soft: #f6edd8;
  --navy: #0d0625;
  --danger: #b42318;
  --success: #067647;
  --shadow-sm: 0 1px 2px rgba(13, 6, 37, 0.06);
  --shadow: 0 12px 32px rgba(13, 6, 37, 0.10);
  --shadow-lg: 0 24px 64px rgba(13, 6, 37, 0.16);
  --radius: 0;
  --font: "Albert Sans", Arial, Helvetica, sans-serif;
  --display: "Albert Sans", Arial, Helvetica, sans-serif;
}

*, *::before, *::after { border-radius: 0 !important; }

body { font-family: var(--font); background: #fff; color: var(--ink); }
::selection { background: var(--accent); color: #fff; }

.topbar { background: #0d0625; color: rgba(255,255,255,.85); }
.topbar a { color: #fff; }
.online-dot { background: var(--accent); box-shadow: 0 0 0 4px rgba(204,153,51,.18); }

.site-header {
  background: #212121;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.header-main { color: #fff; }
.brand-text strong, .account-link strong { color: #fff; }
.account-link small { color: rgba(255,255,255,.65); }
.account-link { border-right-color: rgba(255,255,255,.18); }
.header-search {
  background: #2b2b2b;
  border-color: #3a3a3a;
}
.header-search:focus-within {
  background: #333;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(204,153,51,.18);
}
.header-search svg { stroke: #cfcfcf; }
.header-search input { color: #fff; }
.header-search input::placeholder { color: rgba(255,255,255,.55); }
.header-search button { background: var(--accent); color: #fff; }
.header-search button:hover { background: var(--accent-deep); }
.cart-chip { background: var(--accent); color: #fff; }
.cart-chip:hover { background: var(--accent-deep); }
.cart-chip .badge { background: #0d0625; color: #fff; }
.mobile-toggle span { background: #fff; }

.commerce-nav-wrap {
  background: var(--accent);
  border-top: 0;
  box-shadow: none;
}
.commerce-nav-inner .nav a,
.commerce-nav-inner .all-products,
.grid-icon,
.nav-whatsapp { color: #fff; }
.nav a:hover { color: #fff; }
.nav a::after { background: #fff; }
.mobile-toggle b { color: #fff; }

.hero, .hero { background: #0d0625; }
.hero-media::after,
.hero::after { background: linear-gradient(90deg, rgba(13,6,37,.98) 0%, rgba(13,6,37,.82) 42%, rgba(13,6,37,.2) 100%); }
.hero-eyebrow { color: #f6edd8; border-color: rgba(204,153,51,.35); background: rgba(204,153,51,.12); }
.hero-eyebrow::before { background: var(--accent); }
.hero h1 em { color: var(--accent); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-deep); color: #fff; box-shadow: 0 8px 20px rgba(204,153,51,.35); }
.btn-primary { background: #212121; color: #fff; }
.btn-primary:hover { background: #000; }
.price, .price-lg, .product-card .price { color: var(--accent); }
.product-card .meta, .product-action { color: var(--accent-deep); }
.section-head .kicker, .text-link, .grid-icon { color: var(--accent-deep); }
.trust-item .icon { background: #0d0625; color: var(--accent); }
.quick-links a:hover { border-color: var(--accent); color: var(--accent-deep); background: var(--accent-soft); }
.cat-tile::before { background: var(--accent); }
.cat-tile .cat-icon, .use-case-grid > a > span { background: var(--accent-soft); color: var(--accent-deep); }
.featured-section { background: #f6f5f8; }
.featured-section .product-grid,
.featured-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}
.catalog-cta {
  display: block;
  width: 100%;
  margin-top: 1.75rem;
}
.catalog-cta .btn {
  width: 100%;
  display: flex;
}
.order-guide { background: #f6edd8; }
.cta-band { background: #0d0625; }
.site-footer { background: #0d0625; color: rgba(255,255,255,.82); }
.footer-brand img { background: transparent; padding: 0; height: 72px; }
.wa-float { background: #1fa855; }

/* ============ UX polish: header, hero, catalog, gallery ============ */

.header-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 9px 7px;
  gap: 5px;
  align-content: center;
  cursor: pointer;
  z-index: 2;
}
.header-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
}
.header-icon {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.header-icon svg { width: 22px; height: 22px; }
.header-icon-wa { color: #25d366; }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(13, 6, 37, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 90;
  width: min(86vw, 360px);
  background: #fff;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  box-shadow: 12px 0 40px rgba(13, 6, 37, 0.18);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: #212121;
}
.nav-drawer-head .brand { display: block; position: static; transform: none; left: auto; }
.nav-drawer-head img { height: 40px; width: auto; max-width: 160px; }
.nav-drawer-close {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.nav-drawer-close svg { width: 22px; height: 22px; }
.nav-drawer-search {
  display: flex;
  gap: 0.4rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
}
.nav-drawer-search input {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0.65rem 0.8rem;
}
.nav-drawer-search button {
  border: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 0 0.9rem;
  cursor: pointer;
}
.nav-drawer-links {
  display: flex;
  flex-direction: column;
  overflow: auto;
  flex: 1;
}
.nav-drawer-links a {
  padding: 0.95rem 1.2rem;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  color: var(--ink);
}
.nav-drawer-links a:hover { background: var(--paper); color: var(--accent-deep); }
.nav-drawer-foot {
  padding: 1.1rem 1.2rem 1.4rem;
  border-top: 1px solid var(--line);
  background: #f7f6f9;
}
.nav-drawer-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}
.nav-drawer-foot p {
  margin: 0 0 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}
body.nav-open,
body.lightbox-open { overflow: hidden; }

.hero.hero--store {
  position: relative;
  min-height: 560px;
  display: flex !important;
  align-items: center;
  overflow: hidden;
  background: #0d0625;
}
.hero.hero--store .hero-photo-wrap {
  position: absolute;
  inset: 0;
  display: block !important;
}
.hero.hero--store .hero-photo-wrap img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.hero.hero--store .hero-overlay {
  position: absolute;
  inset: 0;
  display: block !important;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13,6,37,.88) 0%, rgba(13,6,37,.72) 32%, rgba(13,6,37,.38) 58%, rgba(13,6,37,.18) 100%),
    linear-gradient(180deg, rgba(13,6,37,.28) 0%, rgba(13,6,37,.12) 40%, rgba(13,6,37,.55) 100%);
}
.hero.hero--store .hero-content {
  position: relative;
  z-index: 2;
  max-width: none;
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
  padding: 5.8rem 0;
  text-align: left;
}
.hero.hero--store .hero-content > * { max-width: 36rem; margin-left: 0; margin-right: auto; }
.hero.hero--store h1 { max-width: 16ch; margin-left: 0; margin-right: 0; }
.hero.hero--store p { margin-left: 0; margin-right: 0; }
.hero.hero--store .hero-actions,
.hero.hero--store .hero-stats {
  justify-content: flex-start;
}
.hero.hero--store .hero-visual,
.hero.hero--store .hero-grid { display: none !important; }

.all-products-bar {
  display: block;
  background: #212121;
  border-top: 1px solid rgba(255,255,255,.08);
}
.all-products-bar-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.all-products-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0;
  background: transparent;
  color: #fff !important;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.all-products-btn svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.all-products-btn:hover { background: transparent; color: var(--accent) !important; }
.all-products-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.all-products-links a {
  color: rgba(255,255,255,.88);
  font-weight: 700;
  font-size: 0.86rem;
}
.all-products-links a:hover { color: var(--accent); }

.showcase-banners {
  padding: 1.6rem 0 0.4rem;
  background: #fff;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.showcase-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 180px;
  background: #0d0625;
}
.showcase-card img {
  width: 100%;
  height: 180px;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.04);
}
.showcase-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1rem 0.95rem;
  background: linear-gradient(180deg, transparent, rgba(13,6,37,.86));
  color: #fff;
}
.showcase-copy span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.2rem;
}
.showcase-copy strong {
  font-size: 1.02rem;
}

.page-hero { padding: 2.75rem 0 2.75rem; }
.catalog-section { padding-top: 1.35rem !important; padding-bottom: 4rem; }
.search-bar { margin-top: 0.35rem; margin-bottom: 1.7rem; }
.layout-split { margin-top: 0; }

.product-card {
  overflow: hidden;
  isolation: isolate;
}
.product-card .thumb {
  aspect-ratio: 1 / 1;
  padding: 0 !important;
  overflow: hidden;
  contain: paint;
  background: #f3f3f3;
  position: relative;
}
.product-card .thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  transform: none;
  transition: transform 0.3s ease;
}
.product-card:hover .thumb img { transform: scale(1.05); }

.gallery {
  position: sticky;
  top: 110px;
  background: transparent;
  border: 0;
  aspect-ratio: auto;
  min-height: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  background: #f4f4f4;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  background: #f4f4f4;
}
.gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.45rem;
  position: relative;
  z-index: 2;
  margin: 0;
}
.gallery-thumb {
  display: block;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-thumb.active { outline: 2px solid var(--accent); outline-offset: -2px; }
.gallery-thumb img {
  position: static;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(13, 6, 37, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 3.5rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 2.2rem;
  line-height: 1;
}
.lightbox-close { top: 0.7rem; right: 1rem; font-size: 2.6rem; }
.lightbox-prev { left: 0.6rem; }
.lightbox-next { right: 0.6rem; }

@media (max-width: 860px) {
  .topbar,
  .commerce-nav-wrap,
  .header-search,
  .account-link { display: none !important; }
  .all-products-bar { display: block !important; }
  .all-products-bar-inner {
    min-height: 44px;
    justify-content: center;
    gap: 0.65rem;
  }
  .all-products-btn { min-height: 34px; width: 100%; }
  .all-products-links { display: none; }
  .header-menu-btn { display: grid; }
  .header-icon { display: none !important; }
  .header-main {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    min-height: 64px;
    padding: 0.35rem 0;
    gap: 0.4rem;
  }
  .header-main .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-self: center;
    z-index: 1;
  }
  .header-main .brand-logo { height: 34px; max-width: min(42vw, 148px); object-position: center; }
  .header-actions { justify-self: end; gap: 0.15rem; }
  .cart-chip { padding: 0.45rem 0.55rem; }
  .cart-chip > span:not(.badge) { display: none; }
  .hero.hero--store { min-height: 480px; }
  .hero.hero--store .hero-content {
    width: min(var(--max), calc(100% - 1.75rem));
    padding: 3.6rem 0 3.2rem;
    text-align: left;
  }
  .hero.hero--store .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13,6,37,.90) 0%, rgba(13,6,37,.70) 42%, rgba(13,6,37,.42) 100%),
      linear-gradient(180deg, rgba(13,6,37,.35) 0%, rgba(13,6,37,.62) 100%);
  }
  .featured-section .product-grid,
  .featured-grid,
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { position: static; }
  .product-detail { align-items: stretch; }
}

@media (max-width: 560px) {
  .hero.hero--store { min-height: 440px; }
  .hero.hero--store .hero-stats { gap: 0.85rem; }
  .featured-section .product-grid,
  .featured-grid,
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem; }
  .product-card .body { padding: 0.8rem 0.75rem 0.95rem; }
  .product-card h2,
  .product-card h3 { font-size: 0.86rem; }
}

.header-main {
  position: relative;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  min-height: 104px;
}
.header-main .brand {
  position: static;
  left: auto;
  transform: none;
  z-index: 1;
  justify-self: start;
}
.header-main .brand-logo {
  height: 78px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}
.header-search {
  flex: unset;
  width: min(640px, 42vw);
  max-width: 640px;
  min-width: 280px;
  justify-self: center;
  margin: 0;
}
.header-actions {
  margin-left: 0;
  justify-self: end;
}
.cart-chip {
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  padding: 0.4rem 0.15rem;
  gap: 0.35rem;
}
.cart-chip:hover { background: rgba(255,255,255,.08) !important; }
.cart-chip .badge {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 860px) {
  .header-main {
    grid-template-columns: 42px 1fr auto;
    min-height: 70px;
    padding: 0.35rem 0;
    gap: 0.4rem;
  }
  .header-main .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-self: center;
    z-index: 1;
  }
  .header-main .brand-logo { height: 37px; max-width: min(46vw, 168px); object-position: center; }
  .all-products-btn { width: auto; min-height: 44px; }
}

.gallery img {
  position: static;
  inset: auto;
}
.gallery-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero {
  padding: 2.8rem 0 2.6rem !important;
}
.page-hero h1 {
  margin: 0 0 0.75rem;
}
.page-hero p {
  margin: 0;
}
.page-hero .container {
  padding-bottom: 1.35rem;
}

.product-card-cta {
  display: block;
  width: 100%;
  margin-top: 0.85rem;
  padding: 0.7rem 0.8rem;
  text-align: center;
  background: var(--accent);
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.product-card:hover .product-card-cta {
  background: var(--accent-deep);
}

.contact-map {
  width: 100%;
  margin-top: 2rem;
  overflow: hidden;
  background: #eee;
  line-height: 0;
}
.contact-map iframe {
  display: block;
  width: 100% !important;
  max-width: none;
  height: 450px;
  border: 0;
}

@media (max-width: 560px) {
  .product-card-cta { font-size: 0.74rem; padding: 0.6rem 0.5rem; }
  .contact-map iframe { height: 320px; }
}
