@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --ink: #0b1c2c;
  --ink-soft: #2b3d50;
  --muted: #64748b;
  --line: #e4e9ee;
  --paper: #f6f8fa;
  --white: #ffffff;
  --accent: #0e9c85;
  --accent-deep: #0a7263;
  --accent-soft: #e2f5f1;
  --navy: #12263a;
  --danger: #b42318;
  --success: #067647;
  --shadow-sm: 0 1px 2px rgba(11, 28, 44, 0.05), 0 2px 8px rgba(11, 28, 44, 0.04);
  --shadow: 0 12px 32px rgba(11, 28, 44, 0.10);
  --shadow-lg: 0 24px 64px rgba(11, 28, 44, 0.16);
  --radius: 16px;
  --max: 1200px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Sora", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

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: 92px;
  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;
  align-items: center;
  gap: .5rem;
  width: auto;
  height: 40px;
  padding: 0 14px 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: .86rem;
  font-weight: 800;
  font-family: var(--display);
  line-height: 1;
  cursor: pointer;
}

/* ============ Hero ============ */

.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url('../images/hero.png') center right / cover no-repeat;
}

.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 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 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: url('../images/hero.png');
  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 {
  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: relative; aspect-ratio: 3 / 4; min-height: 0; max-height: none; }
  .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-flex; }
  .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: url('../images/hero-v2.png'); 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 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; }

.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; }
  .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); }

.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 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:url('../images/hero-v2.png'); 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 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)); }
}

/* ============ Contact page (Bako layout) ============ */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  margin: 0 0 .85rem;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: #008e96; }
.page-hero {
  padding: 4.5rem 0 3.5rem;
}
.page-hero h1 {
  margin: .45rem 0 1rem;
  line-height: 1.15;
}
.page-hero p {
  margin: 0;
  line-height: 1.65;
}
.breadcrumb {
  margin: 0 0 1.15rem;
}
.page-hero + .section {
  padding-top: 2.5rem !important;
}
.contact-page { padding-bottom: 4rem; }
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-bottom: 1.6rem;
}
.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  min-height: 100%;
  padding: 1.4rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.contact-info-card__icon { width: 40px; height: 40px; color: var(--ink); }
