/* ==========================================================================
   RR JCB Spares — Design System
   Premium industrial theme. Space Grotesk + Inter + Noto Sans Tamil.
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------- */
:root {
  /* Brand */
  --amber:        #FFC400;
  --amber-600:    #F2B000;
  --amber-700:    #E8A200;
  --amber-soft:   #FFF3CC;

  /* Ink / surfaces */
  --ink:          #0B0D10;
  --ink-800:      #14181E;
  --ink-700:      #1C222B;
  --ink-600:      #2A323E;

  /* Neutrals (light) */
  --bg:           #FAFAF7;
  --surface:      #FFFFFF;
  --surface-2:    #F4F4EF;
  --line:         #E7E7DF;
  --line-strong:  #D6D6CB;

  /* Text */
  --text:         #10141A;
  --text-muted:   #5B6572;
  --text-faint:   #8A93A0;
  --on-dark:      #F6F7F8;
  --on-dark-muted:#A9B1BC;

  /* Semantic */
  --success:      #1F9D55;
  --success-soft: #E4F5EA;
  --trust:        #1E5BD6;

  /* Effects */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --shadow-sm: 0 1px 2px rgba(16,20,26,.06), 0 1px 3px rgba(16,20,26,.05);
  --shadow:    0 4px 14px rgba(16,20,26,.07), 0 2px 6px rgba(16,20,26,.05);
  --shadow-md: 0 12px 34px rgba(16,20,26,.10), 0 6px 12px rgba(16,20,26,.06);
  --shadow-lg: 0 30px 64px rgba(16,20,26,.16), 0 12px 24px rgba(16,20,26,.08);
  --shadow-amber: 0 14px 30px rgba(232,162,0,.28);

  /* Spacing scale (8pt) */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;

  --container: 1200px;

  --font-display: "Space Grotesk", "Noto Sans Tamil", ui-sans-serif, system-ui, sans-serif;
  --font-body:    "Inter", "Noto Sans Tamil", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);

  --z-nav: 100;
  --z-overlay: 200;
}

:root[lang="ta"] {
  --font-display: "Noto Sans Tamil", "Space Grotesk", sans-serif;
  --font-body:    "Noto Sans Tamil", "Inter", sans-serif;
}

/* ---- Reset / base ------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { 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; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}
p { margin: 0; }

:focus-visible {
  outline: 3px solid var(--trust);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: var(--on-dark);
  padding: 10px 16px; border-radius: 8px; z-index: 999;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---- Layout ------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(56px, 8vw, 112px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--amber-700);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--amber), var(--amber-700));
}
.eyebrow--light { color: var(--amber); }

.section-head { max-width: 640px; margin-bottom: var(--sp-7); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title {
  font-size: clamp(28px, 4.4vw, 46px);
  margin-top: 14px;
}
.section-sub {
  margin-top: 18px; color: var(--text-muted); font-size: 18px; line-height: 1.65;
}

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent;
  min-height: 48px; transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--amber); color: var(--ink); box-shadow: var(--shadow-amber); }
.btn-primary:hover { background: var(--amber-600); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-dark { background: var(--ink); color: var(--on-dark); }
.btn-dark:hover { background: var(--ink-700); transform: translateY(-2px); }

.btn-whatsapp { background: #1FA855; color: #fff; box-shadow: 0 12px 26px rgba(31,168,85,.28); }
.btn-whatsapp:hover { background: #17944a; transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); background: var(--surface); transform: translateY(-2px); }
.btn-ghost--light { color: var(--on-dark); border-color: rgba(255,255,255,.28); }
.btn-ghost--light:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }

.btn-sm { padding: 10px 16px; min-height: 42px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---- Header / Nav ------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(250,250,247,.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 24px rgba(16,20,26,.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; gap: 20px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative; font-family: var(--font-display); font-weight: 500; font-size: 15px;
  color: var(--text); padding: 10px 14px; border-radius: 10px; transition: color .18s var(--ease), background .18s var(--ease);
}
.nav-link:hover { background: var(--surface-2); }
.nav-link.is-active { color: var(--ink); }
.nav-link.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  border-radius: 2px; background: var(--amber-700);
}
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Language toggle */
.lang-toggle {
  display: inline-flex; background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 999px; padding: 3px; gap: 2px;
}
.lang-btn {
  border: 0; background: transparent; color: var(--text-muted);
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  padding: 7px 13px; border-radius: 999px; min-height: 34px; transition: all .18s var(--ease);
}
.lang-btn.is-active { background: var(--ink); color: var(--on-dark); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--surface); align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
body.nav-open .nav-toggle .icon-open { display: none; }
body.nav-open .nav-toggle .icon-close { display: block; }

