/* Hardware Centers — shared design system
   Derived from the Hardware Centers mobile app UI (dc design file):
   orange #F97316 accent, navy #1F2937 surfaces, Inter + Manrope type. */

@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url('/web/fonts/inter-400.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url('/web/fonts/inter-500.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url('/web/fonts/inter-600.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:700;font-display:swap;src:url('/web/fonts/inter-700.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:800;font-display:swap;src:url('/web/fonts/inter-800.woff2') format('woff2');}
@font-face{font-family:'Manrope';font-style:normal;font-weight:600;font-display:swap;src:url('/web/fonts/manrope-600.woff2') format('woff2');}
@font-face{font-family:'Manrope';font-style:normal;font-weight:700;font-display:swap;src:url('/web/fonts/manrope-700.woff2') format('woff2');}
@font-face{font-family:'Manrope';font-style:normal;font-weight:800;font-display:swap;src:url('/web/fonts/manrope-800.woff2') format('woff2');}

:root{
  --orange:#F97316;
  --orange-dark:#EA580C;
  --orange-light-bg:#FFF7ED;
  --orange-light-border:#FFE4CC;
  --navy:#1F2937;
  --navy-2:#111827;
  --ink:#111827;
  --muted:#6B7280;
  --muted-2:#9CA3AF;
  --border:#E5E7EB;
  --border-soft:#EEF1F4;
  --surface:#F8FAFC;
  --white:#FFFFFF;
  --green:#22C55E;
  --green-dark:#16A34A;
  --green-bg:#F0FDF4;
  --red:#EF4444;
  --red-bg:#FEF2F2;
  --red-border:#FECACA;
  --star:#F59E0B;

  --radius-xl:22px;
  --radius-lg:18px;
  --radius-md:14px;
  --radius-sm:10px;
  --radius-pill:100px;

  --shadow-card:0 1px 2px rgba(17,24,39,.03);
  --shadow-elev:0 4px 14px rgba(17,24,39,.06);
  --shadow-pop:0 20px 44px rgba(17,24,39,.14);

  --font-body:'Inter',system-ui,-apple-system,Segoe UI,sans-serif;
  --font-head:'Manrope',var(--font-body);

  --container:1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-head); margin:0; letter-spacing:-.4px; color:var(--ink); }
p{ margin:0; }

.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }
.section{ padding:64px 0; }
.section-tight{ padding:40px 0; }

/* ---------- Utility ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; font-weight:800; letter-spacing:1.2px; text-transform:uppercase;
  color:var(--orange-dark); background:var(--orange-light-bg); border:1px solid var(--orange-light-border);
  padding:6px 14px; border-radius:var(--radius-pill);
}
.section-head{ max-width:640px; margin:0 0 40px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-title{ font-size:32px; font-weight:800; letter-spacing:-.6px; }
.section-sub{ margin-top:12px; color:var(--muted); font-size:15.5px; line-height:1.6; }
.link-arrow{ display:inline-flex; align-items:center; gap:6px; font-weight:700; color:var(--orange); font-size:13.5px; }
.link-arrow svg{ transition:transform .2s ease; }
.link-arrow:hover svg{ transform:translateX(3px); }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  height:50px; padding:0 26px; border-radius:13px; border:none; cursor:pointer;
  font-size:15px; font-weight:700; font-family:inherit; white-space:nowrap;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:active{ transform:scale(.98); }
.btn-primary{ background:var(--orange); color:#fff; box-shadow:0 10px 24px rgba(249,115,22,.28); }
.btn-primary:hover{ background:var(--orange-dark); }
.btn-dark{ background:var(--navy); color:#fff; }
.btn-dark:hover{ background:#161e2a; }
.btn-outline{ background:#fff; color:var(--navy); border:1.5px solid var(--border); }
.btn-outline:hover{ border-color:var(--navy); }
.btn-outline-light{ background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.35); }
.btn-outline-light:hover{ border-color:#fff; }
/* Still clickable (so tapping explains why, instead of doing nothing) — just visually muted. */
.btn.is-blocked{ opacity:.5; box-shadow:none; }
.btn-sm{ height:40px; padding:0 18px; border-radius:10px; font-size:13.5px; }
.btn-block{ width:100%; }

