/* ==========================================================================
   DPV INTERNATIONAL — Design tokens
   Direction: trade / export manifest — cargo-label stencils, customs-stamp
   marks, ledger rules. Built for a bulk B2B export catalogue.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:opsz,wght@5..1200,400;5..1200,500;5..1200,600;5..1200,700&family=JetBrains+Mono:wght@400;600&family=Jost:wght@400;500;600;700&display=swap');

:root{
  /* --- palette, matched to the DPV gold-foil-on-black logo — light tone --- */
  --navy: #FFFFFF;           /* header/footer/dark-section bg, now light */
  --navy-deep: #FBF8F1;
  --navy-text: #1C1A17;      /* text used on the (now light) header/footer */
  --cream: #F3EAD3;          /* warm ivory paper — main page background, distinct from white */
  --paper: #FFFFFF;
  --ink: #1C1A17;
  --ink-soft: #6B6656;
  --amber: #B8912A;          /* logo gold, slightly deepened for light-bg contrast */
  --amber-deep: #8F6E1B;     /* deeper bronze-gold for hover/contrast */
  --gold-light: #9C7B1C;     /* on light backgrounds, gold reads darker for legibility */
  --gold-bright: #E7CD73;    /* bright foil gold — used only on dark contexts (banner overlay, dark placeholder tiles) */
  --line: #D6C593;
  --line-soft: #EBDFBB;

  /* category stamp colours — muted jewel tones that sit well with gold */
  --cat-women: #8C3A3A;
  --cat-kids: #1F5C4D;
  --cat-household: #9C7B1C;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --font-body: 'Jost', system-ui, sans-serif;

  --radius: 3px;
  --shadow-card: 0 1px 0 var(--line), 0 8px 20px -12px rgba(28,26,23,0.12);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
button{ font-family: inherit; cursor:pointer; }
ul{ margin:0; padding:0; list-style:none; }

.container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- focus visibility --- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible{
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
  html{ scroll-behavior:auto; }
}

/* ==========================================================================
   Eyebrow / stencil label — the signature device.
   A rotated, dashed-border "cargo stamp" reused for codes, badges, tags.
   ========================================================================== */