/* ---- Logo --------------------------------------------------------------- */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 46px; height: 46px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -.01em; color: var(--ink);
  white-space: nowrap;
}
.brand-name em { font-style: normal; color: var(--amber-700); }
.brand-tag {
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-faint); margin-top: 3px; font-weight: 600;
}
.on-dark .brand-name { color: #fff; }
.on-dark .brand-tag { color: var(--on-dark-muted); }
.brand-logo-img { height: 56px; width: auto; display: block; }
.brand .brand-logo-img ~ .brand-text { display: none; }
@media (max-width: 480px) { .brand-logo-img { height: 48px; } }

/* ---- Hero --------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 120% at 85% -10%, #1C222B 0%, #0B0D10 55%);
  color: var(--on-dark);
  padding-block: clamp(64px, 9vw, 128px);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(50% 55% at 82% 18%, rgba(255,196,0,.20), transparent 60%),
    radial-gradient(40% 40% at 10% 90%, rgba(30,91,214,.16), transparent 60%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(120% 80% at 70% 20%, #000, transparent 75%);
          mask-image: radial-gradient(120% 80% at 70% 20%, #000, transparent 75%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  padding: 8px 14px; border-radius: 999px; font-size: 13.5px; color: var(--on-dark-muted);
  font-family: var(--font-display); font-weight: 500;
}
.hero-badge b { color: var(--amber); font-weight: 700; }
.hero h1 {
  color: #fff; font-size: clamp(38px, 6vw, 68px); margin-top: 22px; letter-spacing: -.03em;
}
.hero h1 .hl {
  background: linear-gradient(120deg, var(--amber), #FFDE6A);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { margin-top: 22px; font-size: clamp(17px, 2vw, 20px); color: var(--on-dark-muted); max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-stats { display: flex; gap: 34px; margin-top: 44px; flex-wrap: wrap; }
.hero-stat .num {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3.4vw, 38px); color: #fff; letter-spacing: -.02em;
}
.hero-stat .num .u { color: var(--amber); }
.hero-stat .lbl { font-size: 13.5px; color: var(--on-dark-muted); margin-top: 4px; }
.hero-stat + .hero-stat { border-left: 1px solid rgba(255,255,255,.12); padding-left: 34px; }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-xl);
  padding: 26px; backdrop-filter: blur(6px); box-shadow: var(--shadow-lg);
}
.hero-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hero-card-title { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 15px; }
.hero-chip { font-size: 12px; color: var(--ink); background: var(--amber); padding: 5px 11px; border-radius: 999px; font-weight: 700; font-family: var(--font-display); }
.hero-parts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-part {
  display: flex; align-items: center; gap: 12px; padding: 14px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.hero-part:hover { transform: translateY(-3px); background: rgba(255,255,255,.09); }
.hero-part .ico { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,196,0,.14); color: var(--amber); display: grid; place-items: center; flex: none; }
.hero-part .ico svg { width: 22px; height: 22px; }
.hero-part .t { display: block; font-size: 13.5px; font-weight: 600; color: #fff; font-family: var(--font-display); }
.hero-part .s { display: block; font-size: 11.5px; color: var(--on-dark-muted); margin-top: 2px; }
.hero-float {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--surface); color: var(--text); border-radius: var(--radius);
  padding: 14px 18px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.hero-float .dot { width: 40px; height: 40px; border-radius: 11px; background: var(--success-soft); color: var(--success); display: grid; place-items: center; flex: none; }
.hero-float .dot svg { width: 22px; height: 22px; }
.hero-float b { font-family: var(--font-display); font-size: 14.5px; display: block; }
.hero-float span { font-size: 12px; color: var(--text-muted); }

/* ---- Trust marquee bar -------------------------------------------------- */
.trustbar { background: var(--ink); color: var(--on-dark); padding: 18px 0; overflow: hidden; }
.trust-track { display: flex; gap: 48px; align-items: center; width: max-content; animation: marquee 32s linear infinite; }
.trustbar:hover .trust-track { animation-play-state: paused; }
.trust-item { display: inline-flex; align-items: center; gap: 10px; color: var(--on-dark-muted); font-family: var(--font-display); font-weight: 500; font-size: 15px; white-space: nowrap; }
.trust-item svg { width: 20px; height: 20px; color: var(--amber); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .trust-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } }

/* ---- Cards / grids ------------------------------------------------------ */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }

.cat-card { position: relative; overflow: hidden; }
.cat-card .cat-ico {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--amber-soft), #FFE79A); color: var(--amber-700); margin-bottom: 18px;
}
.cat-card .cat-ico svg { width: 28px; height: 28px; }
.cat-card h3 { font-size: 19px; }
.cat-card p { color: var(--text-muted); font-size: 14.5px; margin-top: 8px; }
.cat-card .cat-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--amber-700); font-weight: 600; font-family: var(--font-display); font-size: 14px; }
.cat-card .cat-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.cat-card:hover .cat-link svg { transform: translateX(4px); }