.contact-info-card__icon svg { width: 100%; height: 100%; }
.contact-info-card h2 {
  margin: 0;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.contact-info-card p {
  margin: 0;
  flex: 1;
  color: var(--ink-soft);
  font-size: .93rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.contact-info-card__link {
  margin-top: .35rem;
  color: var(--ink);
  font-size: .86rem;
  font-weight: 700;
}
.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, .9fr);
  gap: 1.4rem;
  align-items: start;
  margin-bottom: 2rem;
}
.contact-panel {
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.contact-panel h2, .contact-panel h3 { margin: 0 0 .55rem; }
.contact-panel h2 { font-size: 1.35rem; }
.contact-panel h3 { font-size: 1.1rem; }
.contact-panel__lead, .contact-panel > p {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  font-size: .93rem;
}
.contact-aside { display: flex; flex-direction: column; gap: 1.15rem; }
.contact-aside__actions { display: flex; flex-direction: column; gap: .7rem; }
.contact-aside__actions .btn { width: 100%; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .form-group { margin-bottom: 1rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7fbfa;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form__submit { min-width: 140px; text-transform: uppercase; letter-spacing: .04em; }
.contact-social { display: flex; flex-wrap: wrap; gap: .6rem; }
.contact-social__link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-social__link svg { width: 18px; height: 18px; }
.contact-map-section {
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.contact-map-section__head { margin-bottom: 1rem; }
.contact-map-section__head h2 { margin: 0 0 .45rem; font-size: 1.35rem; }
.contact-map-section__head p { margin: 0 0 .45rem; }
.contact-map-section__address { color: var(--ink-soft); font-weight: 600; }
.contact-map {
  position: relative;
  width: 100%;
  height: min(380px, 62vw);
  min-height: 220px;
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}
.contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

@media (max-width: 980px) {
  .contact-info-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-main-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .contact-info-cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-form__submit, .contact-aside__actions .btn { width: 100%; }
  .page-hero { padding: 2.6rem 0 2.4rem; }
  .page-hero + .section { padding-top: 1.75rem !important; }
}

/* ============ Mobile polish ============ */
html, body { max-width: 100%; overflow-x: hidden; }
img, svg, video, iframe { max-width: 100%; }
.site-header, .header-main, .commerce-nav-inner { min-width: 0; }
.product-card h3, .cat-tile h3, .cat-tile p {
  overflow-wrap: anywhere;
}
.product-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 860px) {
  .nav-whatsapp { display: none; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn, .cta-band .btn { width: 100%; }
  .hero-visual,
  .hero-visual img {
    min-height: 220px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .hero-grid { min-height: 0; }
  .hero-content { padding: 2.4rem 0 1.4rem; }
  .hero h1 { max-width: none; font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .hero p { max-width: none; font-size: .95rem; }
  .hero-stats { flex-wrap: wrap; gap: .85rem; }
  .qty-row { flex-direction: column; align-items: stretch; }
  .qty-row select, .qty-row input { min-width: 0; max-width: none; width: 100%; }
  .wa-float {
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
  }
  input, select, textarea { font-size: 16px; }
}

@media (max-width: 700px) {
  .table thead { display: none; }
  .table, .table tbody, .table tr, .table td { display: block; width: 100%; }
  .table tr {
    margin-bottom: .85rem;
    padding: .85rem;
    border: 1px solid var(--line);
    border-radius: 14px;
  }
  .table td {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .35rem 0;
    border: 0;
  }
  .search-bar { flex-direction: column; }
  .product-detail { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(var(--max), calc(100% - 1.5rem)); }
  .header-main { grid-template-columns: 1fr auto; gap: .6rem; padding: .5rem 0; }
  .brand-logo { height: 44px; max-width: 160px; }
  .commerce-nav-inner { min-height: 44px; }
  .page-hero { padding: 2.75rem 0 2.5rem; }
  .page-hero h1 { font-size: 1.7rem; margin: .4rem 0 .9rem; }
  .trust-strip .container { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .trust-item { padding-right: 0; }
  .featured-section .product-card .body { padding: .75rem; }
  .featured-section .product-card h3 { font-size: .8rem; }
  .product-action { font-size: .68rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand img { height: 72px; }
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: auto;
  min-width: 0;
  height: 40px;
  padding: 0 14px 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: .86rem;
  font-weight: 800;
  font-family: var(--display);
  line-height: 1;
  box-shadow: none;
}
.mobile-toggle svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}
@media (max-width: 860px) {
  .commerce-nav-inner > .mobile-toggle,
  .mobile-toggle { display: inline-flex; }
}

.catalog-page { padding-top: 3rem; padding-bottom: 4.5rem; }
.catalog-head { text-align: center; margin: 0 auto 2rem; max-width: 40rem; }
.catalog-head h1 {
  margin: 0 0 .65rem;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--ink);
}
.catalog-head p { margin: 0; color: var(--muted); font-size: 1rem; }
.catalog-cats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.catalog-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 180px;
  padding: 1.5rem 1.1rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.catalog-cat:hover,
.catalog-cat.is-active {
  border-color: #b7c9c8;
  box-shadow: 0 10px 28px rgba(7, 27, 45, .06);
  transform: translateY(-2px);
}
.catalog-cat.is-active { border-color: var(--ink); }
.catalog-cat__icon {
  width: 48px;
  height: 48px;
  margin-bottom: .85rem;
  color: #5d7278;
}
.catalog-cat__icon svg { width: 100%; height: 100%; }
.catalog-cat h2 {
  margin: 0 0 .45rem;
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.25;
}
.catalog-cat p {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.45;
}
.catalog-toolbar {
  display: grid;
  grid-template-columns: 1fr minmax(180px, .7fr) auto;
  gap: .7rem;
  align-items: center;
  margin-bottom: 1.75rem;
  padding: .55rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f4f8f7;
}
.catalog-toolbar__search {
  display: flex;
  align-items: center;
  gap: .55rem;
  min-width: 0;
  height: 46px;
  padding: 0 .95rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e4eeed;
}
.catalog-toolbar__search svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: #7a8c90;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.catalog-toolbar__search input {
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.catalog-toolbar__search input:focus { box-shadow: none; }
.catalog-toolbar select {
  height: 46px;
  padding: 0 2.2rem 0 1rem;
  border: 1px solid #e4eeed;
  border-radius: 12px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%235d7278' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  appearance: none;
  color: var(--ink);
  font-weight: 600;
}
.catalog-toolbar .btn { height: 46px; padding: 0 1.5rem; border-radius: 12px; }
.catalog-products { margin-top: .25rem; }
.catalog-products .product-card p {
  margin: .35rem 0 0;
  color: var(--muted);
  font-size: .86rem;
}
@media (max-width: 980px) {
  .catalog-cats { grid-template-columns: 1fr 1fr; }
  .catalog-toolbar { grid-template-columns: 1fr 1fr; }
  .catalog-toolbar .btn { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .catalog-page { padding-top: 2rem; }
  .catalog-cats { grid-template-columns: 1fr; }
  .catalog-toolbar { grid-template-columns: 1fr; padding: .7rem; }
}

.catalog-results { scroll-margin-top: 130px; }
.product-card,
.product-card .thumb {
  overflow: hidden;
  border-radius: inherit;
}
.product-card .thumb {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.product-card .thumb img {
  inset: 0;
  width: 100%;
  height: 100%;
  padding: .55rem;
  box-sizing: border-box;
}
.product-card:hover .thumb img,
.product-card .thumb:hover img {
  transform: none;
}
.gallery {
  cursor: zoom-in;
}
.gallery .thumb-zoom {
  position: absolute;
  right: .85rem;
  bottom: .85rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 27, 45, .82);
  color: #fff;
  cursor: zoom-in;
}
.gallery .thumb-zoom svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}
@media (max-width: 860px) {
  .wa-float { display: none !important; }
  .product-card:hover { transform: none; }
}
.image-zoom {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(6, 16, 28, .86);
  cursor: zoom-out;
}
.image-zoom.is-open { display: flex; }
.image-zoom img {
  max-width: min(920px, 100%);
  max-height: min(88vh, 100%);
  object-fit: contain;
  background: #fff;
  border-radius: 16px;
  padding: .75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}
.image-zoom__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #071b2d;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.header-main {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
}
.header-main > .mobile-toggle { display: none; }
.brand {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
}
.brand-logo {
  width: auto;
  height: 58px;
  max-width: min(380px, 100%);
  object-fit: contain;
  object-position: left center;
}
.header-search {
  max-width: none;
  width: 100%;
  justify-self: stretch;
  height: 42px;
}
.header-search button { height: 34px; padding: 0 .9rem; }
.footer-brand img {
  width: auto;
  height: 58px;
  max-width: 280px;
  padding: 8px 10px;
  background: #fff;
  border-radius: 12px;
}
@media (max-width: 860px) {
  .header-main {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "logo logo logo"
      "menu search cart";
    gap: .7rem .5rem;
    padding: .75rem 0 .8rem;
  }
  .brand { grid-area: logo; justify-self: center; }
  .header-main > .mobile-toggle {
    grid-area: menu;
    display: inline-flex;
    height: 42px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    background: #071b2d;
    color: #fff;
  }
  .header-main > .mobile-toggle svg { stroke: #fff; }
  .header-search {
    grid-area: search;
    grid-column: auto;
    grid-row: auto;
    max-width: none;
    justify-self: stretch;
    height: 42px;
  }
  .header-actions { grid-area: cart; justify-self: end; }
  .account-link { display: none; }
  .cart-chip { height: 42px; }
  .brand-logo { height: 48px; max-width: min(280px, 72vw); object-position: center; }
  .commerce-nav-wrap { border-top: 0; }
  .commerce-nav-inner { min-height: 0; }
  .nav.open { top: 100%; }
}
@media (max-width: 560px) {
  .brand { padding: 0; background: transparent; }
  .brand-logo { height: 42px; max-width: min(240px, 80vw); }
  .header-search button { display: none; }
}

.mobile-dock { display: none; }
@media (max-width: 860px) {
  .catalog-head,
  .catalog-cats,
  .catalog-toolbar { display: none !important; }
  .catalog-page { padding-top: .5rem !important; padding-bottom: 5.5rem !important; }
  .catalog-results { margin-top: 0; }
  .catalog-products { margin-top: 0; }
  .product-grid { gap: .85rem; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
  .commerce-nav-wrap { display: none !important; }
  .product-card .body {
    padding: .95rem 1.05rem 1.1rem !important;
    gap: .4rem;
  }
  .product-card h3 { margin: 0; padding: 0 .05rem; }
  .product-card .thumb img { padding: .7rem; }
  .mobile-dock {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    align-items: stretch;
    justify-content: space-around;
    min-height: 64px;
    padding: .45rem .2rem calc(.45rem + env(safe-area-inset-bottom, 0px));
    background: #fff;
    border-top: 1px solid #e8eeee;
    box-shadow: 0 -6px 20px rgba(7, 27, 45, .06);
  }
  .mobile-dock a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .28rem;
    padding: .15rem .35rem;
    color: #222;
    font-size: .68rem;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
  }
  .mobile-dock a.is-active { color: #071b2d; }
  .mobile-dock__icon {
    display: flex;
    width: 26px;
    height: 26px;
    color: #2a2a2a;
  }
  .mobile-dock__icon svg {
    width: 100%;
    height: 100%;
  }
}