.stamp{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px dashed var(--ink);
  color: var(--ink);
  padding: 5px 10px;
  border-radius: 2px;
  background: rgba(28,26,23,0.03);
}
.stamp--amber{ border-color: var(--amber-deep); color: var(--amber-deep); background: rgba(184,145,42,0.08); }
.stamp--cream{ border-color: rgba(246,241,228,0.55); color: var(--cream); background: rgba(246,241,228,0.06); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  background: var(--navy);
  color: var(--ink);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 14px -6px rgba(28,26,23,0.14);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content: space-between;
  height: 88px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brand-mark{
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(184,145,42,0.5);
  flex-shrink: 0;
}
.brand-text{
  display:flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.15;
  color: var(--amber-deep);
  letter-spacing: 0.02em;
}
.brand-text small{
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
  margin-top: 3px;
}
.main-nav{
  display:flex;
  align-items:center;
  gap: 30px;
}
.main-nav a{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  padding: 4px 2px;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.main-nav a:hover, .main-nav a.active{
  color: var(--ink);
  border-bottom-color: var(--amber);
}
.nav-cta{
  background: var(--amber);
  color: #FFFFFF !important;
  font-weight: 700 !important;
  padding: 9px 16px;
  border-radius: 2px;
  border-bottom: none !important;
  font-size: 13px !important;
}
.nav-cta:hover{ background: var(--amber-deep); }

.nav-toggle{
  display:none;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 8px 10px;
  border-radius: 2px;
}

/* ==========================================================================
   Hero — styled as a manifest header sheet (used as a light page-header
   banner on interior pages: products.html, product.html)
   ========================================================================== */
.hero{
  background: var(--cream);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: repeating-linear-gradient(0deg, rgba(28,26,23,0.025) 0 1px, transparent 1px 34px);
  pointer-events:none;
}
.hero-inner{
  position:relative;
  padding: 76px 0 64px;
}
.hero-topline{
  display:flex;
  justify-content: space-between;
  align-items:center;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 28px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.hero h1{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.04;
  margin: 0 0 20px;
  max-width: 15ch;
  letter-spacing: -0.01em;
}
.hero h1 em{
  font-style: italic;
  color: var(--amber-deep);
}
.hero p.lede{
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 34px;
}
.hero-actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 14.5px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{ background: var(--amber); color: #FFFFFF; }
.btn-primary:hover{ background: var(--amber-deep); }
.btn-outline{ border-color: var(--ink); color: var(--ink); }
.btn-outline:hover{ border-color: var(--amber-deep); background: rgba(184,145,42,0.06); color: var(--amber-deep); }
.btn-whatsapp{ background: #2F6E63; color: #fff; }
.btn-whatsapp:hover{ background: #35806F; }
.btn-block{ width:100%; justify-content:center; }

/* manifest stat strip */
.stat-strip{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
}
.stat-strip div{
  padding: 20px 22px 0;
  border-left: 1px solid var(--line);
}
.stat-strip div:first-child{ border-left: none; padding-left: 0; }
.stat-num{
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--amber-deep);
  display:block;
  margin-bottom: 4px;
}
.stat-label{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ==========================================================================
   Image placeholders — used until real product/banner photography is
   supplied. No external requests; pure CSS + inline SVG icon.
   Kept as dark tiles by design — a deliberate accent against the light
   page, not a leftover of the old dark theme.
   ========================================================================== */
.img-placeholder{
  width:100%; height:100%;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 8px;
  background:
    repeating-linear-gradient(135deg, rgba(184,145,42,0.09) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, #221F19 0%, #2E2A20 100%);
  color: rgba(246,241,228,0.55);
  text-align:center;
  padding: 10px;
}
.img-placeholder svg{ width:30px; height:30px; opacity:0.55; }
.img-placeholder .ph-label{
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-bright);
  opacity:0.85;
}
.img-placeholder .ph-sub{
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: rgba(246,241,228,0.4);
}
.pd-gallery .img-placeholder svg{ width:44px; height:44px; }
.pd-gallery .img-placeholder .ph-label{ font-size: 12px; }

.banner-placeholder{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  background:
    repeating-linear-gradient(135deg, rgba(184,145,42,0.08) 0 2px, transparent 2px 18px),
    linear-gradient(150deg, var(--banner-color, #221F19) 0%, #17140E 100%);
}
.banner-placeholder svg{ width:52px; height:52px; opacity:0.5; color: var(--gold-bright); }
.banner-placeholder .ph-label{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246,241,228,0.55);
}


.banner-slider{
  position: relative;
  width: 100%;
  height: 900px;
  max-height: 95vh;
  overflow: hidden;
  background: #17140E;
}
.banner-track{
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .6s ease;
}
.banner-slide{
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}
.banner-slide img{
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner-overlay{
  position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0) 60%);
}
.banner-caption{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction: column;
  justify-content:flex-end;
  color: var(--cream);
  padding-bottom: 46px;
}
.banner-caption h1{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.06;
  margin: 18px 0 18px;
  max-width: 15ch;
  letter-spacing: -0.01em;
}
.banner-caption h1 em{ font-style: italic; color: var(--gold-bright); }
.banner-caption .lede{
  font-size: 17px;
  color: rgba(246,241,228,0.82);
  max-width: 44ch;
  margin: 0 0 30px;
}

.banner-caption .stamp{
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: rgba(231,205,115,0.1);
}

.banner-arrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(246,241,228,0.35);
  background: rgba(13,12,10,0.4);
  color: var(--cream);
  font-size: 15px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: background .15s ease, border-color .15s ease;
}
.banner-arrow:hover{ background: rgba(13,12,10,0.7); border-color: var(--amber); }
.banner-arrow--prev{ left: 24px; }
.banner-arrow--next{ right: 24px; }

.banner-dots{
  position:absolute;
  bottom: 26px;
  left:0; right:0;
  z-index:5;
  display:flex;
  justify-content:center;
  gap: 10px;
}
.banner-dot{
  width: 9px; height:9px;
  border-radius:50%;
  background: rgba(246,241,228,0.4);
  border: 1px solid rgba(246,241,228,0.5);
  padding:0;
  transition: background .15s ease, transform .15s ease;
}
.banner-dot.is-active{ background: var(--amber); border-color: var(--amber); transform: scale(1.15); }

.stat-strip-bar{
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.stat-strip-bar .stat-strip{ margin-top:0; border-top:none; }

@media (max-width: 720px){
  .banner-slider{ height: 76vh; min-height: 500px; }
  .banner-arrow{ width:36px; height:36px; font-size:12px; }
  .banner-arrow--prev{ left:12px; }
  .banner-arrow--next{ right:12px; }
}



.section{ padding: 84px 0; }
.section-tight{ padding: 56px 0; }
.section-alt{ background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-navy{ background: var(--line-soft); color: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head{
  display:flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.section-head h2{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 10px 0 0;
  letter-spacing: -0.01em;
}
.section-head p{
  max-width: 52ch;
  color: var(--ink-soft);
  margin: 10px 0 0;
}
.section-navy .section-head p{ color: var(--ink-soft); }

/* ==========================================================================
   Category cards — manifest ledger entries
   ========================================================================== */
.category-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.category-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  position: relative;
  transition: border-color .15s ease, transform .15s ease;
}
.category-card:hover{ border-color: var(--amber-deep); transform: translateY(-3px); }
.category-card .cat-code{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  background: var(--cat-color, var(--ink));
  display:inline-block;
  padding: 4px 9px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.category-card h3{
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 600;
  margin: 0 0 10px;
}
.category-card p{
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0 0 20px;
}
.category-card .cat-link{
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.category-card:hover .cat-link{ color: var(--amber-deep); }

/* ==========================================================================
   Product grid + cards (shipping-label motif)
   ========================================================================== */
.product-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 22px;
}
.product-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display:flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.product-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-card); }
.product-card .thumb{
  position: relative;
  aspect-ratio: 1 / 1;
  overflow:hidden;
  background: var(--line-soft);
}
.product-card .thumb img{ width:100%; height:100%; object-fit:cover; }
.product-card .thumb .tag{
  position:absolute;
  top:10px;
  left:10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color:#fff;
  background: var(--cat-color, var(--ink));
  padding: 4px 8px;
  border-radius: 2px;
}
.product-card .thumb .video-badge{
  position:absolute;
  bottom:10px;
  right:10px;
  background: rgba(14,24,48,0.82);
  color:#fff;
  font-size: 10.5px;
  font-family: var(--font-mono);
  padding: 4px 8px;
  border-radius: 2px;
  display:flex;
  align-items:center;
  gap:5px;
}
.product-card .body{
  padding: 15px 16px 18px;
  flex:1;
  display:flex;
  flex-direction:column;
}
.product-card .code{
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.product-card h4{
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height:1.28;
}
.product-card .meta{
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  display:flex;
  justify-content: space-between;
}

/* ==========================================================================
   Filter / search bar (catalogue page) — customs checklist styling
   ========================================================================== */
.catalogue-toolbar{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 30px;
  display:flex;
  flex-wrap:wrap;
  gap: 20px;
  align-items:center;
  justify-content: space-between;
}
.search-field{
  position:relative;
  flex: 1 1 260px;
  max-width: 380px;
}
.search-field input{
  width:100%;
  padding: 11px 14px 11px 38px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--cream);
  color: var(--ink);
}
.search-field input:focus{ outline: 2px solid var(--amber); border-color: var(--amber); }
.search-field svg{
  position:absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width:16px; height:16px;
  color: var(--ink-soft);
}
.checklist{
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
}
.checklist label{
  display:flex;
  align-items:center;
  gap:7px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  cursor:pointer;
  user-select:none;
}
.checklist input[type=checkbox]{
  width:15px; height:15px;
  accent-color: var(--amber-deep);
}
.sort-field select{
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 10px 12px;
  font-size: 13px;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
}
.results-count{
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.empty-state{
  text-align:center;
  padding: 70px 20px;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 13.5px;
}

/* ==========================================================================
   Product detail
   ========================================================================== */
.pd-grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items:start;
}
.pd-gallery .main-image{
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  background: var(--line-soft);
  margin-bottom: 12px;
  position:relative;
}
.pd-gallery .main-image img{ width:100%; height:100%; object-fit:cover; }
.pd-thumbs{
  display:flex;
  gap: 10px;
}
.pd-thumbs button{
  width: 72px; height: 72px;
  border-radius: 2px;
  overflow:hidden;
  border: 2px solid var(--line);
  padding:0;
  background:none;
}
.pd-thumbs button.active{ border-color: var(--amber-deep); }
.pd-thumbs img{ width:100%; height:100%; object-fit:cover; }

.pd-video-note{
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(47,110,99,0.08);
  border: 1px dashed #2F6E63;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #235850;
  display:flex;
  gap:8px;
  align-items:center;
}

.pd-info .code{ font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); margin-bottom: 10px; }
.pd-info h1{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 14px;
  line-height:1.15;
}
.pd-info .desc{ color: var(--ink-soft); font-size: 15.5px; margin-bottom: 24px; }

.spec-table{
  width:100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  font-size: 14px;
}
.spec-table tr{ border-bottom: 1px dashed var(--line); }
.spec-table tr:last-child{ border-bottom:none; }
.spec-table td{ padding: 10px 0; }
.spec-table td:first-child{
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  width: 40%;
}
.spec-table td:last-child{ font-weight: 500; }

/* enquiry form */
.enquiry-box{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.enquiry-box h3{
  font-family: var(--font-display);
  font-size: 19px;
  margin: 0 0 4px;
}
.enquiry-box .sub{ font-size: 13px; color: var(--ink-soft); margin: 0 0 20px; }
.field{ margin-bottom: 16px; }
.field label{
  display:block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea{
  width:100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 11px 13px;
  font-family: var(--font-body);
  font-size: 14.5px;
  background: var(--cream);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: 2px solid var(--amber);
  border-color: var(--amber);
}
.field-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note{ font-size: 12px; color: var(--ink-soft); margin-top: 12px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background: #15130F;
  color: rgba(246,241,228,0.65);
  padding: 56px 0 28px;
  font-size: 14px;
  border-top: 1px solid rgba(184,145,42,0.25);
}
.footer-brand .brand-text{ color: var(--gold-bright); }
.footer-brand .brand-text small{ color: rgba(246,241,228,0.5); }
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(246,241,228,0.12);
}
.footer-grid h5{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 16px;
}
.footer-grid ul li{ margin-bottom: 10px; }
.footer-grid ul a:hover{ color: var(--gold-bright); }
.footer-brand p{ max-width: 34ch; color: rgba(246,241,228,0.6); font-size: 13.5px; }
.footer-bottom{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding-top: 22px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(246,241,228,0.4);
  flex-wrap:wrap;
  gap:10px;
}

/* WhatsApp floating button */
.wa-float{
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2F6E63;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 8px 22px -6px rgba(47,110,99,0.55);
  border: none;
  transition: transform .15s ease;
}
.wa-float:hover{ transform: scale(1.06); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px){
  .category-grid{ grid-template-columns: 1fr; }
  .pd-grid{ grid-template-columns: 1fr; gap: 34px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .stat-strip{ grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
  .stat-strip div:nth-child(3){ border-left:none; padding-left:0; }
}
@media (max-width: 720px){
  .main-nav{
    position: fixed;
    top: 88px; left:0; right:0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 26px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 20px -10px rgba(28,26,23,0.15);
    transform: translateY(-8px);
    opacity:0;
    pointer-events:none;
    transition: opacity .15s ease, transform .15s ease;
  }
  .main-nav.open{ opacity:1; transform:none; pointer-events:auto; }
  .nav-toggle{ display:block; }
  .field-row{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .section{ padding: 56px 0; }
}