/* Value props */
.value { display: flex; gap: 16px; }
.value .v-ico { width: 48px; height: 48px; flex: none; border-radius: 13px; background: var(--ink); color: var(--amber); display: grid; place-items: center; }
.value .v-ico svg { width: 24px; height: 24px; }
.value h3 { font-size: 18px; }
.value p { color: var(--text-muted); font-size: 14.5px; margin-top: 6px; }

/* ---- Split feature ------------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-media {
  border-radius: var(--radius-xl); background: linear-gradient(160deg, var(--ink-800), var(--ink)); color: var(--on-dark);
  padding: 40px; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); min-height: 380px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.split-media::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 80% 10%, rgba(255,196,0,.22), transparent 60%);
}
.machine-list { position: relative; display: grid; gap: 12px; }
.machine-row {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius);
}
.machine-row .mr-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--amber); color: var(--ink); display: grid; place-items: center; flex: none; }
.machine-row .mr-ico svg { width: 24px; height: 24px; }
.machine-row b { color: #fff; font-family: var(--font-display); font-size: 15px; }
.machine-row span { display: block; color: var(--on-dark-muted); font-size: 12.5px; }

.check-list { display: grid; gap: 14px; margin-top: 26px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--text); }
.check-list .ck { width: 24px; height: 24px; flex: none; border-radius: 999px; background: var(--success-soft); color: var(--success); display: grid; place-items: center; margin-top: 1px; }
.check-list .ck svg { width: 15px; height: 15px; }

/* ---- Brands ------------------------------------------------------------- */
.brands-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.brand-pill {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 16px;
  text-align: center; transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.brand-pill:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.brand-pill .bp-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink); }
.brand-pill .bp-kind { font-size: 11.5px; color: var(--text-faint); letter-spacing: .04em; }
.brand-pill.is-genuine { border-color: var(--amber); background: linear-gradient(180deg, #fff, var(--amber-soft)); }
.badge-genuine { font-size: 10px; font-weight: 700; color: var(--amber-700); text-transform: uppercase; letter-spacing: .1em; }

/* ---- Brand logos (authorised dealer strip) ----------------------------- */
.brand-logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.brand-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 16px; box-shadow: var(--shadow-sm); text-align: center; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease); }
.brand-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.brand-logo { aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden; background: #fff; display: grid; place-items: center; border: 1px solid var(--line); }
.brand-logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.brand-logo .brand-fallback { display: none; font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 15px; padding: 12px; line-height: 1.3; }
.brand-logo.noimg { background: var(--surface-2); }
.brand-logo.noimg img { display: none; }
.brand-logo.noimg .brand-fallback { display: flex; align-items: center; justify-content: center; }
.brand-meta { display: flex; flex-direction: column; gap: 7px; margin-top: 13px; align-items: center; }
.brand-meta .brand-name { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--ink); }
.brand-badge { font-size: 11px; font-weight: 700; font-family: var(--font-display); letter-spacing: .02em; padding: 4px 11px; border-radius: 999px; background: var(--surface-2); color: var(--text-muted); }
.brand-badge.auth { background: var(--amber-soft); color: var(--amber-700); }
@media (max-width: 1024px) { .brand-logos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .brand-logos { grid-template-columns: repeat(2, 1fr); } }