.badge{ display:inline-flex; align-items:center; gap:5px; font-size:11px; font-weight:700; padding:4px 10px; border-radius:8px; }
.badge-green{ color:var(--green-dark); background:var(--green-bg); }
.badge-orange{ color:var(--orange-dark); background:var(--orange-light-bg); }
.badge-navy{ color:#fff; background:var(--navy); }
.badge-red{ color:var(--red); background:var(--red-bg); }
.badge-gray{ color:var(--muted); background:var(--surface); }

.card{ background:#fff; border:1px solid var(--border-soft); border-radius:var(--radius-lg); box-shadow:var(--shadow-card); }

/* ---------- Header ---------- */
.topbar{ background:var(--navy); color:#cbd5e1; font-size:12.5px; }
.topbar .container{ display:flex; align-items:center; justify-content:space-between; height:38px; }
.topbar-left{ display:flex; align-items:center; gap:8px; color:#e5e7eb; }
.topbar-deliver{ background:none; border:none; padding:0; font:inherit; cursor:pointer; }
.topbar-deliver:hover{ color:#fff; }
.topbar-deliver:hover b{ text-decoration:underline; }
.topbar-left svg{ flex-shrink:0; }
.topbar-links{ display:flex; align-items:center; gap:22px; }
.topbar-links a{ color:#cbd5e1; font-weight:500; display:flex; align-items:center; gap:6px; }
.topbar-links a:hover{ color:#fff; }
.topbar-links a.accent{ color:#FDBA74; font-weight:700; }

.site-header{ position:sticky; top:0; z-index:100; background:#fff; border-bottom:1px solid var(--border-soft); }
.site-header .container{ display:flex; align-items:center; gap:28px; height:82px; }
.brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.brand img{ width:40px; height:40px; border-radius:11px; }
.brand-name{ font-family:var(--font-head); font-weight:800; font-size:19px; letter-spacing:-.4px; color:var(--ink); }
.brand-name span{ color:var(--orange); }

.main-nav{ display:flex; align-items:center; gap:6px; }
.main-nav > li{ position:relative; }
.main-nav > li > a, .nav-btn{
  display:flex; align-items:center; gap:5px; height:40px; padding:0 13px; border-radius:10px;
  font-size:14.5px; font-weight:600; color:#374151; background:none; border:none; cursor:pointer; font-family:inherit;
}
.main-nav > li > a:hover, .main-nav > li.active > a, .nav-btn:hover{ color:var(--orange-dark); background:var(--orange-light-bg); }
.main-nav > li.active > a{ color:var(--orange-dark); }

.header-search{
  flex:1; max-width:420px; display:flex; align-items:center; gap:10px; height:46px;
  border:1px solid var(--border); border-radius:14px; padding:0 16px; background:var(--surface);
}
.header-search input{ flex:1; border:none; outline:none; background:none; font-size:14px; font-family:inherit; color:var(--ink); }
.header-search input::placeholder{ color:var(--muted-2); }

.header-actions{ display:flex; align-items:center; gap:8px; margin-left:auto; }
.icon-btn{
  width:42px; height:42px; border-radius:12px; border:1px solid var(--border-soft); background:#fff;
  display:flex; align-items:center; justify-content:center; cursor:pointer; position:relative; flex-shrink:0;
}
.icon-btn:hover{ border-color:var(--orange-light-border); background:var(--orange-light-bg); }
.icon-dot{ position:absolute; top:8px; right:8px; width:8px; height:8px; border-radius:50%; background:var(--orange); border:1.5px solid #fff; }

/* mega menu */
.mega{
  position:absolute; top:calc(100% + 12px); left:50%; transform:translateX(-50%) translateY(6px);
  width:760px; max-width:90vw; background:#fff; border:1px solid var(--border-soft); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-pop); padding:22px; display:grid; grid-template-columns:repeat(3,1fr); gap:18px 22px;
  opacity:0; visibility:hidden; pointer-events:none; transition:opacity .18s ease, transform .18s ease;
  z-index:50;
}
.main-nav > li.has-mega:hover .mega{ opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(0); }
.mega-col-title{ display:flex; align-items:center; gap:9px; font-size:13.5px; font-weight:800; color:var(--ink); margin-bottom:10px; }
.mega-col-title .ic{ width:30px; height:30px; border-radius:9px; background:var(--surface); border:1px solid var(--border-soft); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.mega-col-title .ic svg{ width:15px; height:15px; }
.mega-col a{ display:block; font-size:13px; color:var(--muted); padding:4px 0; }
.mega-col a:hover{ color:var(--orange-dark); }
.mega-foot{ grid-column:1/-1; border-top:1px solid var(--border-soft); margin-top:4px; padding-top:14px; display:flex; align-items:center; justify-content:space-between; }

.mobile-toggle{ display:none; width:42px; height:42px; border-radius:10px; border:1px solid var(--border-soft); background:#fff; align-items:center; justify-content:center; cursor:pointer; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--navy); color:#cbd5e1; }
.footer-top{ padding-top:60px; padding-bottom:40px; display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr 1.2fr; gap:32px; }
.footer-brand .brand-name{ color:#fff; }
.footer-brand p{ margin-top:14px; font-size:13.5px; color:#9CA3AF; line-height:1.7; max-width:260px; }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{ width:36px; height:36px; border-radius:10px; background:rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; }
.footer-social a:hover{ background:var(--orange); }
.footer-col h4{ color:#fff; font-size:13px; font-weight:800; text-transform:uppercase; letter-spacing:.6px; margin-bottom:16px; }
.footer-col ul li{ margin-bottom:11px; }
.footer-col a{ font-size:13.5px; color:#9CA3AF; }
.footer-col a:hover{ color:#fff; }
.footer-app-badges{ display:flex; flex-direction:column; gap:10px; margin-top:6px; }
.app-badge{ display:flex; align-items:center; gap:10px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.08); border-radius:11px; padding:9px 14px; }
.app-badge:hover{ background:rgba(255,255,255,.1); }
.app-badge .txt-a{ font-size:9.5px; color:#9CA3AF; line-height:1.2; }
.app-badge .txt-b{ font-size:13px; font-weight:700; color:#fff; line-height:1.2; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.08); padding-top:20px; padding-bottom:20px; display:flex; align-items:center; justify-content:space-between; font-size:12.5px; color:#8b95a3; }
.footer-bottom a{ color:#8b95a3; }
.footer-bottom a:hover{ color:#fff; }
.footer-legal{ display:flex; gap:20px; }

/* ---------- Hero / banners ---------- */
.hero{ position:relative; background:var(--navy); overflow:hidden; }
.hero::before{
  content:''; position:absolute; inset:0;
  background:radial-gradient(720px 420px at 82% 18%, rgba(249,115,22,.28), transparent 60%),
             radial-gradient(560px 360px at 12% 90%, rgba(249,115,22,.14), transparent 60%);
}
.hero .container{ position:relative; padding-top:76px; padding-bottom:76px; display:grid; grid-template-columns:1.05fr .95fr; gap:40px; align-items:center; }
.hero-eyebrow{ display:inline-flex; align-items:center; gap:8px; font-size:11.5px; font-weight:800; letter-spacing:1.4px; text-transform:uppercase; color:#FDBA74; }
.hero h1{ color:#fff; font-size:46px; font-weight:800; line-height:1.12; letter-spacing:-1px; margin-top:14px; }
.hero h1 .accent{ color:var(--orange); }
.hero p{ color:#cbd5e1; font-size:16px; margin-top:16px; max-width:480px; line-height:1.65; }
.hero-cta{ display:flex; gap:12px; margin-top:30px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:28px; margin-top:40px; flex-wrap:wrap; }
.hero-stats .n{ font-family:var(--font-head); font-size:24px; font-weight:800; color:#fff; }
.hero-stats .l{ font-size:12px; color:#9CA3AF; margin-top:2px; }

.hero-art{ position:relative; }
.hero-panel{ background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:var(--radius-xl); padding:26px; backdrop-filter:blur(6px); }
.hero-search-card{ background:#fff; border-radius:var(--radius-md); padding:16px; box-shadow:var(--shadow-pop); }
.hero-search-card .row{ display:flex; align-items:center; gap:10px; height:44px; border:1px solid var(--border); border-radius:12px; padding:0 13px; background:var(--surface); font-size:13.5px; color:var(--muted-2); }
.hero-chip-row{ display:flex; gap:8px; margin-top:12px; flex-wrap:wrap; }
.hero-chip{ font-size:11.5px; font-weight:700; padding:6px 11px; border-radius:100px; background:var(--orange-light-bg); color:var(--orange-dark); border:1px solid var(--orange-light-border); }
.hero-float-card{ position:absolute; background:#fff; border-radius:14px; padding:12px 14px; box-shadow:var(--shadow-pop); display:flex; align-items:center; gap:10px; }
.hero-float-card .ic{ width:34px; height:34px; border-radius:10px; background:var(--green-bg); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.hero-float-card .t1{ font-size:13px; font-weight:800; color:var(--ink); }
.hero-float-card .t2{ font-size:11px; color:var(--muted); }

.page-hero{ background:var(--navy); position:relative; overflow:hidden; padding:56px 0 48px; }
.page-hero::before{ content:''; position:absolute; inset:0; background:radial-gradient(600px 320px at 85% 0%, rgba(249,115,22,.25), transparent 60%); }
.page-hero .container{ position:relative; }
.page-hero .crumb{ font-size:12.5px; color:#9CA3AF; display:flex; align-items:center; gap:8px; margin-bottom:16px; }
.page-hero .crumb a:hover{ color:#fff; }
.page-hero h1{ color:#fff; font-size:36px; font-weight:800; letter-spacing:-.6px; }
.page-hero p{ color:#cbd5e1; margin-top:12px; font-size:15px; max-width:560px; }
.page-hero .policy-updated{ color:#9CA3AF; margin-top:10px; font-size:12.5px; }

/* ---------- Policy / legal pages ---------- */
.policy-body{ font-size:15px; line-height:1.85; color:#374151; }
.policy-body h2{ font-size:20px; font-weight:800; color:var(--ink); margin:34px 0 12px; letter-spacing:-.2px; }
.policy-body h2:first-child{ margin-top:0; }
.policy-body h3{ font-size:15.5px; font-weight:700; color:var(--ink); margin:20px 0 8px; }
.policy-body p{ margin:0 0 14px; }
.policy-body ul, .policy-body ol{ margin:0 0 14px; padding-left:22px; }
.policy-body li{ margin-bottom:6px; }
.policy-body a{ color:var(--orange-dark); font-weight:600; text-decoration:none; }
.policy-body a:hover{ text-decoration:underline; }
.policy-body strong{ color:var(--ink); }
.policy-toc{ border:1px solid var(--border-soft); border-radius:var(--radius-lg); padding:18px 20px; margin-bottom:32px; background:var(--surface); }
.policy-toc .t{ font-size:12px; font-weight:800; letter-spacing:.5px; text-transform:uppercase; color:var(--muted); margin-bottom:10px; }
.policy-toc ol{ margin:0; padding-left:18px; columns:2; column-gap:24px; }
.policy-toc li{ font-size:13.5px; margin-bottom:6px; break-inside:avoid; }
.policy-toc a{ color:var(--ink); font-weight:600; text-decoration:none; }
.policy-toc a:hover{ color:var(--orange-dark); }
@media (max-width:640px){ .policy-toc ol{ columns:1; } }

/* ---------- Category chips / grid ---------- */
.cat-row{ display:flex; gap:16px; overflow-x:auto; padding:4px 2px 12px; scrollbar-width:none; }
.cat-row::-webkit-scrollbar{ display:none; }
.cat-pill{ flex-shrink:0; width:104px; display:flex; flex-direction:column; align-items:center; gap:10px; text-align:center; cursor:pointer; }
.cat-pill .ic{ width:76px; height:76px; border-radius:20px; background:var(--surface); border:1px solid var(--border-soft); display:flex; align-items:center; justify-content:center; transition:all .15s ease; }
.cat-pill:hover .ic{ background:var(--orange-light-bg); border-color:var(--orange-light-border); transform:translateY(-3px); }
.cat-pill span{ font-size:12.5px; font-weight:700; color:#374151; }

.cat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.cat-card{ background:var(--surface); border:1px solid var(--border-soft); border-radius:var(--radius-md); padding:22px 14px; display:flex; flex-direction:column; align-items:center; gap:12px; text-align:center; cursor:pointer; transition:all .15s ease; }
.cat-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow-elev); border-color:var(--orange-light-border); background:#fff; }
.cat-card .ic{ width:56px; height:56px; border-radius:16px; background:#fff; border:1px solid var(--border-soft); display:flex; align-items:center; justify-content:center; }
.cat-card .name{ font-size:14px; font-weight:800; color:var(--ink); }
.cat-card .count{ font-size:11.5px; color:var(--muted-2); }
.cat-card.dark{ background:var(--navy); border-color:var(--navy); }
.cat-card.dark .ic{ background:rgba(255,255,255,.1); border:none; }
.cat-card.dark .name{ color:#fff; }
.cat-card.dark .count{ color:#9CA3AF; }
.cat-card.is-active{ background:#fff; border-color:var(--orange); box-shadow:0 0 0 3px var(--orange-light-bg); }

/* subcategory panel */
.subcat-panel{ background:var(--surface); border:1px solid var(--border-soft); border-radius:var(--radius-lg); padding:26px; }
.subcat-head{ display:flex; align-items:center; gap:14px; margin-bottom:18px; }
.subcat-head .ic{ width:52px; height:52px; border-radius:15px; background:#fff; border:1px solid var(--border-soft); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.subcat-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.subcat-chip{ background:#fff; border:1px solid var(--border-soft); border-radius:12px; padding:13px 15px; font-size:13.5px; font-weight:600; color:#374151; display:flex; align-items:center; justify-content:space-between; cursor:pointer; }
.subcat-chip:hover{ border-color:var(--orange); color:var(--orange-dark); }
.subcat-chip svg{ flex-shrink:0; opacity:.5; }

/* ---------- Product cards ---------- */
.prod-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.prod-row{ display:flex; gap:14px; overflow-x:auto; padding:4px 2px 10px; scrollbar-width:none; }
.prod-row::-webkit-scrollbar{ display:none; }
.prod-card{ background:#fff; border:1px solid var(--border-soft); border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-card); transition:all .15s ease; cursor:pointer; }
.prod-card:hover{ box-shadow:var(--shadow-elev); transform:translateY(-2px); border-color:var(--orange-light-border); }
.prod-row .prod-card{ width:184px; flex-shrink:0; }
.prod-thumb{
  position:relative; height:150px; background:linear-gradient(135deg,var(--surface),#eef1f4);
  display:flex; align-items:center; justify-content:center; padding:14px; text-align:center;
}
.prod-thumb span{ font-size:11.5px; font-weight:700; color:var(--muted-2); line-height:1.4; }
.prod-thumb img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.prod-wish{ position:absolute; top:8px; right:8px; width:30px; height:30px; border-radius:50%; background:rgba(255,255,255,.94); border:none; display:flex; align-items:center; justify-content:center; cursor:pointer; box-shadow:0 2px 6px rgba(0,0,0,.12); }
.prod-tag{ position:absolute; top:8px; left:8px; padding:3px 8px; border-radius:7px; font-size:9.5px; font-weight:700; letter-spacing:.3px; text-transform:uppercase; }
.prod-body{ padding:12px 13px 14px; }
.prod-brand{ font-size:10px; font-weight:700; color:var(--muted-2); text-transform:uppercase; letter-spacing:.5px; }
.prod-name{ font-size:13px; font-weight:600; color:var(--ink); line-height:1.35; margin-top:4px; min-height:35px; }
.prod-rating{ display:flex; align-items:center; gap:4px; margin-top:7px; font-size:11px; color:#374151; font-weight:600; }
.prod-rating .rc{ color:var(--muted-2); font-weight:500; }
.prod-price-row{ display:flex; align-items:flex-end; justify-content:space-between; margin-top:10px; }
.prod-price{ font-family:var(--font-head); font-size:16px; font-weight:800; color:var(--ink); }
.prod-mrp{ font-size:11px; color:var(--muted-2); text-decoration:line-through; margin-left:6px; }
.prod-add{ width:34px; height:34px; border-radius:10px; background:var(--navy); border:none; display:flex; align-items:center; justify-content:center; cursor:pointer; flex-shrink:0; }
.prod-add:hover{ background:var(--orange); }

/* ---------- Deals dark strip ---------- */
.deal-strip{ background:var(--navy); border-radius:var(--radius-lg); padding:26px; position:relative; overflow:hidden; }
.deal-strip::before{ content:''; position:absolute; inset:0; background:radial-gradient(420px 220px at 90% -10%, rgba(249,115,22,.3), transparent 60%); }
.deal-head{ position:relative; display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; flex-wrap:wrap; gap:10px; }
.deal-head h3{ color:#fff; font-size:20px; font-weight:800; display:flex; align-items:center; gap:9px; }
.deal-timer{ display:flex; gap:6px; }
.deal-timer .box{ background:rgba(255,255,255,.1); color:#fff; font-family:var(--font-head); font-weight:800; font-size:14px; padding:6px 9px; border-radius:8px; min-width:34px; text-align:center; }

/* ---------- Suppliers ---------- */
.supplier-list{ display:flex; flex-direction:column; gap:12px; }
.supplier-row{ display:flex; align-items:center; gap:15px; border:1px solid var(--border-soft); border-radius:var(--radius-md); padding:15px; background:#fff; box-shadow:var(--shadow-card); }
.supplier-row .ic{ width:52px; height:52px; border-radius:14px; background:var(--surface); border:1px solid var(--border-soft); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.supplier-row .name{ display:flex; align-items:center; gap:6px; font-size:15px; font-weight:700; }
.supplier-row .meta{ font-size:12.5px; color:var(--muted); margin-top:3px; }
.supplier-row .score{ display:flex; align-items:center; gap:4px; background:var(--green-bg); padding:6px 10px; border-radius:9px; flex-shrink:0; margin-left:auto; }
.supplier-row .score span{ font-size:12.5px; font-weight:700; color:var(--green-dark); }

/* ---------- Brand grid ---------- */
.brand-row{ display:flex; gap:12px; overflow-x:auto; padding:4px 2px 10px; scrollbar-width:none; }
.brand-row::-webkit-scrollbar{ display:none; }
.brand-tile{ flex-shrink:0; width:104px; height:92px; border:1px solid var(--border-soft); border-radius:var(--radius-md); background:#fff; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:9px; cursor:pointer; box-shadow:var(--shadow-card); transition:all .15s ease; text-decoration:none; }
.brand-tile:hover{ border-color:var(--orange-light-border); transform:translateY(-2px); }
.brand-tile .ic{ width:40px; height:40px; border-radius:11px; background:var(--navy); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.brand-tile .ic span{ font-family:var(--font-head); font-weight:800; font-size:13px; color:#fff; }
.brand-tile .ic img{ width:100%; height:100%; object-fit:contain; }
.brand-tile .lbl{ font-size:11px; font-weight:600; color:var(--muted); }

.search-layout{ display:grid; grid-template-columns:260px 1fr; gap:32px; align-items:start; }
.two-col-cta{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.two-col-split{ display:grid; grid-template-columns:1fr 1fr; gap:44px; }
.brand-check-list{ display:flex; flex-direction:column; gap:2px; }
.brand-check{ display:flex; align-items:center; gap:11px; padding:10px 4px; cursor:pointer; border-bottom:1px solid var(--border-soft); }
.brand-check:last-child{ border-bottom:none; }
.brand-check input{ width:17px; height:17px; accent-color:var(--orange); }
.brand-check .lbl{ flex:1; font-size:13.5px; font-weight:600; color:#374151; }
.brand-check .cnt{ font-size:11.5px; color:var(--muted-2); }

/* ---------- Chips / tabs / filters ---------- */
.chip-row{ display:flex; gap:9px; flex-wrap:wrap; }
.chip{ height:36px; padding:0 15px; border-radius:100px; border:1px solid var(--border); background:#fff; font-size:12.5px; font-weight:600; color:#374151; cursor:pointer; display:flex; align-items:center; gap:6px; }
.chip:hover{ border-color:var(--orange); color:var(--orange-dark); }
.chip.active{ background:var(--navy); border-color:var(--navy); color:#fff; }
.chip-orange{ border-color:var(--orange-light-border); background:var(--orange-light-bg); color:var(--orange-dark); }

.tab-row{ display:flex; gap:8px; overflow-x:auto; scrollbar-width:none; }
.tab-row::-webkit-scrollbar{ display:none; }
.tab-btn{ flex-shrink:0; height:40px; padding:0 18px; border-radius:100px; border:1px solid var(--border); background:#fff; font-size:13.5px; font-weight:700; color:#374151; cursor:pointer; }
.tab-btn.active{ background:var(--orange-light-bg); border-color:var(--orange-light-border); color:var(--orange-dark); }

/* ---------- Forms ---------- */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field{ display:flex; flex-direction:column; gap:7px; }
.field.full{ grid-column:1/-1; }
.field label{ font-size:13px; font-weight:700; color:var(--ink); }
.field input, .field select, .field textarea{
  height:48px; border:1px solid var(--border); border-radius:11px; padding:0 15px; font-size:14px;
  font-family:inherit; color:var(--ink); background:#fff; outline:none; transition:border-color .15s ease;
}
.field textarea{ height:auto; padding:13px 15px; resize:vertical; min-height:120px; }
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--orange); }
.field-hint{ font-size:12px; color:var(--muted-2); }
.field-check{ display:flex; align-items:flex-start; gap:10px; font-size:13.5px; color:var(--muted); }
.field-check input{ margin-top:3px; accent-color:var(--orange); }

/* ---------- Timeline (tracking) ---------- */
.tracker{ display:flex; flex-direction:column; }
.tstep{ display:flex; gap:16px; }
.tstep .dot-col{ display:flex; flex-direction:column; align-items:center; }
.tstep .dot{ width:34px; height:34px; border-radius:50%; background:var(--surface); border:2px solid var(--border); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.tstep .bar{ width:2px; flex:1; background:var(--border); min-height:34px; }
.tstep.done .dot{ background:var(--green); border-color:var(--green); }
.tstep.done .bar{ background:var(--green); }
.tstep.current .dot{ background:var(--orange); border-color:var(--orange); box-shadow:0 0 0 5px var(--orange-light-bg); }
.tstep .content{ padding-bottom:30px; }
.tstep:last-child .content{ padding-bottom:0; }
.tstep .title{ font-size:14.5px; font-weight:700; color:var(--ink); padding-top:4px; }
.tstep:not(.done):not(.current) .title{ color:var(--muted-2); }
.tstep .time{ font-size:12.5px; color:var(--muted); margin-top:3px; }

/* ---------- Order cards ---------- */
.order-card{ background:#fff; border:1px solid var(--border-soft); border-radius:var(--radius-md); padding:18px; box-shadow:var(--shadow-card); }
.order-top{ display:flex; align-items:center; justify-content:space-between; }
.order-no{ font-family:var(--font-head); font-size:14.5px; font-weight:800; }
.order-date{ font-size:11.5px; color:var(--muted-2); margin-top:4px; }
.order-item{ display:flex; align-items:center; gap:13px; margin-top:14px; }
.order-item .thumb{ width:58px; height:58px; border-radius:12px; background:var(--surface); border:1px solid var(--border-soft); flex-shrink:0; display:flex; align-items:center; justify-content:center; }
.order-item .title{ font-size:13.5px; font-weight:600; }
.order-item .sub{ font-size:11.5px; color:var(--muted); margin-top:3px; }
.order-foot{ border-top:1px solid var(--border-soft); margin-top:14px; padding-top:14px; display:flex; align-items:center; justify-content:space-between; }
.order-total{ font-size:11px; color:var(--muted); }
.order-total b{ display:block; font-family:var(--font-head); font-size:16px; color:var(--ink); font-weight:800; }

/* ---------- FAQ Accordion ---------- */
.faq-list{ display:flex; flex-direction:column; gap:10px; }
.faq-item{ border:1px solid var(--border-soft); border-radius:var(--radius-md); background:#fff; overflow:hidden; }
.faq-q{ display:flex; align-items:center; justify-content:space-between; gap:14px; padding:18px 20px; cursor:pointer; font-size:14.5px; font-weight:700; }
.faq-q svg{ flex-shrink:0; transition:transform .2s ease; color:var(--muted); }
.faq-item.open .faq-q svg{ transform:rotate(45deg); color:var(--orange); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .25s ease; }
.faq-item.open .faq-a{ max-height:240px; }
.faq-a-in{ padding:0 20px 18px; font-size:13.5px; color:var(--muted); line-height:1.65; }

/* ---------- Blog ---------- */
.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.blog-card{ background:#fff; border:1px solid var(--border-soft); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-card); transition:all .15s ease; }
.blog-card:hover{ box-shadow:var(--shadow-elev); transform:translateY(-3px); }
.blog-thumb{ height:170px; display:flex; align-items:center; justify-content:center; text-align:center; padding:16px; }
.blog-thumb span{ font-size:11.5px; font-weight:700; color:rgba(255,255,255,.85); }
.blog-body{ padding:18px 20px 20px; }
.blog-cat{ font-size:11px; font-weight:800; letter-spacing:.5px; text-transform:uppercase; color:var(--orange-dark); }
.blog-title{ font-size:16px; font-weight:700; margin-top:8px; line-height:1.4; }
.blog-excerpt{ font-size:13px; color:var(--muted); margin-top:8px; line-height:1.6; }
.blog-meta{ display:flex; align-items:center; gap:8px; margin-top:14px; font-size:12px; color:var(--muted-2); }

/* ---------- Steps / benefits ---------- */
.steps-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.step-card{ position:relative; padding:26px 20px; }
.step-num{ font-family:var(--font-head); font-size:34px; font-weight:800; color:var(--orange-light-border); }
.step-card h4{ font-size:16px; margin-top:10px; }
.step-card p{ font-size:13.5px; color:var(--muted); margin-top:8px; line-height:1.6; }

.benefit-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.benefit-card{ background:var(--surface); border:1px solid var(--border-soft); border-radius:var(--radius-lg); padding:26px; }
.benefit-card .ic{ width:52px; height:52px; border-radius:15px; background:#fff; border:1px solid var(--border-soft); display:flex; align-items:center; justify-content:center; }
.benefit-card h4{ font-size:16px; margin-top:16px; }
.benefit-card p{ font-size:13.5px; color:var(--muted); margin-top:8px; line-height:1.6; }

/* ---------- Product detail page ---------- */
.pdp-grid{ display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:start; }
.pdp-hero{ position:relative; width:100%; aspect-ratio:1/1; border-radius:var(--radius-lg); background:linear-gradient(135deg,var(--surface),#eef1f4); display:flex; align-items:center; justify-content:center; text-align:center; padding:0; overflow:hidden; cursor:zoom-in; }
.pdp-hero span{ font-size:14px; font-weight:700; color:var(--muted-2); line-height:1.4; }
.pdp-hero img{ width:100%; height:100%; object-fit:contain; }
.pdp-off-badge{ position:absolute; bottom:16px; left:16px; padding:6px 12px; border-radius:9px; background:var(--orange); color:#fff; font-size:12.5px; font-weight:800; }
.pdp-thumbs{ display:flex; gap:10px; margin-top:14px; flex-wrap:wrap; }
.pdp-thumb{ width:64px; height:64px; border-radius:11px; border:2px solid var(--border-soft); background:var(--surface); cursor:pointer; overflow:hidden; }
.pdp-thumb img{ width:100%; height:100%; object-fit:cover; }
.pdp-thumb.active{ border-color:var(--orange); }
.pdp-lightbox{ position:fixed; inset:0; background:rgba(10,12,16,.94); z-index:200; display:flex; align-items:center; justify-content:center; animation:pdpLightboxIn .15s ease; }
@keyframes pdpLightboxIn{ from{ opacity:0; } to{ opacity:1; } }
.pdp-lightbox-img{ max-width:88vw; max-height:82vh; object-fit:contain; }
.pdp-lightbox-close, .pdp-lightbox-nav{ position:absolute; border:none; border-radius:50%; background:rgba(255,255,255,.12); color:#fff; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .15s ease; }
.pdp-lightbox-close:hover, .pdp-lightbox-nav:hover{ background:rgba(255,255,255,.24); }
.pdp-lightbox-close{ top:18px; right:18px; width:38px; height:38px; }
.pdp-lightbox-nav{ top:50%; transform:translateY(-50%); width:46px; height:46px; }
.pdp-lightbox-nav.prev{ left:18px; }
.pdp-lightbox-nav.next{ right:18px; }
.pdp-lightbox-dots{ position:absolute; bottom:22px; left:50%; transform:translateX(-50%); display:flex; gap:8px; }
.pdp-lightbox-dot{ width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,.35); }
.pdp-lightbox-dot.active{ background:#fff; }
@media (max-width: 640px){
  .pdp-lightbox-nav{ width:38px; height:38px; }
  .pdp-lightbox-nav.prev{ left:8px; }
  .pdp-lightbox-nav.next{ right:8px; }
}
.pdp-brand{ font-size:11.5px; font-weight:800; letter-spacing:.5px; text-transform:uppercase; color:var(--orange-dark); }
.pdp-name{ font-size:26px; font-weight:800; letter-spacing:-.4px; margin-top:8px; line-height:1.3; }
.pdp-visit-store{ font-size:13px; color:var(--muted); margin-top:4px; }
.pdp-visit-store a{ color:var(--orange-dark); font-weight:700; text-decoration:none; }
.pdp-visit-store a:hover{ text-decoration:underline; }
.pdp-price-block{ margin-top:16px; }
.pdp-incl-note{ font-size:13px; color:var(--muted-2); margin-bottom:2px; }
.pdp-price{ font-family:var(--font-head); font-size:30px; font-weight:800; color:var(--ink); }
.pdp-gst-note{ font-size:14px; font-weight:700; color:var(--muted); margin-left:4px; }
.pdp-mrp-row{ display:flex; align-items:center; gap:10px; margin-top:6px; }
.pdp-mrp{ font-size:14.5px; color:var(--muted-2); text-decoration:line-through; }
.pdp-off-pill{ font-size:12px; font-weight:800; color:var(--orange-dark); background:var(--orange-light-bg); border:1px solid var(--orange-light-border); border-radius:7px; padding:3px 8px; }
.pdp-tax-note{ font-size:12.5px; color:var(--muted); margin-top:6px; }
.pdp-qty-row{ display:flex; align-items:center; gap:14px; margin-top:18px; }
.pdp-qty-stepper{ display:flex; align-items:center; border:1.5px solid var(--border); border-radius:11px; overflow:hidden; }
.pdp-qty-btn{ width:36px; height:36px; border:none; background:#fff; font-size:17px; font-weight:700; color:var(--ink); cursor:pointer; }
.pdp-qty-btn:hover:not(:disabled){ background:var(--surface); }
.pdp-qty-btn:disabled{ color:var(--muted-2); cursor:not-allowed; }
.pdp-qty-val{ width:38px; text-align:center; font-size:14px; font-weight:700; border-left:1.5px solid var(--border); border-right:1.5px solid var(--border); line-height:36px; }
.pdp-qty-label{ font-size:12.5px; color:var(--muted); }
.pdp-total-row{ display:flex; align-items:center; justify-content:space-between; margin-top:10px; padding:10px 14px; border-radius:11px; background:var(--surface); font-size:13px; color:var(--muted); }
.pdp-total-row .val{ font-size:16px; font-weight:800; color:var(--ink); }
.pdp-tier-box{ margin-top:16px; border:1px solid var(--border-soft); border-radius:var(--radius-lg); overflow:hidden; }
.pdp-tier-title{ font-size:12.5px; font-weight:700; color:var(--ink); padding:10px 14px; background:var(--surface); border-bottom:1px solid var(--border-soft); }
.pdp-tier-table{ width:100%; border-collapse:collapse; font-size:13px; }
.pdp-tier-table td{ padding:9px 14px; border-top:1px solid var(--border-soft); }
.pdp-tier-table tr:first-child td{ border-top:none; }
.pdp-tier-table td:first-child{ color:var(--muted); }
.pdp-tier-table td:last-child{ text-align:right; font-weight:700; color:var(--ink); }
.pdp-info-cards{ display:flex; gap:12px; margin-top:20px; }
.pdp-info-card{ flex:1; display:flex; align-items:center; gap:10px; border-radius:13px; padding:13px; }
.pdp-info-card .t1{ font-size:13px; font-weight:700; color:var(--ink); }
.pdp-info-card .t2{ font-size:11px; color:var(--muted); margin-top:1px; }
.pdp-variant-group{ margin-top:18px; border-radius:12px; transition:box-shadow .2s ease; }
.pdp-variant-group-flash{ box-shadow:0 0 0 3px var(--orange-light-border, rgba(249,115,22,.35)); }
.pdp-variant-label{ font-size:12.5px; font-weight:700; color:#374151; margin-bottom:8px; }
.pdp-variant-select{ width:100%; height:46px; padding:0 14px; border-radius:11px; border:1.5px solid var(--border); background:#fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%236B7280" stroke-width="2"><path d="m6 9 6 6 6-6"/></svg>') no-repeat right 14px center; appearance:none; -webkit-appearance:none; font-size:14px; font-weight:600; color:var(--ink); cursor:pointer; }
.pdp-variant-select:focus{ outline:none; border-color:var(--orange); }
.pdp-offers-box{ margin-top:18px; border-radius:12px; background:var(--orange-light-bg); border:1px solid var(--orange-light-border); padding:14px 16px; }
.pdp-offers-head{ font-size:11px; font-weight:800; letter-spacing:.5px; color:var(--orange-dark); margin-bottom:10px; }
.pdp-offer-row{ display:flex; align-items:flex-start; gap:10px; padding:8px 0; border-top:1px solid var(--orange-light-border); }
.pdp-offer-row:first-of-type{ border-top:none; padding-top:0; }
.pdp-offer-row .txt{ font-size:13px; font-weight:700; color:var(--ink); }
.pdp-offer-row .code{ font-size:12px; color:var(--muted); margin-top:2px; }
.pdp-actions{ display:flex; gap:12px; margin-top:26px; }
.pdp-actions .btn{ flex:1; }
.pdp-buy-now-btn{ background:var(--navy); color:#fff; }
.pdp-buy-now-btn:hover{ background:#111827; }
.pdp-actions-spacer{ display:none; }
.pdp-wish-btn{ flex-shrink:0; width:34px; height:34px; border-radius:10px; border:1.5px solid var(--border); background:#fff; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:border-color .15s ease, background .15s ease; }
.pdp-wish-btn:hover{ border-color:var(--orange-light-border); background:var(--orange-light-bg); }
.pdp-wish-btn.active{ border-color:#FCA5A5; background:#FEF2F2; }
.pdp-contact-row{ display:flex; margin-bottom:18px; border:1px solid var(--border-soft); border-radius:14px; background:var(--surface); overflow:hidden; }
.pdp-contact-btn{ flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px; padding:14px 8px; font-size:12.5px; font-weight:700; color:var(--ink); text-decoration:none; transition:background .15s ease; }
.pdp-contact-btn:not(:last-child){ border-right:1px solid var(--border-soft); }
.pdp-contact-btn:hover{ background:var(--orange-light-bg); }
.pdp-contact-btn .ic{ width:36px; height:36px; border-radius:50%; background:#fff; box-shadow:0 1px 4px rgba(0,0,0,.12); display:flex; align-items:center; justify-content:center; }
.pdp-spec-box{ border:1px solid var(--border-soft); border-radius:var(--radius-lg); overflow:hidden; }
.pdp-spec-row{ display:flex; padding:13px 16px; border-bottom:1px solid var(--border-soft); font-size:13.5px; }
.pdp-spec-row:last-child{ border-bottom:none; }
.pdp-spec-row .lbl{ flex:0 0 42%; color:var(--muted); }
.pdp-spec-row .val{ flex:1; font-weight:600; color:var(--ink); }
.pdp-rating-summary{ display:flex; align-items:center; gap:24px; margin:16px 0 22px; }
.pdp-rating-big{ text-align:center; flex-shrink:0; }
.pdp-rating-big .num{ font-family:var(--font-head); font-size:38px; font-weight:800; }
.pdp-rating-big .stars{ color:#F59E0B; font-size:13px; margin-top:4px; }
.pdp-rating-big .cnt{ font-size:11.5px; color:var(--muted-2); margin-top:4px; }
.pdp-bar-row{ display:flex; align-items:center; gap:8px; }
.pdp-bar-row .n{ width:10px; font-size:11px; color:var(--muted-2); }
.pdp-bar-track{ flex:1; height:7px; border-radius:4px; background:var(--border-soft); overflow:hidden; }
.pdp-bar-fill{ height:100%; background:#F59E0B; }
.pdp-review{ border-top:1px solid var(--border-soft); padding:16px 0; }
.pdp-review-avatar{ width:36px; height:36px; border-radius:50%; background:var(--navy); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:14px; flex-shrink:0; }
.pdp-review-name{ font-size:13.5px; font-weight:700; }
.pdp-review-meta{ font-size:11px; color:var(--muted-2); margin-top:1px; }
.pdp-review-text{ font-size:13.5px; color:#4B5563; line-height:1.6; margin-top:10px; }

.stat-strip{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.stat-box{ text-align:center; }
.stat-box .n{ font-family:var(--font-head); font-size:36px; font-weight:800; color:var(--ink); }
.stat-box .n.accent{ color:var(--orange); }
.stat-box .l{ font-size:13px; color:var(--muted); margin-top:6px; }

/* ---------- CTA band ---------- */
.cta-band{ background:var(--navy); border-radius:var(--radius-xl); padding:52px; position:relative; overflow:hidden; }
.cta-band::before{ content:''; position:absolute; inset:0; background:radial-gradient(500px 260px at 88% 10%, rgba(249,115,22,.3), transparent 60%); }
.cta-band-in{ position:relative; display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.cta-band h3{ color:#fff; font-size:26px; font-weight:800; letter-spacing:-.4px; max-width:420px; }
.cta-band p{ color:#9CA3AF; margin-top:10px; font-size:14.5px; max-width:420px; }
.cta-band .btns{ display:flex; gap:12px; flex-shrink:0; flex-wrap:wrap; }

/* ---------- Misc: image placeholders ---------- */
.ph-box{ background:var(--surface); border:1px solid var(--border-soft); border-radius:var(--radius-lg); display:flex; align-items:center; justify-content:center; text-align:center; padding:20px; }
.ph-box span{ font-size:12px; font-weight:700; color:var(--muted-2); }

/* ---------- Contact info cards ---------- */
.info-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.info-card{ background:#fff; border:1px solid var(--border-soft); border-radius:var(--radius-lg); padding:24px; box-shadow:var(--shadow-card); }
.info-card .ic{ width:48px; height:48px; border-radius:14px; background:var(--orange-light-bg); display:flex; align-items:center; justify-content:center; }
.info-card h4{ font-size:15px; margin-top:16px; }
.info-card p{ font-size:13.5px; color:var(--muted); margin-top:6px; line-height:1.6; }
.info-card a.val{ font-size:14px; font-weight:700; color:var(--orange-dark); margin-top:10px; display:block; }

/* ---------- Support channels ---------- */
.support-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.support-card{ background:#fff; border:1px solid var(--border-soft); border-radius:var(--radius-lg); padding:26px; text-align:center; box-shadow:var(--shadow-card); }
.support-card .ic{ width:56px; height:56px; border-radius:16px; background:var(--orange-light-bg); display:flex; align-items:center; justify-content:center; margin:0 auto; }
.support-card h4{ font-size:16px; margin-top:16px; }
.support-card p{ font-size:13px; color:var(--muted); margin-top:6px; line-height:1.6; }

/* ---------- Track order search box ---------- */
.track-search{ background:var(--navy); border-radius:var(--radius-xl); padding:36px; position:relative; overflow:hidden; }
.track-search::before{ content:''; position:absolute; inset:0; background:radial-gradient(480px 260px at 90% 0%, rgba(249,115,22,.28), transparent 60%); }
.track-search-in{ position:relative; }
.track-search h3{ color:#fff; font-size:22px; }
.track-search p{ color:#cbd5e1; font-size:13.5px; margin-top:8px; }
.track-form{ display:flex; gap:10px; margin-top:22px; flex-wrap:wrap; }
.track-form input{ flex:1; min-width:220px; height:52px; border-radius:13px; border:none; padding:0 18px; font-size:14px; font-family:inherit; outline:none; }

/* ---------- App download ---------- */
.app-hero{ display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
.phone-mock{ width:300px; height:610px; margin:0 auto; background:var(--navy); border-radius:44px; padding:14px; box-shadow:var(--shadow-pop); position:relative; }
.phone-mock .screen{ width:100%; height:100%; background:linear-gradient(160deg,#151b26,#1F2937); border-radius:32px; overflow:hidden; display:flex; flex-direction:column; }
.qr-card{ display:flex; align-items:center; gap:16px; background:var(--surface); border:1px solid var(--border-soft); border-radius:var(--radius-md); padding:16px 20px; margin-top:28px; }
.qr-box{ width:76px; height:76px; border-radius:12px; background:#fff; border:1px solid var(--border-soft); flex-shrink:0; display:flex; align-items:center; justify-content:center; }

/* ---------- Login / account modal ---------- */
.hc-modal-backdrop{ position:fixed; inset:0; z-index:400; background:rgba(17,24,39,.5); display:flex; align-items:center; justify-content:center; padding:20px; opacity:0; visibility:hidden; transition:opacity .18s ease; }
.hc-modal-backdrop.show{ opacity:1; visibility:visible; }
.hc-modal-sheet{ background:#fff; border-radius:var(--radius-lg); padding:28px; width:100%; max-width:380px; box-shadow:var(--shadow-pop); position:relative; }
.hc-modal-close{ position:absolute; top:16px; right:16px; width:32px; height:32px; border-radius:9px; border:none; background:var(--surface); display:flex; align-items:center; justify-content:center; cursor:pointer; }
.hc-modal-title{ font-size:19px; font-weight:800; padding-right:30px; }
.hc-modal-sub{ font-size:13px; color:var(--muted); margin-top:6px; line-height:1.5; }
.hc-modal-error{ font-size:12.5px; font-weight:600; color:#EF4444; margin-top:10px; }
.hc-modal-link{ display:block; margin:14px auto 0; background:none; border:none; font-size:13px; font-weight:700; color:var(--orange-dark); cursor:pointer; }

/* ---------- Cart page ---------- */
.cart-layout{ display:grid; grid-template-columns:1fr 340px; gap:28px; align-items:start; }
.cart-item{ display:flex; gap:14px; padding:18px 0; border-bottom:1px solid var(--border-soft); }
.cart-item:last-child{ border-bottom:none; }
.cart-item-thumb{ width:76px; height:76px; border-radius:12px; background:var(--surface); border:1px solid var(--border-soft); flex-shrink:0; display:flex; align-items:center; justify-content:center; text-align:center; padding:6px; }
.cart-item-thumb span{ font-size:9.5px; font-weight:700; color:var(--muted-2); line-height:1.3; }
.cart-item-name{ font-size:14px; font-weight:700; color:var(--ink); }
.cart-item-meta{ font-size:12px; color:var(--muted); margin-top:3px; }
.cart-item-bottom{ display:flex; align-items:center; justify-content:space-between; margin-top:10px; flex-wrap:wrap; gap:10px; }
.qty-stepper{ display:flex; align-items:center; border:1.5px solid var(--border); border-radius:10px; height:38px; }
.qty-stepper button{ width:34px; height:100%; border:none; background:none; cursor:pointer; font-size:16px; color:var(--ink); display:flex; align-items:center; justify-content:center; }
.qty-stepper button:hover{ background:var(--surface); }
.qty-stepper span{ width:30px; text-align:center; font-size:13.5px; font-weight:700; }
.cart-item-remove{ background:none; border:none; font-size:12px; font-weight:700; color:#EF4444; cursor:pointer; display:flex; align-items:center; gap:5px; }
.cart-item-price{ font-size:15px; font-weight:800; font-family:var(--font-head); }
.cart-summary{ background:#fff; border:1px solid var(--border-soft); border-radius:var(--radius-lg); padding:22px; box-shadow:var(--shadow-card); position:sticky; top:100px; }
.cart-summary-row{ display:flex; justify-content:space-between; font-size:13.5px; margin-bottom:11px; color:#374151; }
.cart-summary-row.total{ border-top:1px dashed var(--border); margin-top:6px; padding-top:14px; font-size:16px; font-weight:800; color:var(--ink); }
.cart-coupon-row{ display:flex; gap:8px; margin-bottom:16px; }
.cart-coupon-row input{ flex:1; height:42px; border:1px solid var(--border); border-radius:10px; padding:0 12px; font-size:13px; font-family:inherit; outline:none; }
.cart-coupon-row input:focus{ border-color:var(--orange); }
.cart-empty{ text-align:center; padding:60px 20px; color:var(--muted); }

/* ---------- Checkout page ---------- */
.addr-card{ border:1.5px solid var(--border); border-radius:var(--radius-md); padding:16px; display:flex; gap:12px; cursor:pointer; background:#fff; }
.addr-card.active{ border-color:var(--orange); background:var(--orange-light-bg); }
.addr-radio{ width:20px; height:20px; border-radius:50%; border:1.5px solid var(--border); flex-shrink:0; margin-top:1px; display:flex; align-items:center; justify-content:center; }
.addr-radio.active{ border-color:var(--orange); }
.addr-radio.active::after{ content:''; width:10px; height:10px; border-radius:50%; background:var(--orange); }
.addr-name-row{ display:flex; align-items:center; gap:8px; }
.addr-line{ font-size:12.5px; color:var(--muted); margin-top:5px; line-height:1.5; }
.addr-add-btn{ border:1.5px dashed var(--border); border-radius:var(--radius-md); padding:16px; display:flex; align-items:center; justify-content:center; gap:8px; cursor:pointer; background:none; width:100%; font-size:13.5px; font-weight:700; color:#374151; }
.pay-row{ padding:14px 16px; border-bottom:1px solid var(--border-soft); display:flex; align-items:center; gap:12px; cursor:pointer; }
.pay-row:last-child{ border-bottom:none; }
.pay-box{ background:#fff; border:1px solid var(--border-soft); border-radius:var(--radius-lg); overflow:hidden; }

/* ---------- Order confirmation ---------- */
.order-success-circle{ width:96px; height:96px; border-radius:50%; background:var(--green); display:flex; align-items:center; justify-content:center; margin:0 auto; }
.order-success-box{ background:var(--surface); border:1px solid var(--border-soft); border-radius:var(--radius-md); padding:18px 26px; display:inline-flex; flex-direction:column; align-items:center; gap:4px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px){
  .footer-top{ grid-template-columns:1fr 1fr 1fr; }
  .cat-grid{ grid-template-columns:repeat(3,1fr); }
  .prod-grid{ grid-template-columns:repeat(3,1fr); }
  .blog-grid{ grid-template-columns:repeat(2,1fr); }
  .benefit-grid{ grid-template-columns:repeat(2,1fr); }
  .steps-row{ grid-template-columns:repeat(2,1fr); }
  .info-grid{ grid-template-columns:1fr 1fr; }
  .support-grid{ grid-template-columns:1fr 1fr; }
  .stat-strip{ grid-template-columns:repeat(2,1fr); gap:26px; }
  .hero .container{ grid-template-columns:1fr; }
  .hero-art{ display:none; }
  .app-hero{ grid-template-columns:1fr; }
  .phone-mock{ order:-1; }
}
@media (max-width: 860px){
  .header-search{ display:none; }
  .main-nav{ display:none; }
  .mobile-toggle{ display:flex; }
  .topbar-links{ display:none; }
  .header-actions{ gap:8px; }
  .header-actions .icon-btn:not(.icon-btn-keep):not(:first-child){ display:none; }
  .header-actions .btn-primary{ display:none; }
  .footer-top{ grid-template-columns:1fr 1fr; }
  .form-grid{ grid-template-columns:1fr; }
  .subcat-grid{ grid-template-columns:repeat(2,1fr); }
  .search-layout{ grid-template-columns:1fr; }
  .two-col-cta{ grid-template-columns:1fr; }
  .two-col-split{ grid-template-columns:1fr; }
  .pdp-grid{ grid-template-columns:1fr; gap:28px; }
  .cart-layout{ grid-template-columns:1fr; }
  .cart-summary{ position:static; }
  .pdp-actions{ position:fixed; left:0; right:0; bottom:0; z-index:60; margin:0; gap:10px; padding:10px 14px; background:#fff; box-shadow:0 -4px 16px rgba(0,0,0,.1); }
  .pdp-actions-spacer{ display:block; height:68px; }
}
@media (max-width: 480px){
  .site-header .container{ gap:10px; }
  .brand-name{ font-size:16px; }
  .subcat-grid{ grid-template-columns:1fr; }
  .pdp-info-cards{ flex-direction:column; }
  .pdp-rating-summary{ flex-direction:column; align-items:flex-start; gap:14px; }
  .cart-item{ flex-wrap:wrap; }
  .cart-item-thumb{ width:64px; height:64px; }
}
@media (max-width: 640px){
  .cat-grid{ grid-template-columns:repeat(2,1fr); }
  .prod-grid{ grid-template-columns:repeat(2,1fr); }
  .blog-grid{ grid-template-columns:1fr; }
  .benefit-grid{ grid-template-columns:1fr; }
  .steps-row{ grid-template-columns:1fr; }
  .info-grid{ grid-template-columns:1fr; }
  .support-grid{ grid-template-columns:1fr; }
  .stat-strip{ grid-template-columns:1fr 1fr; }
  .footer-top{ grid-template-columns:1fr; }
  .hero h1{ font-size:32px; }
  .section-title{ font-size:26px; }
  .footer-bottom{ flex-direction:column; gap:10px; text-align:center; }
  .cta-band-in{ flex-direction:column; align-items:flex-start; }
  .hc-modal-sheet{ padding:22px; }
}

/* ---------- Toast ---------- */
.toast{
  position:fixed; bottom:28px; left:50%; transform:translateX(-50%) translateY(20px);
  background:var(--navy); color:#fff; padding:15px 24px; border-radius:13px; font-size:14px; font-weight:600;
  display:flex; align-items:center; gap:10px; box-shadow:var(--shadow-pop); z-index:300;
  opacity:0; pointer-events:none; transition:opacity .25s ease, transform .25s ease;
}
.toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }

/* Mobile nav drawer */
.mobile-nav{ position:fixed; inset:0; z-index:200; display:none; }
.mobile-nav.open{ display:block; }
.mobile-nav .backdrop{ position:absolute; inset:0; background:rgba(17,24,39,.5); }
.mobile-nav .panel{ position:absolute; top:0; right:0; bottom:0; width:82%; max-width:340px; background:#fff; padding:20px; overflow-y:auto; }
.mobile-nav .panel a{ display:block; padding:13px 6px; font-size:15px; font-weight:600; border-bottom:1px solid var(--border-soft); }
.mobile-nav .close-btn{ width:40px; height:40px; border-radius:10px; background:var(--surface); border:none; display:flex; align-items:center; justify-content:center; cursor:pointer; margin-bottom:10px; }
