/* ==========================================================
   LILLYBELL — STYLESHEET
   ----------------------------------------------------------
   The colours, fonts and spacing of the whole website are
   controlled from the ":root" block below. Change a value
   there once and it updates everywhere.
   ========================================================== */

:root{
  /* --- BRAND COLOURS ---
     Taken from the Lillybell packaging: the bright leaf-green
     poly bag and the green cartons. --lime is the exact packet
     green. It is very bright, so it is used for highlights and
     always carries DARK text on top, never white text.
     --accent is the deeper leaf green used for anything that has
     to be readable as text (eyebrows, links, stat numbers).
     WhatsApp green stays reserved for enquiry buttons only.      */
  --lime:          #8CE501;   /* packet green — highlight bars, chips, underlines */
  --lime-dark:     #7ACC00;   /* hover state for lime elements */
  --lime-tint:     #E7F9C2;   /* pale wash of the packet green */
  --accent:        #4A7A08;   /* deep leaf green — eyebrows, links, small accents */
  --accent-dark:   #365B04;   /* darker leaf green — hover state */
  --accent-soft:   #F2FADF;   /* palest green — soft background blocks */
  --dark:          #1E2A10;   /* deep forest charcoal — buttons, enquiry band */
  --dark-hover:    #2E3E1B;
  --whatsapp:      #25D366;   /* WhatsApp green — enquiry buttons only */
  --whatsapp-dark: #1EB955;

  /* --- TTICK-LETTS (second label) — its own pastel accents --- */
  --tl-peach: #FBD9CC;
  --tl-blue:  #A8D8F0;
  --tl-mint:  #BFE3C0;

  /* --- NEUTRALS --- */
  --ink:      #1E2412;   /* main text (deep green-charcoal, not pure black) */
  --ink-soft: #5F6B52;   /* secondary text */
  --line:     #E2EBD3;   /* border lines */
  --bg:       #FFFFFF;   /* page background */
  --bg-alt:   #F7FBEF;   /* pale green off-white for alternate sections */

  /* --- TYPE --- */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;

  /* --- LAYOUT --- */
  --max:      1240px;
  --gutter:   24px;
  --section-y: 130px;   /* vertical space around each section */
  --radius:   2px;
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; scroll-padding-top:88px; -webkit-text-size-adjust:100%; }
body{
  font-family:var(--sans);
  font-size:16px;
  line-height:1.7;
  color:var(--ink);
  background:var(--bg);
  overflow-x:hidden;
  font-weight:400;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button,input,select,textarea{ font:inherit; color:inherit; }

/* ---------- Typography ---------- */
h1,h2,h3,h4{ font-family:var(--serif); font-weight:500; line-height:1.2; letter-spacing:.2px; }
h1{ font-size:clamp(2.4rem, 5.4vw, 4.1rem); }
h2{ font-size:clamp(1.9rem, 3.6vw, 2.9rem); }
h3{ font-size:1.28rem; }
h4{ font-size:1.05rem; }

.eyebrow{
  font-family:var(--sans);
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:14px;
}
/* Short packet-green dash before every eyebrow label. */
.eyebrow::before{
  content:''; display:inline-block; vertical-align:middle;
  width:22px; height:3px; background:var(--lime);
  margin-right:10px; margin-top:-2px;
}
.section-head .eyebrow::before{ display:none; }
.eyebrow.light{ color:rgba(255,255,255,.9); }

/* ---------- Layout helpers ---------- */
.container{ width:100%; max-width:var(--max); margin:0 auto; padding:0 var(--gutter); }
.section{ padding:var(--section-y) 0; }
.section-alt{ background:var(--bg-alt); }

.section-tight{ padding-top:56px; }
.section-head{ max-width:620px; margin:0 auto 76px; text-align:center; }
.section-head h2{ margin-bottom:18px; }
.section-sub{ color:var(--ink-soft); font-size:1rem; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 30px;
  font-size:.83rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  border:1px solid transparent; border-radius:var(--radius); cursor:pointer;
  transition:background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
  text-align:center;
}
.btn:active{ transform:translateY(1px); }
.btn-accent{ background:var(--dark); color:#fff; }
.btn-accent:hover{ background:var(--dark-hover); }
.btn-light{ background:#fff; color:var(--ink); }
.btn-light:hover{ background:var(--dark); color:#fff; }
.btn-dark{ background:var(--dark); color:#fff; }
.btn-dark:hover{ background:var(--dark-hover); }
.btn-outline{ border-color:var(--ink); color:var(--ink); }
.btn-outline:hover{ background:var(--ink); color:#fff; }
.btn-outline-light{ border-color:rgba(255,255,255,.65); color:#fff; }
.btn-outline-light:hover{ background:#fff; color:var(--ink); border-color:#fff; }
.btn-whatsapp{ background:var(--whatsapp); color:#fff; }
.btn-whatsapp:hover{ background:var(--whatsapp-dark); }
.btn.full{ width:100%; }

.link-arrow{
  display:inline-block; margin-top:14px;
  font-size:.86rem; font-weight:600; letter-spacing:.06em;
  color:var(--accent); border-bottom:3px solid var(--lime); padding-bottom:3px;
  transition:opacity .2s ease;
}
.link-arrow::after{ content:" →"; }
.link-arrow:hover{ opacity:.65; }

/* ==========================================================
   HEADER
   ========================================================== */
/* NOTE: no backdrop-filter here. A blur filter on the header would make it
   the containing block for the position:fixed mobile menu inside it, which
   is what made the slide-out menu look see-through and mis-placed. */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:#fff;
  transition:box-shadow .3s ease, padding .3s ease;
  padding:16px 0;
}
.site-header.solid{ box-shadow:0 1px 0 var(--line); padding:10px 0; }
/* Thin packet-green rule along the bottom of the header — the brand colour
   from the poly bag, used as a signature line rather than a large block. */
.site-header::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:3px;
  background:var(--lime);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:20px; position:relative; z-index:4; }

.brand{ display:flex; align-items:center; }
.brand-logo{ height:46px; width:auto; object-fit:contain; transition:height .3s ease; }
.site-header.solid .brand-logo{ height:38px; }

/* Shown only if logo.png is ever missing — see applyFallback() in script.js */
.brand-fallback{ display:none; flex-direction:column; line-height:1; }
.brand-name{
  font-family:var(--serif); font-size:1.72rem; font-weight:600;
  font-style:italic; letter-spacing:.4px; color:var(--ink);
}
.brand-tag{
  font-size:.56rem; letter-spacing:.16em; text-transform:uppercase;
  color:var(--accent); margin-top:4px; font-weight:500;
}

.nav{ display:flex; align-items:center; gap:28px; }
.nav a.is-current{ color:var(--accent); }
.nav a.is-current::after{ width:100% !important; }
.nav a{
  font-size:.82rem; font-weight:500; letter-spacing:.06em;
  color:var(--ink); transition:color .25s ease; position:relative;
}
.nav a:not(.btn)::after{
  content:''; position:absolute; left:0; bottom:-6px; height:2px; width:0;
  background:var(--lime); transition:width .3s ease;
}
.nav a:not(.btn):hover{ color:var(--accent); }
.nav a:not(.btn):hover::after{ width:100%; }
.nav-cta{ padding:11px 22px; color:#fff !important; }

/* Hamburger */
.menu-toggle{
  display:none; background:none; border:0; cursor:pointer;
  width:40px; height:32px; padding:6px; position:relative;
}
.menu-toggle span{
  display:block; height:2px; width:100%; background:var(--ink); margin:5px 0;
  transition:transform .3s ease, opacity .3s ease;
}
.menu-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2){ opacity:0; }
.menu-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ==========================================================
   HERO
   ========================================================== */
.hero{ background:var(--bg-alt); padding:130px 0 0; overflow:hidden; }
.hero-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
}
.hero-content{ padding-bottom:80px; animation:fadeUp .9s ease both; }
.hero-content h1{ margin-bottom:22px; font-style:italic; }
.hero-text{ font-size:1.05rem; color:var(--ink-soft); max-width:480px; margin-bottom:34px; }
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:48px; }

.hero-facts{ display:flex; gap:40px; padding-top:30px; border-top:1px solid var(--line); }
.hero-facts div{ display:flex; flex-direction:column; }
.hero-facts strong{
  font-family:var(--serif); font-size:1.9rem; font-weight:500;
  color:var(--accent); line-height:1; margin-bottom:8px;
}
.hero-facts span{ font-size:.75rem; line-height:1.5; color:var(--ink-soft); letter-spacing:.04em; }

.hero-media{ position:relative; align-self:end; animation:fadeUp .9s .15s ease both; }
.hero-media::before{
  content:''; position:absolute; left:-40px; right:26px; top:40px; bottom:0;
  background:var(--accent-soft); border-radius:3px;
}
.hero-img{
  position:relative; width:100%; height:640px; object-fit:cover;
  object-position:center 25%; border-radius:3px;
}
@keyframes fadeUp{ from{ opacity:0; transform:translateY(26px);} to{ opacity:1; transform:none;} }

/* ==========================================================
   ABOUT
   ========================================================== */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.split-media img{
  width:100%; height:560px; object-fit:cover; border-radius:var(--radius);
}
.split-text h2{ margin-bottom:20px; }
.split-text p{ color:var(--ink-soft); margin-bottom:16px; }

.stats{
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:20px; margin-top:80px; padding-top:56px; border-top:1px solid var(--line);
}
.stat{ text-align:center; }
.stat-num{
  display:block; font-family:var(--serif); font-size:2.7rem; line-height:1;
  color:var(--accent); margin-bottom:8px;
}
.stat-num em{ font-style:normal; font-size:1.6rem; vertical-align:top; }
/* A long figure (e.g. lifetime pieces delivered) scales down so it never
   overflows its column and stays visually balanced with the shorter stats. */
.stat-num-lg{ font-size:2.05rem; letter-spacing:-.01em; }
.stat-num-lg em{ font-size:1.25rem; }
.stat-label{ font-size:.76rem; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-soft); }

/* ==========================================================
   OUR BRANDS — the two labels
   ========================================================== */
.brand-grid{ display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.brand-card{
  background:var(--bg-alt); border:1px solid var(--line);
  border-top:5px solid var(--lime);
  padding:44px 40px 40px; border-radius:var(--radius);
}
/* Ttick-Letts is a pastel identity, so its card carries a pastel top rule
   instead of the packet green. */
.brand-card-tl{ border-top-color:var(--tl-blue); background:#FCFBF9; }
.brand-card-logo{ height:92px; display:flex; align-items:center; margin-bottom:24px; }
.brand-card-logo img{ max-height:78px; width:auto; object-fit:contain; }
/* The Ttick-Letts mark is pastel, so it needs to sit slightly larger than the
   Lillybell mark to read at the same visual weight. */
.brand-card-tl .brand-card-logo img{ max-height:92px; }
.brand-card h3{ font-size:1.5rem; margin-bottom:4px; }
.brand-line{
  font-size:.72rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase;
  color:var(--accent); margin-bottom:16px;
}
.brand-card-tl .brand-line{ color:#5E86A3; }
.brand-card p{ color:var(--ink-soft); font-size:.95rem; }
.brand-card-tl .link-arrow{ color:#5E86A3; border-bottom-color:var(--tl-blue); }

/* ==========================================================
   CATEGORY CARDS
   ========================================================== */
/* Category cards: image, then text underneath. No box, no border, no shadow —
   the photographs supply all the structure the grid needs. */
.cat-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:40px 32px; }
.cat-card{ display:block; }
.cat-media{ overflow:hidden; background:var(--accent-soft); border-radius:var(--radius); }
.cat-card img{
  width:100%; aspect-ratio:3/4; height:auto; object-fit:cover; object-position:center 22%;
  transition:transform .7s cubic-bezier(.2,.7,.3,1);
}
.cat-card:hover img{ transform:scale(1.04); }
.cat-body{ padding:20px 2px 0; }
.cat-body h3{ margin-bottom:7px; transition:color .25s ease; }
.cat-card:hover .cat-body h3{ color:var(--accent); }
.cat-body p{ font-size:.88rem; color:var(--ink-soft); line-height:1.6; }

/* ==========================================================
   FEATURED PRODUCTS
   ========================================================== */
/* Brand tabs sit above the category chips — a bigger, heavier control,
   because choosing the label is the first decision a buyer makes. */
/* ---- Product search box ---- */
.product-search{
  position:relative; max-width:560px; margin:0 auto 26px;
}
.product-search input{
  width:100%; box-sizing:border-box;
  padding:15px 44px 15px 46px;
  border:1px solid var(--line); border-radius:40px;
  background:var(--bg); font-family:inherit; font-size:.92rem; color:var(--ink);
  transition:border-color .25s ease, box-shadow .25s ease;
}
.product-search input::placeholder{ color:var(--ink-soft); opacity:.85; }
.product-search input:focus{
  outline:none; border-color:var(--accent);
  box-shadow:0 0 0 3px var(--accent-soft);
}
.ps-icon{
  position:absolute; left:16px; top:50%; transform:translateY(-50%);
  width:20px; height:20px; pointer-events:none; color:var(--ink-soft);
}
.ps-icon svg{
  width:100%; height:100%; fill:none;
  stroke:currentColor; stroke-width:2; stroke-linecap:round;
}
.ps-clear{
  position:absolute; right:10px; top:50%; transform:translateY(-50%);
  width:30px; height:30px; border:0; border-radius:50%; cursor:pointer;
  background:var(--accent-soft); color:var(--accent);
  font-size:1.3rem; line-height:1; display:flex; align-items:center; justify-content:center;
}
.ps-clear:hover{ background:var(--lime); color:var(--dark); }

/* Empty state when a search / filter matches nothing */
.product-empty{
  text-align:center; color:var(--ink-soft); font-size:.95rem; padding:30px 0 10px;
}
.link-inline{
  background:none; border:0; padding:0; cursor:pointer;
  font:inherit; color:var(--accent); text-decoration:underline;
}

/* Screen-reader-only label */
.visually-hidden{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

.brand-bar{
  display:flex; flex-wrap:wrap; justify-content:center; gap:0;
  margin-bottom:26px; border-bottom:1px solid var(--line);
}
.brand-btn{
  background:none; border:0; border-bottom:3px solid transparent;
  padding:12px 22px 13px; margin-bottom:-1px; cursor:pointer;
  font-family:var(--serif); font-size:1.12rem; color:var(--ink-soft);
  transition:color .25s ease, border-color .25s ease;
}
.brand-btn:hover{ color:var(--ink); }
.brand-btn.active{ color:var(--ink); border-bottom-color:var(--lime); }

.filter-bar{
  display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin-bottom:44px;
}
.filter-btn{
  background:none; border:1px solid var(--line); border-radius:40px;
  padding:9px 20px; font-size:.8rem; font-weight:500; color:var(--ink-soft);
  cursor:pointer; transition:all .25s ease;
}
.filter-btn:hover{ border-color:var(--accent); color:var(--accent); }
/* Active filter uses the packet green with DARK text — the lime is far too
   bright to carry white text legibly. */
.filter-btn.active{ background:var(--lime); border-color:var(--lime); color:var(--dark); font-weight:600; }

.product-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }

.product-card{
  background:#fff; display:flex; flex-direction:column;
}
/* .pc-media is a <button> so the enlarge action is keyboard reachable —
   these resets strip the default button chrome. */
.pc-media{
  position:relative; overflow:hidden; background:var(--accent-soft);
  border-radius:var(--radius);
  display:block; width:100%; padding:0; border:0; cursor:zoom-in;
  font:inherit; color:inherit; text-align:left;
}
.pc-media:focus-visible{ outline:3px solid var(--lime); outline-offset:3px; }

/* Small ＋ badge that appears on hover, so it is obvious the photo enlarges. */
.pc-zoom{
  position:absolute; right:12px; bottom:12px;
  width:34px; height:34px; border-radius:50%;
  background:rgba(30,42,16,.82); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:1.05rem; line-height:1;
  opacity:0; transform:translateY(6px);
  transition:opacity .25s ease, transform .25s ease;
}
.pc-media:hover .pc-zoom,
.pc-media:focus-visible .pc-zoom{ opacity:1; transform:none; }
/* 2:3 keeps the whole garment visible — these are catalogue photos,
   so cropping would cut off the design number badge. */
.pc-media img{ width:100%; aspect-ratio:2/3; height:auto; object-fit:cover;
               transition:transform .6s cubic-bezier(.2,.7,.3,1); }
.product-card:hover .pc-media img{ transform:scale(1.05); }
.pc-code{
  position:absolute; top:12px; left:12px;
  background:rgba(255,255,255,.94); color:var(--ink);
  font-size:.68rem; font-weight:600; letter-spacing:.1em;
  padding:5px 10px; border-radius:3px;
}
.pc-body{ padding:18px 2px 0; display:flex; flex-direction:column; flex:1; }
.pc-cat{ font-size:.68rem; letter-spacing:.16em; text-transform:uppercase; color:var(--accent); margin-bottom:7px; }
/* Small pill naming the label the design belongs to. */
.pc-brand{
  display:inline-block; margin-right:7px; padding:2px 7px; border-radius:3px;
  background:var(--lime); color:var(--dark); font-weight:700; letter-spacing:.1em;
}
.pc-brand.is-tl{ background:var(--tl-blue); color:#2C4A5C; }
.pc-name{ font-size:1.1rem; margin-bottom:14px; }
.pc-specs{ font-size:.82rem; color:var(--ink-soft); line-height:1.55; margin-bottom:14px; }
.pc-specs div{ display:flex; gap:6px; }
.pc-specs strong{ font-weight:500; color:var(--ink); min-width:64px; flex-shrink:0; }
.pc-colours{ display:flex; align-items:center; gap:7px; margin-bottom:16px; flex-wrap:wrap; }
.dot{ width:15px; height:15px; border-radius:50%; border:1px solid rgba(0,0,0,.14); }
.pc-colour-text{ font-size:.76rem; color:var(--ink-soft); }
.pc-colour-label{
  font-size:.68rem; letter-spacing:.1em; text-transform:uppercase;
  color:var(--ink-soft); margin-right:2px;
}
.pc-moq{
  font-size:.75rem; color:var(--ink-soft); background:var(--accent-soft);
  padding:8px 11px; border-radius:3px; margin-bottom:16px; line-height:1.45;
}
.pc-btn{ margin-top:auto; padding:12px 16px; font-size:.76rem; }
.pc-btn svg{ width:16px; height:16px; fill:currentColor; }

.moq-note{ text-align:center; margin-top:48px; color:var(--ink-soft); font-size:.94rem; }

/* ==========================================================
   MANUFACTURING STRENGTHS
   ========================================================== */
/* Open grid with hairline rules instead of six filled boxes — much calmer. */
.strength-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:52px 48px; }
.strength{ padding-top:26px; border-top:1px solid var(--line); }
.strength-num{
  font-family:var(--serif); font-size:1.2rem; color:var(--accent);
  margin-bottom:14px; letter-spacing:1px;
}
.strength h3{ margin-bottom:10px; }
.strength p{ font-size:.9rem; color:var(--ink-soft); }

/* ==========================================================
   WHY BUYERS CHOOSE
   ========================================================== */
.why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:40px 44px; }
.why-item{ padding-left:22px; border-left:2px solid var(--accent); }
.why-item h3{ margin-bottom:9px; }
.why-item p{ font-size:.93rem; color:var(--ink-soft); }

/* ==========================================================
   ENLARGED PRODUCT VIEW
   ========================================================== */
.lightbox{
  position:fixed; inset:0; z-index:200; display:none;
  align-items:center; justify-content:center;
  background:rgba(14,20,8,.95); padding:30px 20px;
}
.lightbox.open{ display:flex; }

.lb-figure{ display:flex; flex-direction:column; align-items:center; gap:16px; max-height:100%; }
.lb-stage{ position:relative; line-height:0; }
.lb-stage img{
  max-width:min(560px, 88vw); max-height:78vh;
  width:auto; height:auto; object-fit:contain;
  border-radius:var(--radius);
}
/* Invisible layer over the photo. A right-click or long-press hits this
   instead of the <img>, so the browser offers no "Save image as...".
   See the honest note in section 9 of script.js — this stops casual
   copying only, it is not real protection. */
.lb-shield{ position:absolute; inset:0; cursor:zoom-out; }

.lb-caption{ text-align:center; color:#fff; }
.lb-code{
  display:block; font-size:.7rem; font-weight:700; letter-spacing:.18em;
  text-transform:uppercase; color:var(--lime); margin-bottom:6px;
}
.lb-name{ display:block; font-family:var(--serif); font-size:1.25rem; }

.lb-close{
  position:absolute; top:18px; right:24px; background:none; border:0;
  color:#fff; font-size:2.6rem; line-height:1; cursor:pointer; opacity:.8;
  z-index:2;
}
.lb-close:hover,.lb-close:focus-visible{ opacity:1; }

/* ==========================================================
   PHOTO-COPY DETERRENTS
   ----------------------------------------------------------
   Stops a photograph being dragged to the desktop, selected, or
   long-pressed into a save menu on a phone. It cannot stop a
   screenshot — nothing on a website can. The real protection is the
   Lillybell wordmark and D.No badge burned into each photograph.
   ========================================================== */
.pc-media img,
.lb-stage img,
.cat-card img,
.hero-img,
.split-media img{
  -webkit-user-drag:none; user-select:none; -webkit-user-select:none;
  -webkit-touch-callout:none;
}

/* ==========================================================
   COLLECTION BAND (home page link through to products.html)
   ========================================================== */
.collection-cta{ padding-top:0; }
.cta-band{
  display:grid; grid-template-columns:1.4fr 1fr; gap:50px; align-items:end;
  background:var(--accent-soft); padding:64px 60px; border-radius:var(--radius);
}
.cta-text h2{ margin-bottom:16px; }
.cta-text p{ color:var(--ink-soft); max-width:440px; }
.cta-action{ text-align:right; }
.cta-note{ font-size:.78rem; color:var(--ink-soft); margin-top:14px; }

/* ==========================================================
   PRODUCTS PAGE — page head + enquiry strip
   ========================================================== */
.page-head{ padding:150px 0 20px; background:var(--bg-alt); }
.page-head h1{ font-size:clamp(2.1rem,4.4vw,3.3rem); font-style:italic; margin-bottom:18px; }
.page-sub{ color:var(--ink-soft); max-width:620px; font-size:1rem; }
.crumbs{ font-size:.78rem; color:var(--ink-soft); margin-bottom:26px; }
.crumbs a{ color:var(--ink-soft); }
.crumbs a:hover{ color:var(--accent); }
.crumbs span{ margin:0 9px; }
.crumbs span:last-child{ margin:0; color:var(--ink); }

.strip{ display:grid; grid-template-columns:1.5fr 1fr; gap:50px; align-items:center; }
.strip h2{ margin-bottom:14px; }
.strip-text{ color:rgba(255,255,255,.82); max-width:520px; }
.strip-actions{ display:flex; flex-direction:column; gap:12px; }

/* ==========================================================
   ENQUIRY
   ========================================================== */
.enquiry-section{ background:var(--dark); color:#fff; }
.enquiry-wrap{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:start; }
.enquiry-intro h2{ margin-bottom:18px; }
.enquiry-intro > p{ color:rgba(255,255,255,.86); margin-bottom:26px; }
.enquiry-points{ margin-bottom:30px; }
.enquiry-points li{
  padding:11px 0 11px 26px; position:relative;
  border-bottom:1px solid rgba(255,255,255,.16);
  font-size:.94rem; color:rgba(255,255,255,.92);
}
.enquiry-points li::before{
  content:''; position:absolute; left:0; top:20px;
  width:9px; height:9px; border-radius:50%; background:rgba(255,255,255,.85);
}

.enquiry-form{ background:#fff; padding:38px 34px; border-radius:var(--radius); color:var(--ink); }
.field{ margin-bottom:16px; }
.field label{ display:block; font-size:.76rem; font-weight:600; letter-spacing:.09em; text-transform:uppercase; margin-bottom:7px; color:var(--ink-soft); }
.field label span{ color:#C0392B; }
.field input,.field select,.field textarea{
  width:100%; padding:12px 14px; border:1px solid var(--line);
  border-radius:var(--radius); background:#fff; font-size:.95rem;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none; border-color:var(--accent); box-shadow:0 0 0 3px var(--accent-soft);
}
.field input.error,.field select.error{ border-color:#C0392B; }
.field textarea{ resize:vertical; min-height:88px; }
.row-2{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-note{ font-size:.78rem; color:var(--ink-soft); text-align:center; margin-top:12px; }

/* ==========================================================
   CONTACT
   ========================================================== */
/* Our four locations — head office, sales office and the two factory units. */
.location-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-bottom:60px; }
.location-card{
  background:var(--bg-alt); border:1px solid var(--line);
  border-left:4px solid var(--lime);
  padding:30px 26px; border-radius:var(--radius);
}
.loc-tag{
  font-size:.68rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color:var(--accent); margin-bottom:10px;
}
.location-card h3{ font-size:1.08rem; margin-bottom:10px; }
.location-card p{ font-size:.9rem; color:var(--ink-soft); line-height:1.7; }

/* Registration strip — MSME/Udyam and entity details. */
.credentials{
  display:grid; grid-template-columns:repeat(3,1fr); gap:2px;
  background:var(--dark); margin-bottom:60px; border-radius:var(--radius); overflow:hidden;
}
.cred-item{ padding:24px 26px; display:flex; flex-direction:column; gap:6px; }
.cred-label{
  font-size:.66rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color:var(--lime);
}
.cred-value{ font-size:.95rem; color:#fff; }

.contact-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--line); border:1px solid var(--line); }
.contact-card{ background:#fff; padding:38px 32px; }
.contact-card h3{ font-size:1.05rem; margin-bottom:12px; color:var(--accent); }
.contact-card p{ font-size:.94rem; color:var(--ink-soft); line-height:1.75; }
.contact-card a{ transition:color .2s ease; }
.contact-card a:hover{ color:var(--accent); }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer{ background:#16200D; color:rgba(255,255,255,.72); padding-top:76px; border-top:4px solid var(--lime); }
.footer-inner{ display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:50px; padding-bottom:60px; }
.footer-logo{ height:48px; width:auto; object-fit:contain; margin-bottom:18px; }
.footer-tag{ font-size:.9rem; line-height:1.75; margin-bottom:16px; }
.social-link{ font-size:.86rem; color:#fff; border-bottom:1px solid rgba(255,255,255,.35); padding-bottom:2px; }
.social-link:hover{ border-color:#fff; }
.footer-col h4{ color:#fff; margin-bottom:16px; font-size:1rem; }
.footer-col a,.footer-col span{ display:block; font-size:.9rem; margin-bottom:10px; transition:color .2s ease; }
.footer-col a:hover{ color:#fff; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.1); padding:22px 0; }
.footer-bottom .container{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; }
.footer-bottom p{ font-size:.82rem; color:rgba(255,255,255,.5); }

/* ==========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================== */
.wa-float{
  position:fixed; right:20px; bottom:20px; z-index:90;
  width:56px; height:56px; border-radius:50%;
  background:var(--whatsapp); display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 20px rgba(37,211,102,.4);
  transition:transform .25s ease, box-shadow .25s ease;
}
.wa-float svg{ width:30px; height:30px; fill:#fff; }
.wa-float:hover{ transform:scale(1.08); box-shadow:0 8px 26px rgba(37,211,102,.55); }

/* ==========================================================
   ORDER LIST  ("Add to Order")
   ----------------------------------------------------------
   The floating pill sits bottom-LEFT so it never covers the
   WhatsApp button on the right.
   ========================================================== */
.pc-actions{ display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.pc-actions .btn{ padding:13px 10px; font-size:.74rem; letter-spacing:.06em; }
.btn-order{
  background:var(--lime); color:var(--dark); font-weight:700;
  border-color:var(--lime);
}
.btn-order:hover{ background:var(--lime-dark); border-color:var(--lime-dark); }
.btn-order.added{ background:var(--dark); color:#fff; border-color:var(--dark); }

.order-fab{
  position:fixed; left:20px; bottom:20px; z-index:90;
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 20px; border:0; border-radius:40px; cursor:pointer;
  background:var(--dark); color:#fff;
  font-size:.78rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  box-shadow:0 6px 20px rgba(30,42,16,.35);
  transition:transform .25s ease, background .25s ease;
}
.order-fab:hover{ transform:translateY(-2px); }
.order-fab-count{
  min-width:22px; height:22px; padding:0 6px; border-radius:11px;
  background:var(--lime); color:var(--dark);
  display:inline-flex; align-items:center; justify-content:center;
  font-size:.75rem; font-weight:700; letter-spacing:0;
}
.order-fab.has-items{ background:var(--accent); }

.order-scrim{
  position:fixed; inset:0; z-index:110; background:rgba(20,28,12,.5);
  opacity:0; pointer-events:none; transition:opacity .3s ease;
}
.order-scrim.open{ opacity:1; pointer-events:auto; }

.order-panel{
  position:fixed; z-index:120; top:0; right:0; bottom:0; width:min(460px,100%);
  background:#fff; display:flex; flex-direction:column;
  transform:translateX(100%); transition:transform .35s cubic-bezier(.2,.7,.3,1);
  box-shadow:-10px 0 40px rgba(20,28,12,.18);
}
.order-panel.open{ transform:none; }

.order-head{
  display:flex; align-items:flex-start; justify-content:space-between; gap:16px;
  padding:26px 26px 20px; border-bottom:3px solid var(--lime);
}
.order-head h3{ font-size:1.35rem; }
.order-head .eyebrow{ margin-bottom:6px; }
.order-close{
  background:none; border:0; font-size:2rem; line-height:1; cursor:pointer;
  color:var(--ink-soft); padding:0 4px;
}
.order-close:hover{ color:var(--ink); }

.order-body{ flex:1; overflow-y:auto; padding:22px 26px; }
.order-empty{ color:var(--ink-soft); font-size:.94rem; padding:20px 0; }

.order-row{
  display:grid; grid-template-columns:60px 1fr auto; gap:14px; align-items:center;
  padding:16px 0; border-bottom:1px solid var(--line);
}
.order-row img{ width:60px; aspect-ratio:2/3; object-fit:cover; border-radius:var(--radius); }
.order-row-info{ display:flex; flex-direction:column; gap:3px; min-width:0; }
.order-row-code{ font-size:.7rem; font-weight:700; letter-spacing:.1em; color:var(--accent); }
.order-row-name{ font-size:.9rem; font-weight:500; }
.order-row-cat{ font-size:.75rem; color:var(--ink-soft); }

.order-qty{ display:flex; align-items:center; gap:2px; }
.order-qty button{
  width:28px; height:28px; border:1px solid var(--line); background:#fff;
  cursor:pointer; font-size:1rem; line-height:1; border-radius:var(--radius);
}
.order-qty button:hover{ border-color:var(--accent); color:var(--accent); }
.order-qty span{ min-width:32px; text-align:center; font-size:.9rem; font-weight:600; }

.order-remove{
  grid-column:2 / -1; justify-self:start; background:none; border:0; cursor:pointer;
  font-size:.74rem; letter-spacing:.06em; color:var(--ink-soft);
  text-decoration:underline; padding:0;
}
.order-remove:hover{ color:#C0392B; }

.order-summary{
  margin-top:18px; font-size:.88rem; color:var(--ink-soft);
  background:var(--accent-soft); padding:12px 14px; border-radius:var(--radius);
}
.order-summary strong{ color:var(--ink); }

.order-foot{ padding:20px 26px 26px; border-top:1px solid var(--line); background:var(--bg-alt); }
.order-note{ font-size:.78rem; color:var(--ink-soft); margin-bottom:14px; line-height:1.6; }
.order-send svg{ width:18px; height:18px; fill:#fff; }
.order-clear{
  display:block; width:100%; margin-top:12px; background:none; border:0; cursor:pointer;
  font-size:.76rem; color:var(--ink-soft); text-decoration:underline;
}
.order-clear:hover{ color:var(--ink); }

/* ==========================================================
   SCROLL REVEAL ANIMATION
   ========================================================== */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .8s ease, transform .8s ease; }
.reveal.visible{ opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
  .reveal{ opacity:1; transform:none; }
  html{ scroll-behavior:auto; }
}

/* ==========================================================
   RESPONSIVE — TABLET
   ========================================================== */
@media (max-width:1080px){
  :root{ --section-y:84px; }
  .product-grid{ grid-template-columns:repeat(3,1fr); }
  .contact-grid{ grid-template-columns:repeat(2,1fr); }
  .location-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-inner{ grid-template-columns:1fr 1fr; gap:40px; }
}

@media (max-width:900px){
  /* Slide-out menu. It is opaque white and sits above a dimmed page. */
  .nav{
    position:fixed; top:0; right:0; bottom:0; width:min(82vw,330px);
    background:#FFFFFF; flex-direction:column; align-items:flex-start;
    justify-content:flex-start; gap:0; padding:100px 28px 32px;
    transform:translateX(100%); transition:transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow:-14px 0 50px rgba(38,34,30,.18); z-index:3;
    overflow-y:auto;
  }
  .nav.open{ transform:translateX(0); }
  .nav a{ color:var(--ink); width:100%; padding:16px 0; font-size:1rem; border-bottom:1px solid var(--line); }
  .nav a:not(.btn)::after{ display:none; }
  .nav a.is-current{ color:var(--accent); }
  .nav-cta{ margin-top:24px; border-bottom:0; color:#fff !important; }
  .menu-toggle{ display:block; position:relative; z-index:4; }

  /* Dark backdrop behind the open menu. Sits inside the header, one layer
     below the menu panel — see the comment in script.js. */
  .nav-scrim{
    position:fixed; inset:0; background:rgba(38,34,30,.45);
    opacity:0; pointer-events:none; transition:opacity .3s ease; z-index:2;
  }
  .nav-scrim.open{ opacity:1; pointer-events:auto; }

  .hero{ padding-top:110px; }
  .hero-grid{ grid-template-columns:1fr; gap:44px; }
  .hero-content{ padding-bottom:0; }
  .hero-media::before{ left:-20px; right:20px; }
  .hero-img{ height:520px; object-position:center 20%; }

  .split{ grid-template-columns:1fr; gap:40px; }
  .brand-grid{ grid-template-columns:1fr; gap:24px; }
  .brand-card{ padding:34px 28px 30px; }
  .split-media img{ height:400px; }
  .cat-grid{ grid-template-columns:repeat(2,1fr); gap:32px 24px; }
  .strength-grid{ grid-template-columns:repeat(2,1fr); gap:38px 34px; }
  .why-grid{ grid-template-columns:repeat(2,1fr); gap:32px; }
  .enquiry-wrap{ grid-template-columns:1fr; gap:44px; }
  .stats{ grid-template-columns:repeat(2,1fr); gap:34px 20px; }
  .cta-band{ grid-template-columns:1fr; gap:30px; padding:46px 38px; align-items:start; }
  .cta-action{ text-align:left; }
  .strip{ grid-template-columns:1fr; gap:30px; }
  .strip-actions{ flex-direction:row; flex-wrap:wrap; }
  .page-head{ padding-top:130px; }
}

/* ==========================================================
   RESPONSIVE — MOBILE
   ========================================================== */
@media (max-width:640px){
  :root{ --section-y:66px; --gutter:20px; }
  body{ font-size:15.5px; }

  .hero{ padding-top:96px; }
  .hero-grid{ gap:34px; }
  .hero-actions{ flex-direction:column; align-items:stretch; margin-bottom:36px; }
  .hero-actions .btn{ width:100%; }
  .hero-facts{ gap:0; justify-content:space-between; padding-top:24px; }
  .hero-facts strong{ font-size:1.45rem; }
  .hero-facts span{ font-size:.68rem; }
  .hero-img{ height:430px; }
  .hero-media::before{ left:-14px; right:14px; top:26px; }

  .brand-logo{ height:34px; }
  .brand-name{ font-size:1.35rem; }
  .brand-tag{ font-size:.48rem; letter-spacing:.12em; }

  .section-head{ margin-bottom:42px; }
  .split-media img{ height:300px; }
  .stats{ margin-top:52px; padding-top:40px; }
  .stat-num{ font-size:2.1rem; }
  .stat-num-lg{ font-size:1.5rem; }
  .stat-num-lg em{ font-size:1rem; }

  .cat-grid{ grid-template-columns:1fr 1fr; gap:24px 14px; }
  .cat-card img{ aspect-ratio:3/4; }
  .cat-body{ padding-top:14px; }
  .cat-body h3{ font-size:1.02rem; }
  .cat-body p{ font-size:.8rem; }

  .product-grid{ grid-template-columns:1fr 1fr; gap:14px; }
  .pc-body{ padding:14px 14px 16px; }
  .pc-name{ font-size:.95rem; margin-bottom:10px; }
  .pc-specs{ font-size:.75rem; }
  .pc-specs strong{ min-width:50px; }
  .pc-colour-text{ display:none; }
  .pc-moq{ font-size:.68rem; padding:6px 8px; }
  .pc-btn{ padding:11px 8px; font-size:.7rem; }

  .strength-grid{ grid-template-columns:1fr; }
  .strength{ padding:32px 26px; }

  .why-grid{ grid-template-columns:1fr; gap:26px; }


  .cta-band{ padding:36px 24px; }
  .cta-action .btn{ width:100%; }
  .strip-actions .btn{ width:100%; }
  .page-head{ padding:112px 0 12px; }
  .section-tight{ padding-top:40px; }

  .enquiry-form{ padding:28px 22px; }
  .row-2{ grid-template-columns:1fr; }

  .contact-grid{ grid-template-columns:1fr; }
  .location-grid{ grid-template-columns:1fr; gap:16px; }
  .credentials{ grid-template-columns:1fr; }
  .contact-card{ padding:28px 24px; }

  .footer-inner{ grid-template-columns:1fr; gap:34px; padding-bottom:44px; }
  .footer-bottom .container{ flex-direction:column; text-align:center; }

  .wa-float{ width:52px; height:52px; right:16px; bottom:16px; }
  .wa-float svg{ width:27px; height:27px; }

  /* On a phone the two buttons share the bottom edge, so the order pill
     shrinks and the product buttons stack. */
  .order-fab{ left:16px; bottom:16px; padding:12px 16px; font-size:.72rem; }
  .pc-actions{ grid-template-columns:1fr; }

  .lightbox{ padding:16px 12px; }
  .lb-stage img{ max-width:94vw; max-height:70vh; }
  .lb-name{ font-size:1.05rem; }
  .lb-close{ top:10px; right:12px; }
  /* On a phone the ＋ badge is always visible — there is no hover. */
  .pc-zoom{ opacity:1; transform:none; width:30px; height:30px; }

  .filter-bar{ flex-wrap:nowrap; overflow-x:auto; justify-content:flex-start;
               padding-bottom:8px; -webkit-overflow-scrolling:touch; }
  .filter-btn{ flex-shrink:0; }
}