/* ---- Instagram showcase ------------------------------------------------ */
.ig-showcase { position: relative; display: block; max-width: 920px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); background: var(--surface); }
.ig-showcase img { display: block; width: 100%; height: auto; }
.ig-showcase-hover { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: #fff; background: rgba(11,13,16,.45); opacity: 0; transition: opacity .25s var(--ease); font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.ig-showcase:hover .ig-showcase-hover { opacity: 1; }
.ig-showcase-hover svg { width: 40px; height: 40px; }

/* ---- New arrivals ------------------------------------------------------ */
.new-grid { max-width: 380px; margin: 0 auto; }
.pc-tag.new { background: #1FA855; color: #fff; }

/* ---- Steps -------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step .step-num {
  font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink);
  width: 40px; height: 40px; border-radius: 999px; background: var(--amber); display: grid; place-items: center; margin-bottom: 18px;
}
.step h3 { font-size: 19px; }
.step p { color: var(--text-muted); font-size: 14.5px; margin-top: 8px; }

/* ---- Testimonials ------------------------------------------------------- */
.quote-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.quote-stars { color: var(--amber); display: flex; gap: 3px; margin-bottom: 16px; }
.quote-stars svg { width: 18px; height: 18px; }
.quote-card blockquote { font-size: 16.5px; line-height: 1.6; color: var(--text); margin: 0; flex: 1; }
.quote-author { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.quote-author .qa-av { width: 44px; height: 44px; border-radius: 999px; background: var(--ink); color: var(--amber); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; flex: none; }
.quote-author b { font-family: var(--font-display); font-size: 14.5px; }
.quote-author span { display: block; font-size: 12.5px; color: var(--text-muted); }

/* ---- CTA band ----------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; background: radial-gradient(120% 140% at 15% 0%, #1C222B, #0B0D10); color: var(--on-dark); border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 72px); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(45% 60% at 88% 20%, rgba(255,196,0,.24), transparent 60%); }
.cta-band .container-inner { position: relative; max-width: 720px; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); }
.cta-band p { color: var(--on-dark-muted); font-size: 18px; margin-top: 16px; }
.cta-band .hero-cta { margin-top: 30px; }

/* ---- Footer ------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--on-dark-muted); padding-top: var(--sp-8); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: var(--sp-7); }
.footer-about p { margin-top: 18px; font-size: 14.5px; line-height: 1.7; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; font-family: var(--font-display); }
.footer-col a, .footer-col li { display: block; font-size: 14.5px; padding: 6px 0; color: var(--on-dark-muted); transition: color .18s var(--ease); }
.footer-col a:hover { color: var(--amber); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--amber); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: var(--on-dark-muted); }
.footer-social a:hover { color: var(--amber); border-color: var(--amber); }
.footer-social svg { width: 20px; height: 20px; }

/* ---- Page hero (subpages) ---------------------------------------------- */
.page-hero { background: radial-gradient(110% 130% at 90% -20%, #1C222B, #0B0D10); color: var(--on-dark); padding-block: clamp(56px, 8vw, 96px); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(40% 50% at 85% 15%, rgba(255,196,0,.16), transparent 60%); }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(34px, 5.4vw, 58px); margin-top: 16px; }
.page-hero p { color: var(--on-dark-muted); font-size: 19px; margin-top: 18px; max-width: 620px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13.5px; color: var(--on-dark-muted); font-family: var(--font-display); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }

/* ---- Stats strip -------------------------------------------------------- */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-box { text-align: center; padding: 28px 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.stat-box .s-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 4vw, 44px); color: var(--ink); letter-spacing: -.02em; }
.stat-box .s-num .u { color: var(--amber-700); }
.stat-box .s-lbl { font-size: 14px; color: var(--text-muted); margin-top: 6px; }

/* ---- Timeline ----------------------------------------------------------- */
.timeline { position: relative; display: grid; gap: 8px; padding-left: 8px; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(var(--amber), var(--line)); }
.tl-item { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; padding: 14px 0; }
.tl-year { position: relative; z-index: 1; width: 56px; height: 56px; border-radius: 999px; background: var(--ink); color: var(--amber); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 14px; border: 3px solid var(--bg); }
.tl-body h3 { font-size: 19px; }
.tl-body p { color: var(--text-muted); margin-top: 6px; font-size: 15px; }

/* ---- Products page ------------------------------------------------------ */
.filters { position: sticky; top: 82px; z-index: 20; background: rgba(250,250,247,.86); backdrop-filter: blur(12px); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow-sm); margin-bottom: 32px; }
.search-wrap { position: relative; margin-bottom: 16px; }
.search-wrap svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--text-faint); }
.search-input { width: 100%; height: 52px; padding: 0 18px 0 46px; border-radius: 999px; border: 1.5px solid var(--line-strong); background: var(--surface); font-size: 16px; font-family: var(--font-body); transition: border-color .18s var(--ease), box-shadow .18s var(--ease); }
.search-input:focus { outline: none; border-color: var(--amber-700); box-shadow: 0 0 0 4px rgba(255,196,0,.18); }
.filter-groups { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.filter-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-label { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); margin-right: 4px; }
.chip {
  border: 1.5px solid var(--line-strong); background: var(--surface); color: var(--text);
  padding: 8px 15px; border-radius: 999px; font-size: 13.5px; font-weight: 600; font-family: var(--font-display);
  min-height: 38px; transition: all .16s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip.is-active.chip-amber { background: var(--amber); color: var(--ink); border-color: var(--amber); }

.results-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.results-count { font-size: 14.5px; color: var(--text-muted); }
.results-count b { color: var(--text); font-family: var(--font-display); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease); }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.pc-media { position: relative; aspect-ratio: 4/3; display: grid; place-items: center; background: linear-gradient(150deg, var(--surface-2), #EDEDE4); }
.pc-media .pc-glyph { width: 82px; height: 82px; color: var(--ink-600); opacity: .82; }
.pc-media .pc-glyph svg { width: 100%; height: 100%; }
.pc-media .pc-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pc-tag { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 700; font-family: var(--font-display); padding: 5px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.pc-tag.genuine { background: var(--amber); color: var(--ink); }
.pc-tag.aftermarket { background: var(--ink); color: #fff; }
.pc-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.pc-cat { font-size: 12px; font-weight: 600; color: var(--amber-700); font-family: var(--font-display); letter-spacing: .05em; text-transform: uppercase; }
.pc-name { font-family: var(--font-display); font-weight: 700; font-size: 17.5px; margin-top: 8px; line-height: 1.25; }
.pc-fits { font-size: 13.5px; color: var(--text-muted); margin-top: 8px; }
.pc-fits b { color: var(--text); font-weight: 600; }
.pc-brand { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 12.5px; color: var(--text-faint); }
.pc-brand .bdot { width: 7px; height: 7px; border-radius: 999px; background: var(--amber); }
.pc-foot { margin-top: auto; padding-top: 18px; }

.no-results { grid-column: 1 / -1; text-align: center; padding: 64px 24px; background: var(--surface); border: 1px dashed var(--line-strong); border-radius: var(--radius-lg); }
.no-results .nr-ico { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 18px; background: var(--surface-2); color: var(--text-faint); display: grid; place-items: center; }
.no-results .nr-ico svg { width: 32px; height: 32px; }
.no-results h3 { font-size: 22px; }
.no-results p { color: var(--text-muted); margin-top: 10px; }

/* Photo-to-WhatsApp panel */
.photo-panel { background: linear-gradient(150deg, var(--ink-800), var(--ink)); color: var(--on-dark); border-radius: var(--radius-xl); padding: clamp(30px, 5vw, 56px); position: relative; overflow: hidden; }
.photo-panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 70% at 85% 10%, rgba(31,168,85,.2), transparent 60%); }
.photo-panel .pp-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.photo-panel h2 { color: #fff; font-size: clamp(26px, 3.6vw, 40px); }
.photo-panel p { color: var(--on-dark-muted); font-size: 17px; margin-top: 16px; }
.photo-drop {
  border: 2px dashed rgba(255,255,255,.24); border-radius: var(--radius-lg); padding: 34px 24px; text-align: center;
  background: rgba(255,255,255,.04); transition: border-color .2s var(--ease), background .2s var(--ease); cursor: pointer;
}
.photo-drop:hover, .photo-drop.is-drag { border-color: var(--amber); background: rgba(255,196,0,.06); }
.photo-drop .pd-ico { width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 16px; background: rgba(255,255,255,.08); color: var(--amber); display: grid; place-items: center; }
.photo-drop .pd-ico svg { width: 30px; height: 30px; }
.photo-drop b { color: #fff; font-family: var(--font-display); font-size: 17px; }
.photo-drop span { display: block; color: var(--on-dark-muted); font-size: 13.5px; margin-top: 6px; }
.photo-preview { display: none; margin-top: 16px; }
.photo-preview.is-shown { display: block; }
.photo-preview img { border-radius: var(--radius); max-height: 200px; margin: 0 auto; border: 1px solid rgba(255,255,255,.14); }
.photo-preview .pf-name { font-size: 13px; color: var(--on-dark-muted); margin-top: 10px; text-align: center; }
.photo-note { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; font-size: 13px; color: var(--on-dark-muted); }
.photo-note svg { width: 17px; height: 17px; color: var(--amber); flex: none; margin-top: 2px; }

/* ---- Contact ------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 16px; padding: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-card .cc-ico { width: 50px; height: 50px; flex: none; border-radius: 14px; background: var(--ink); color: var(--amber); display: grid; place-items: center; }
.contact-card .cc-ico svg { width: 25px; height: 25px; }
.contact-card .cc-label { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-faint); font-weight: 600; font-family: var(--font-display); }
.contact-card .cc-value { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin-top: 4px; color: var(--text); }
.contact-card .cc-value a:hover { color: var(--amber-700); }
.contact-card .cc-sub { font-size: 13.5px; color: var(--text-muted); margin-top: 4px; }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.field label .req { color: #D64545; }
.field .hint { font-weight: 400; color: var(--text-faint); font-size: 12.5px; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 13px 16px; border-radius: 12px; border: 1.5px solid var(--line-strong);
  background: var(--surface); font-size: 16px; font-family: var(--font-body); color: var(--text); transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber-700); box-shadow: 0 0 0 4px rgba(255,196,0,.16); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field .err { display: none; color: #C23434; font-size: 13px; margin-top: 6px; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #D64545; }
.field.is-invalid .err { display: block; }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 8px; text-align: center; }
.form-success { display: none; text-align: center; padding: 20px; background: var(--success-soft); border: 1px solid #BFE6CC; border-radius: var(--radius); color: #14703A; margin-bottom: 20px; }
.form-success.is-shown { display: block; }
.form-success svg { width: 32px; height: 32px; margin: 0 auto 8px; }

.map-embed { border: 0; width: 100%; height: 340px; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); filter: grayscale(.15); }

.hours-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.hours-card h3 { font-size: 18px; display: flex; align-items: center; gap: 10px; }
.hours-card h3 svg { width: 22px; height: 22px; color: var(--amber-700); }
.hours-row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.hours-row:last-child { border-bottom: 0; }
.hours-row .day { color: var(--text-muted); }
.hours-row .time { font-family: var(--font-display); font-weight: 600; }
.hours-row.is-today { color: var(--amber-700); }
.hours-row.is-today .day { color: var(--amber-700); font-weight: 600; }
.status-open { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; font-family: var(--font-display); padding: 5px 12px; border-radius: 999px; margin-top: 14px; }
.status-open.open { background: var(--success-soft); color: var(--success); }
.status-open.closed { background: #FBE9E9; color: #C23434; }
.status-open .pulse { width: 8px; height: 8px; border-radius: 999px; background: currentColor; box-shadow: 0 0 0 0 currentColor; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(31,157,85,.4); } 70% { box-shadow: 0 0 0 8px rgba(31,157,85,0); } 100% { box-shadow: 0 0 0 0 rgba(31,157,85,0); } }

/* ---- Floating action (mobile) ------------------------------------------ */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: none; flex-direction: column; gap: 12px; }
.fab a { width: 56px; height: 56px; border-radius: 999px; display: grid; place-items: center; box-shadow: var(--shadow-lg); color: #fff; }
.fab .fab-wa { background: #1FA855; }
.fab .fab-call { background: var(--ink); color: var(--amber); }
.fab a svg { width: 26px; height: 26px; }

/* ---- Enquiry basket ----------------------------------------------------- */
.basket-btn {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--text);
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  padding: 8px 14px; border-radius: 999px; min-height: 42px; transition: all .18s var(--ease);
}
.basket-btn:hover { border-color: var(--ink); background: var(--surface); }
.basket-btn svg { width: 19px; height: 19px; }
.basket-btn .basket-count {
  position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--amber); color: var(--ink); border-radius: 999px; font-size: 11.5px; font-weight: 700;
  display: none; align-items: center; justify-content: center; font-family: var(--font-display);
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.basket-btn.has-items .basket-count { display: inline-flex; }
.basket-btn .basket-label { display: inline; }

.basket-overlay {
  position: fixed; inset: 0; background: rgba(11,13,16,.55); z-index: var(--z-overlay);
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility .25s var(--ease);
}
.basket-overlay.is-open { opacity: 1; visibility: visible; backdrop-filter: blur(2px); }
.basket-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 92vw); z-index: calc(var(--z-overlay) + 1);
  background: var(--surface); box-shadow: var(--shadow-lg); transform: translateX(100%);
  transition: transform .3s var(--ease); display: flex; flex-direction: column;
}
.basket-drawer.is-open { transform: none; }
.basket-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 22px 16px; border-bottom: 1px solid var(--line); }
.basket-head h3 { font-size: 19px; }
.basket-head .bh-sub { font-size: 12.5px; color: var(--text-muted); margin-top: 3px; }
.basket-close { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line); background: var(--surface); display: grid; place-items: center; }
.basket-close svg { width: 20px; height: 20px; }
.basket-items { flex: 1; overflow-y: auto; padding: 16px 22px; display: flex; flex-direction: column; gap: 12px; }
.basket-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.basket-item .bi-ico { width: 40px; height: 40px; flex: none; border-radius: 10px; background: var(--surface-2); color: var(--ink-600); display: grid; place-items: center; }
.basket-item .bi-ico svg { width: 22px; height: 22px; }
.basket-item .bi-body { flex: 1; min-width: 0; }
.basket-item .bi-name { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; line-height: 1.3; }
.basket-item .bi-meta { font-size: 12.5px; color: var(--text-muted); margin-top: 3px; }
.basket-item .bi-remove { width: 30px; height: 30px; flex: none; border-radius: 8px; border: 0; background: transparent; color: var(--text-faint); display: grid; place-items: center; }
.basket-item .bi-remove:hover { background: #FBE9E9; color: #C23434; }
.basket-item .bi-remove svg { width: 16px; height: 16px; }
.basket-empty { text-align: center; padding: 48px 20px; color: var(--text-muted); }
.basket-empty .be-ico { width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 16px; background: var(--surface-2); color: var(--text-faint); display: grid; place-items: center; }
.basket-empty .be-ico svg { width: 30px; height: 30px; }
.basket-empty b { font-family: var(--font-display); color: var(--text); display: block; font-size: 16px; margin-bottom: 6px; }
.basket-foot { padding: 18px 22px; border-top: 1px solid var(--line); background: var(--surface-2); }
.basket-foot .bf-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 10px; }
.basket-foot .bf-clear { display: block; margin: 10px auto 0; background: none; border: 0; color: var(--text-faint); font-size: 12.5px; text-decoration: underline; }

.pc-actions { margin-top: auto; padding-top: 18px; display: grid; gap: 8px; }
.btn-add { background: var(--surface); color: var(--ink); border-color: var(--line-strong); }
.btn-add:hover { border-color: var(--ink); background: var(--surface-2); }
.btn-add.is-added { background: var(--success-soft); border-color: #BFE6CC; color: #14703A; }

/* ---- Find My Part wizard ------------------------------------------------ */
.finder { background: linear-gradient(160deg, #fff, var(--amber-soft)); border: 1px solid var(--amber); border-radius: var(--radius-xl); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); margin-bottom: 34px; }
.finder-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.finder-top h2 { font-size: clamp(22px, 3vw, 30px); }
.finder-top p { color: var(--text-muted); font-size: 15px; margin-top: 6px; }
.finder-progress { display: flex; gap: 8px; align-items: center; }
.finder-dot { width: 34px; height: 6px; border-radius: 999px; background: var(--line-strong); transition: background .25s var(--ease); }
.finder-dot.is-done { background: var(--amber-700); }
.finder-dot.is-active { background: var(--ink); }
.finder-step { display: none; }
.finder-step.is-active { display: block; animation: finderIn .3s var(--ease); }
@keyframes finderIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.finder-q { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin-bottom: 16px; }
.opt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.opt-tile {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px; text-align: left;
  padding: 18px; background: var(--surface); border: 1.5px solid var(--line-strong); border-radius: var(--radius);
  transition: all .16s var(--ease); min-height: 92px;
}
.opt-tile:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow); }
.opt-tile.is-selected { border-color: var(--amber-700); background: var(--amber-soft); box-shadow: 0 0 0 3px rgba(255,196,0,.22); }
.opt-tile .ot-ico { width: 42px; height: 42px; border-radius: 11px; background: var(--ink); color: var(--amber); display: grid; place-items: center; }
.opt-tile .ot-ico svg { width: 23px; height: 23px; }
.opt-tile .ot-name { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.opt-tile .ot-sub { font-size: 12.5px; color: var(--text-muted); }
.finder-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; gap: 12px; }
.finder-back { background: none; border: 0; color: var(--text-muted); font-family: var(--font-display); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; padding: 10px; }
.finder-back svg { width: 16px; height: 16px; }
.finder-back:disabled { opacity: 0; pointer-events: none; }
.finder-result { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.finder-result .fr-ico { width: 54px; height: 54px; border-radius: 15px; background: var(--success-soft); color: var(--success); display: grid; place-items: center; margin-bottom: 16px; }
.finder-result .fr-ico svg { width: 28px; height: 28px; }
.finder-result h3 { font-size: 21px; }
.finder-result .fr-summary { margin-top: 12px; padding: 14px 16px; background: var(--surface-2); border-radius: var(--radius); font-size: 14.5px; }
.finder-result .fr-summary b { font-family: var(--font-display); }
.finder-result .fr-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.finder-result .fr-restart { background: none; border: 0; color: var(--amber-700); font-weight: 600; font-family: var(--font-display); font-size: 14px; }

/* ---- Pincode delivery estimate ------------------------------------------ */
.pincode-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.pincode-card .pin-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.pincode-card .pin-ico { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--ink); color: var(--amber); display: grid; place-items: center; }
.pincode-card .pin-ico svg { width: 24px; height: 24px; }
.pincode-card h3 { font-size: 18px; }
.pincode-card .pin-sub { font-size: 13px; color: var(--text-muted); }
.pincode-form { display: flex; gap: 10px; margin-top: 6px; }
.pincode-form input { flex: 1; min-height: 50px; padding: 0 16px; border-radius: 12px; border: 1.5px solid var(--line-strong); font-size: 16px; font-family: var(--font-body); letter-spacing: .04em; }
.pincode-form input:focus { outline: none; border-color: var(--amber-700); box-shadow: 0 0 0 4px rgba(255,196,0,.16); }
.pincode-form button { flex: none; }
.pin-result { display: none; margin-top: 16px; padding: 16px 18px; border-radius: var(--radius); border: 1px solid var(--line); align-items: flex-start; gap: 12px; }
.pin-result.is-shown { display: flex; animation: finderIn .25s var(--ease); }
.pin-result .pr-badge { width: 40px; height: 40px; flex: none; border-radius: 11px; display: grid; place-items: center; }
.pin-result .pr-badge svg { width: 22px; height: 22px; }
.pin-result .pr-eta { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.pin-result .pr-msg { font-size: 13.5px; color: var(--text-muted); margin-top: 3px; }
.pin-result.zone-fast { background: var(--success-soft); border-color: #BFE6CC; }
.pin-result.zone-fast .pr-badge { background: #fff; color: var(--success); }
.pin-result.zone-fast .pr-eta { color: #14703A; }
.pin-result.zone-mid { background: var(--amber-soft); border-color: #F3D98A; }
.pin-result.zone-mid .pr-badge { background: #fff; color: var(--amber-700); }
.pin-result.zone-out { background: var(--surface-2); border-color: var(--line-strong); }
.pin-result.zone-out .pr-badge { background: #fff; color: var(--text-muted); }
.pin-result .pr-cta { margin-top: 10px; }
.pin-result .pr-cta a { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: #14703A; }
.pin-result.zone-out .pr-cta a { color: var(--ink); }

@media (max-width: 760px) {
  .opt-grid { grid-template-columns: 1fr 1fr; }
  .basket-btn .basket-label { display: none; }
  .pincode-form { flex-direction: column; }
  .pincode-form button { width: 100%; }
}
@media (max-width: 420px) { .opt-grid { grid-template-columns: 1fr; } }

/* ---- Reveal animation --------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

/* ---- Utilities ---------------------------------------------------------- */
.text-center { text-align: center; }
.mt-6 { margin-top: 32px; } .mt-7 { margin-top: 48px; }
.bg-surface { background: var(--surface); }
.bg-soft { background: var(--surface-2); }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.tamil { font-family: "Noto Sans Tamil", var(--font-body); }

/* ---- Catalog layout (search + sidebar filters + grid) ------------------ */
.catalog-search { margin-bottom: 22px; }
.catalog { display: grid; grid-template-columns: 248px 1fr; gap: 30px; align-items: start; }
.catalog-side { position: sticky; top: 90px; }
.catalog-side-inner { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 16px; box-shadow: var(--shadow-sm); max-height: calc(100dvh - 118px); overflow-y: auto; }
.side-group { margin-bottom: 18px; }
.side-group:last-child { margin-bottom: 0; }
.side-group .filter-label { display: block; margin-bottom: 10px; }
.cat-list { display: flex; flex-direction: column; gap: 3px; }
.cat-list .chip { width: 100%; justify-content: flex-start; text-align: left; border-radius: 10px; border-color: transparent; background: transparent; padding: 9px 12px; min-height: 40px; font-weight: 500; }
.cat-list .chip:hover { background: var(--surface-2); border-color: transparent; }
.cat-list .chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.cat-list .chip.is-active.chip-amber { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.catalog-main { min-width: 0; }
.catalog-main .product-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.filter-toggle { display: none; }

@media (max-width: 1024px) {
  .catalog { grid-template-columns: 1fr; gap: 0; }
  .catalog-side { position: static; margin-bottom: 18px; }
  .catalog-side-inner { display: none; margin-top: 10px; max-height: none; overflow: visible; }
  .catalog-side.is-open .catalog-side-inner { display: block; }
  .filter-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 10px; background: var(--surface); border: 1px solid var(--line-strong); border-radius: 12px; padding: 12px 16px; min-height: 52px; font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--text); box-shadow: var(--shadow-sm); }
  .filter-toggle .ft-label { display: inline-flex; align-items: center; gap: 8px; }
  .filter-toggle svg { width: 20px; height: 20px; }
  .filter-toggle .ft-chev { transition: transform .2s var(--ease); }
  .catalog-side.is-open .filter-toggle .ft-chev { transform: rotate(180deg); }
  .cat-list { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .cat-list .chip { width: auto; border-radius: 999px; border-color: var(--line-strong); background: var(--surface); padding: 8px 15px; }
  .cat-list .chip:hover { border-color: var(--ink); }
}

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 520px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid, .photo-panel .pp-inner { grid-template-columns: 1fr; gap: 36px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .container { padding-inline: 20px; }
  .nav-links { position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; background: var(--surface); border-bottom: 1px solid var(--line); padding: 14px 20px 24px; gap: 4px; transform: translateY(-130%); transition: transform .3s var(--ease); box-shadow: var(--shadow-lg); }
  body.nav-open .nav-links { transform: translateY(0); }
  .nav-link { padding: 14px; font-size: 16px; border-radius: 12px; }
  .nav-link.is-active::after { display: none; }
  .nav-link.is-active { background: var(--surface-2); }
  .nav-toggle { display: inline-flex; width: 42px; height: 42px; }
  .nav-cta-desktop { display: none; }
  .nav { gap: 10px; }
  .nav-right { gap: 8px; flex: none; }
  .brand { gap: 9px; min-width: 0; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-name { font-size: 16.5px; }
  .brand-tag { font-size: 9.5px; letter-spacing: .14em; }
  .basket-btn { padding: 8px 10px; min-height: 40px; }
  .lang-btn { padding: 6px 10px; font-size: 12.5px; min-height: 32px; }
  .grid-2, .grid-3, .grid-4, .brands-grid, .steps, .product-grid, .stats-strip { grid-template-columns: 1fr; }
  .hero-parts { grid-template-columns: 1fr 1fr; }
  .hero-stat + .hero-stat { border-left: 0; padding-left: 0; }
  .hero-stats { gap: 24px 28px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .fab { display: flex; }
  .filters { top: 74px; }
  .hero-float { left: 12px; right: 12px; bottom: -18px; }
}
@media (max-width: 480px) {
  .brand-tag { display: none; }
  .brand { gap: 8px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-name { font-size: 15.5px; }
  .nav { gap: 8px; }
  .nav-right { gap: 6px; }
  .nav-toggle { width: 40px; height: 40px; }
  .basket-btn { padding: 7px 9px; min-height: 38px; }
  .lang-btn { padding: 5px 8px; font-size: 12px; min-height: 30px; }
}
@media (max-width: 420px) {
  .hero-parts { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 390px) {
  .brand-mark { width: 32px; height: 32px; }
  .brand-name { font-size: 14.5px; }
}
