/* ================================================================
   TechForceBD — Storefront design system
   ================================================================ */
:root{
  --brand:#0f2942;        /* deep navy   */
  --brand-2:#16385a;
  --accent:#1668c4;       /* considered blue */
  --accent-dark:#11529c;
  --cta:#e35205;          /* order orange */
  --cta-dark:#c44503;
  --ink:#16202e;
  --muted:#65758b;
  --line:#e3e8ef;
  --bg:#f6f7f9;
  --card:#ffffff;
  --ok:#15803d;
  --danger:#c2261d;
  --radius:6px;
  --shadow:0 1px 2px rgba(15,41,66,.05);
  --shadow-md:0 2px 8px rgba(15,41,66,.07),0 1px 2px rgba(15,41,66,.05);
  --shadow-lg:0 10px 30px rgba(15,41,66,.12);
  --maxw:1280px;
  --font:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:var(--font);color:var(--ink);background:var(--bg);
  line-height:1.55;font-size:14.5px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 20px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  border:0;border-radius:var(--radius);padding:10px 18px;font-weight:600;font-size:13.5px;
  cursor:pointer;transition:background .15s,border-color .15s,color .15s;font-family:inherit;white-space:nowrap;
}
.btn-cta{background:var(--cta);color:#fff}
.btn-cta:hover{background:var(--cta-dark)}
.btn-accent{background:var(--accent);color:#fff}
.btn-accent:hover{background:var(--accent-dark)}
.btn-ghost{background:#fff;color:var(--brand);border:1px solid #cfd8e3}
.btn-ghost:hover{border-color:var(--accent);color:var(--accent);background:#f7fafd}
.btn-block{width:100%}
.btn:disabled{opacity:.5;cursor:not-allowed}

/* ---------- Top bar ---------- */
.topbar{background:#0b2038;color:#a9bad0;font-size:12.5px;border-bottom:1px solid rgba(255,255,255,.06)}
.topbar .wrap{display:flex;justify-content:space-between;align-items:center;height:34px;gap:16px}
.topbar a{color:#a9bad0}
.topbar a:hover{color:#fff}
.topbar .tb-right{display:flex;gap:18px}

/* ---------- Header ---------- */
.header{background:var(--brand);color:#fff;position:sticky;top:0;z-index:50}
.header .wrap{display:flex;align-items:center;gap:28px;height:72px}
.searchbar{flex:1;display:flex;max-width:620px}
.searchbar input{flex:1;border:1px solid transparent;padding:10px 14px;border-radius:var(--radius) 0 0 var(--radius);font-size:14px;outline:none;font-family:inherit}
.searchbar input:focus{border-color:var(--accent)}
.searchbar button{border-radius:0 var(--radius) var(--radius) 0;padding:0 18px}
.header-actions{display:flex;align-items:center;gap:8px;margin-left:auto}
.cart-btn{position:relative;display:flex;align-items:center;gap:8px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);color:#fff;padding:9px 15px;border-radius:var(--radius);font-weight:600;font-size:13.5px}
.cart-btn:hover{background:rgba(255,255,255,.16)}
.cart-count{position:absolute;top:-7px;right:-7px;background:var(--cta);color:#fff;min-width:19px;height:19px;border-radius:19px;font-size:11px;font-weight:700;display:grid;place-items:center;padding:0 5px}
.menu-toggle{display:none;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);color:#fff;font-size:19px;width:40px;height:40px;border-radius:var(--radius);cursor:pointer;line-height:1}

/* ---------- Category nav (desktop) ----------
   All main categories sit on a single readable line, evenly spread. */
.catnav{background:#fff;border-bottom:1px solid var(--line);position:sticky;top:72px;z-index:40}
.catnav .wrap{
  display:flex;flex-wrap:nowrap;align-items:stretch;
  justify-content:space-between;column-gap:clamp(4px,.5vw,10px);
}

/* ---------- Hero ---------- */
.hero{background:linear-gradient(120deg,var(--brand),var(--accent-dark));color:#fff;border-radius:var(--radius);margin-top:20px;padding:44px 40px;position:relative;overflow:hidden}
.hero::after{content:"";position:absolute;right:-60px;top:-60px;width:280px;height:280px;background:radial-gradient(circle,rgba(255,106,0,.35),transparent 70%)}
.hero h1{margin:0 0 10px;font-size:34px;line-height:1.15}
.hero p{margin:0 0 20px;font-size:16px;color:#dce6f6;max-width:560px}
.hero .badge{display:inline-block;background:rgba(255,255,255,.15);padding:5px 12px;border-radius:20px;font-size:12.5px;font-weight:600;margin-bottom:14px}

/* ---------- Section heads ---------- */
.section{margin-top:36px}
.section-head{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:16px;
  padding-bottom:10px;border-bottom:1px solid var(--line)}
.section-head h2{font-size:17px;margin:0;font-weight:700;letter-spacing:-.2px;color:var(--brand)}
.section-head a{color:var(--accent);font-weight:600;font-size:13px}

/* ---------- Category tiles ---------- */
.cat-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:10px}
.cat-tile{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);
  padding:14px 14px;transition:border-color .15s,box-shadow .15s}
.cat-tile:hover{border-color:var(--accent);box-shadow:var(--shadow-md)}
.cat-tile b{display:block;font-size:13.5px;font-weight:600;color:var(--brand);line-height:1.3}
.cat-tile small{display:block;color:var(--muted);font-size:12px;margin-top:3px}
@media(max-width:1100px){.cat-grid{grid-template-columns:repeat(4,1fr)}}
/* Phones: four per row, so the whole catalogue is scannable at a glance.
   Tiles get tight, so the label centres and shrinks rather than overflowing. */
@media(max-width:700px){
  .cat-grid{grid-template-columns:repeat(4,1fr);gap:6px}
  .cat-tile{padding:9px 5px;text-align:center;display:flex;flex-direction:column;justify-content:center;min-height:60px}
  .cat-tile b{font-size:10.5px;line-height:1.25;letter-spacing:-.2px;hyphens:auto}
  .cat-tile small{font-size:9.5px;margin-top:2px}
}

/* ---------- Product grid ---------- */
.product-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:12px}
@media(max-width:1180px){.product-grid{grid-template-columns:repeat(4,1fr)}}
@media(max-width:920px){.product-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:640px){.product-grid{grid-template-columns:repeat(2,1fr);gap:10px}}
.pcard{background:var(--card);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;
  display:flex;flex-direction:column;transition:border-color .15s,box-shadow .15s;position:relative}
.pcard:hover{box-shadow:var(--shadow-md);border-color:#c9d4e2}
.pcard .thumb{aspect-ratio:1/1;background:#fff;padding:14px;display:grid;place-items:center}
.pcard .thumb img{max-height:100%;object-fit:contain}
.pcard .tag{position:absolute;top:9px;left:9px;background:var(--danger);color:#fff;font-size:10.5px;font-weight:700;padding:2px 7px;border-radius:3px}
.pcard .body{padding:12px 13px 14px;display:flex;flex-direction:column;flex:1;border-top:1px solid var(--line)}
.pcard .brand{font-size:11px;color:var(--muted);font-weight:600;text-transform:uppercase;letter-spacing:.5px}
.pcard h3{font-size:13.2px;margin:4px 0 8px;line-height:1.4;font-weight:500;min-height:37px;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.pcard h3 a:hover{color:var(--accent)}
.pcard .spec{list-style:none;margin:0 0 10px;padding:0;font-size:11.5px;color:var(--muted)}
.pcard .spec li{padding-left:11px;position:relative;margin-bottom:1px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.pcard .spec li::before{content:"";position:absolute;left:0;top:8px;width:3px;height:3px;border-radius:50%;background:#b6c2d2}
.pcard .price-row{margin-top:auto;display:flex;align-items:baseline;gap:7px;margin-bottom:8px}
.pcard .price{font-size:16.5px;font-weight:700;color:var(--brand);letter-spacing:-.3px}
.pcard .old{font-size:12.5px;color:var(--muted);text-decoration:line-through}
.pcard .actions{display:flex;gap:6px}
.pcard .actions .btn{padding:8px 10px;font-size:12.5px;flex:1}
.stock{font-size:11px;font-weight:600;margin-bottom:7px}
.stock.in{color:var(--ok)}.stock.out{color:var(--danger)}.stock.pre{color:var(--cta)}

/* ---------- Breadcrumb ---------- */
.crumb{font-size:13px;color:var(--muted);margin:18px 0}
.crumb a:hover{color:var(--accent)}

/* ---------- Product detail ---------- */
.pdetail{display:grid;grid-template-columns:420px 1fr;gap:32px;background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:26px;margin-top:8px}
.pdetail .gallery{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:24px;display:grid;place-items:center;aspect-ratio:1/1}
.pdetail .gallery img{max-height:100%;object-fit:contain}
.pdetail h1{font-size:24px;margin:2px 0 6px}
.pdetail .brandline{color:var(--accent);font-weight:700;font-size:13px;text-transform:uppercase;letter-spacing:.5px}
.pdetail .price-box{background:var(--bg);border:1px solid var(--line);border-radius:var(--radius);padding:16px 20px;margin:16px 0}
.pdetail .price-box .price{font-size:30px;font-weight:800;color:var(--brand)}
.pdetail .price-box .old{color:var(--muted);text-decoration:line-through;margin-left:10px}
.pdetail .keyspec{list-style:none;padding:0;margin:16px 0}
.pdetail .keyspec li{padding:8px 0 8px 26px;position:relative;border-bottom:1px dashed var(--line);font-size:14px}
.pdetail .keyspec li::before{content:"✔";position:absolute;left:0;color:var(--ok);font-weight:700}
.pdetail .buy-row{display:flex;gap:12px;margin-top:20px;flex-wrap:wrap}
.pdetail .qty{display:flex;align-items:center;border:1.5px solid var(--line);border-radius:10px;overflow:hidden}
.pdetail .qty button{width:40px;height:44px;border:0;background:#fff;font-size:18px;cursor:pointer}
.pdetail .qty input{width:48px;height:44px;border:0;text-align:center;font-size:16px;font-weight:700}
.desc-block{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:24px;margin-top:20px}
.desc-block h2{font-size:18px;margin:0 0 12px;padding-bottom:10px;border-bottom:2px solid var(--line)}
.desc-block p{color:#374151;white-space:pre-line}

/* ---------- Cart drawer ---------- */
.overlay{position:fixed;inset:0;background:rgba(11,37,69,.5);opacity:0;visibility:hidden;transition:.2s;z-index:90}
.overlay.open{opacity:1;visibility:visible}
.drawer{position:fixed;top:0;right:-440px;width:420px;max-width:92vw;height:100%;background:#fff;z-index:100;box-shadow:var(--shadow-lg);transition:.25s;display:flex;flex-direction:column}
.drawer.open{right:0}
.drawer-head{padding:18px 20px;background:var(--brand);color:#fff;display:flex;justify-content:space-between;align-items:center}
.drawer-head h3{margin:0;font-size:17px}
.drawer-head button{background:none;border:0;color:#fff;font-size:24px;cursor:pointer;line-height:1}
.drawer-body{flex:1;overflow-y:auto;padding:14px 18px}
.cart-item{display:flex;gap:12px;padding:12px 0;border-bottom:1px solid var(--line)}
.cart-item img{width:60px;height:60px;object-fit:contain;border:1px solid var(--line);border-radius:8px;background:#fff}
.cart-item .ci-body{flex:1;min-width:0}
.cart-item .ci-name{font-size:13.5px;font-weight:600;margin-bottom:4px}
.cart-item .ci-price{color:var(--accent);font-weight:700;font-size:13px}
.cart-item .ci-controls{display:flex;align-items:center;gap:6px;margin-top:6px}
.cart-item .ci-controls button{width:26px;height:26px;border:1px solid var(--line);background:#fff;border-radius:6px;cursor:pointer;font-weight:700}
.cart-item .remove{margin-left:auto;color:var(--danger);background:none;border:0;cursor:pointer;font-size:12px}
.cart-empty{text-align:center;color:var(--muted);padding:50px 20px}
.drawer-foot{padding:18px 20px;border-top:1px solid var(--line);background:#fff}
.cart-total{display:flex;justify-content:space-between;font-size:18px;font-weight:800;margin-bottom:14px}
.cart-total span:last-child{color:var(--brand)}
.wa-note{font-size:12px;color:var(--muted);text-align:center;margin-top:10px}

/* ---------- Order confirmation ---------- */
.order-done{max-width:560px;margin:0 auto;padding:46px 20px 60px;text-align:center}
.od-tick{width:58px;height:58px;margin:0 auto 16px;border-radius:50%;background:var(--ok);color:#fff;font-size:30px;line-height:58px;font-weight:700}
.order-done h2{font-size:23px;color:var(--brand);margin:0 0 8px}
.od-sub{color:var(--muted);font-size:14px;margin:0 auto;max-width:420px}
.od-no{display:flex;flex-direction:column;gap:2px;margin:22px auto 0;padding:14px 20px;background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow)}
.od-no span{font-size:12px;color:var(--muted);text-transform:uppercase;letter-spacing:.5px}
.od-no b{font-size:21px;color:var(--cta);letter-spacing:.4px}
.od-bill{margin-top:18px;padding:18px 20px;background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);text-align:left}
.od-bill h3{font-size:14px;color:var(--brand);margin:0 0 12px;text-transform:uppercase;letter-spacing:.4px}
.od-line{display:flex;justify-content:space-between;gap:14px;padding:9px 0;border-bottom:1px dashed var(--line);font-size:13.5px}
.od-l-name{display:flex;flex-direction:column;gap:3px;min-width:0}
.od-l-name span{color:var(--muted);font-size:12px}
.od-l-amt{white-space:nowrap;font-weight:600}
.od-line.od-sum{color:var(--muted)}
.od-line.od-total{border-bottom:0;border-top:1px solid var(--line);margin-top:4px;padding-top:12px;font-size:17px;font-weight:800;color:var(--brand)}
.od-ship{margin-top:14px;padding-top:14px;border-top:1px dashed var(--line);font-size:13px;color:var(--muted);line-height:1.6}
.od-ship b{color:var(--ink)}
.od-wa{display:flex;align-items:center;justify-content:center;gap:9px;margin-top:16px;padding:12px 16px;background:#25d366;color:#fff;font-weight:600;font-size:14px;border-radius:var(--radius);text-decoration:none}
.od-wa:hover{background:#1fb356}
.od-shop{margin-top:18px;display:inline-block}
@media(max-width:520px){.order-done{padding:32px 4px 44px}.od-bill{padding:16px 14px}}

/* ---------- Empty state ---------- */
.empty{text-align:center;padding:60px 20px;color:var(--muted)}
.empty .big{font-size:48px;margin-bottom:10px}

/* ---------- Footer ---------- */
.footer{background:var(--brand);color:#b9c6de;margin-top:50px;padding:44px 0 0}
.footer .cols{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.3fr;gap:30px}
.footer h4{color:#fff;font-size:15px;margin:0 0 14px}
.footer a{color:#b9c6de;display:block;padding:4px 0;font-size:13.5px}
.footer a:hover{color:#fff}
.footer .brandcol p{font-size:13.5px;line-height:1.7}
.footer .contact li{list-style:none;font-size:13.5px;padding:4px 0;display:flex;gap:8px}
.footer ul{padding:0;margin:0}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);margin-top:30px;padding:16px 0;text-align:center;font-size:12.5px}
.wa-float{position:fixed;bottom:22px;right:22px;background:#25d366;color:#fff;width:56px;height:56px;border-radius:50%;display:grid;place-items:center;font-size:28px;box-shadow:var(--shadow-lg);z-index:80}
.wa-float:hover{transform:scale(1.08)}

.toast{position:fixed;bottom:24px;left:50%;transform:translateX(-50%) translateY(20px);background:var(--brand);color:#fff;padding:12px 22px;border-radius:10px;font-size:14px;font-weight:600;box-shadow:var(--shadow-lg);opacity:0;visibility:hidden;transition:.25s;z-index:120}
.toast.show{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}

/* ---------- Responsive ---------- */
@media(max-width:900px){
  .pdetail{grid-template-columns:1fr}
  .footer .cols{grid-template-columns:1fr 1fr}
}
@media(max-width:1023px){
  /* Mobile header: menu · logo · search + cart, kept as short as possible so
     the page content starts near the top. The category bar is replaced by the
     slide-in drawer. */
  .header .wrap{height:auto;padding:6px 12px;gap:8px}
  .menu-toggle{display:grid;place-items:center;width:36px;height:36px}
  .searchbar{order:3;width:100%;max-width:none;flex-basis:100%;display:none;margin-bottom:6px}
  .searchbar.show{display:flex}
  .search-toggle{display:grid;width:36px;height:36px}
  .logo-text,.logo-img-link{margin:0 auto}
  .logo-img-link img{height:40px;max-width:150px}
  .logo-text .lp{font-size:16px;padding:5px 6px}
  .cart-btn span:not(.cart-count){display:none}
  .cart-btn{padding:0;width:36px;height:36px;justify-content:center}
  .header-actions{gap:6px}
  /* The top strip carries only the tagline and phone — both redundant on a
     phone, where the header already competes for space. */
  .topbar{display:none}
  .catnav{display:none}
  .hero{padding:30px 22px}
  .hero h1{font-size:26px}
  .footer .cols{grid-template-columns:1fr}
}

/* ---------- Text logo (coloured chips per word) ---------- */
.logo-text{display:inline-flex;align-items:center;gap:0;font-weight:800;letter-spacing:.3px}
.logo-text .lp{padding:6px 8px;color:#fff;font-size:19px;line-height:1;font-family:'Trebuchet MS','Segoe UI',sans-serif}
.logo-text .lp1{background:#0b2545;border-radius:8px 0 0 8px;padding-left:10px}
.logo-text .lp2{background:#1e88e5}
.logo-text .lp3{background:#ff6a00;border-radius:0 8px 8px 0;padding-right:10px}
.footer .logo-text .lp{font-size:17px}

/* ---------- Flash messages ---------- */
.flash-ok,.flash-err{padding:12px 16px;border-radius:10px;margin:16px 0;font-weight:500}
.flash-ok{background:#ecfdf5;border:1px solid #a7f3d0;color:#065f46}
.flash-err{background:#fef2f2;border:1px solid #fecaca;color:#991b1b}

/* ---------- Checkout ---------- */
.checkout-grid{display:grid;grid-template-columns:1fr 380px;gap:24px;margin-top:8px}
.checkout-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:24px}
.checkout-card h3{margin:0 0 18px;font-size:17px;padding-bottom:12px;border-bottom:2px solid var(--line)}
.checkout-card .field{margin-bottom:16px}
.checkout-card label{display:block;font-weight:600;font-size:13.5px;margin-bottom:6px}
.checkout-card input,.checkout-card textarea{width:100%;padding:11px 13px;border:1.5px solid var(--line);border-radius:9px;font-size:14.5px;font-family:inherit}
.checkout-card input:focus,.checkout-card textarea:focus{outline:none;border-color:var(--accent)}
.checkout-card textarea{resize:vertical;min-height:72px}
.summary{align-self:start;position:sticky;top:150px}
.co-item{display:flex;align-items:center;gap:12px;padding:12px 0;border-bottom:1px solid var(--line)}
.co-item img{width:52px;height:52px;object-fit:contain;border:1px solid var(--line);border-radius:8px;background:#fff}
.co-i-body{flex:1;min-width:0}
.co-i-name{font-size:13.5px;font-weight:600}
.co-i-meta{font-size:12.5px;color:var(--muted)}
.co-i-line{font-weight:700;color:var(--brand)}
/* A bare "×" beside the price was easy to miss and hard to hit on a phone,
   so the remove control is a proper bordered button with a real tap target. */
.co-i-rm{flex-shrink:0;width:28px;height:28px;display:flex;align-items:center;justify-content:center;
  background:#fff;border:1px solid var(--line);border-radius:50%;color:var(--muted);
  font-size:17px;line-height:1;cursor:pointer;padding:0;transition:.15s}
.co-i-rm:hover{background:var(--danger);border-color:var(--danger);color:#fff}
@media(max-width:520px){.co-i-rm{width:32px;height:32px;font-size:19px}}
.co-total{display:flex;justify-content:space-between;font-size:19px;font-weight:800;margin-top:16px;padding-top:14px;border-top:2px solid var(--line)}
.co-total span:last-child{color:var(--brand)}
@media(max-width:800px){.checkout-grid{grid-template-columns:1fr}.summary{position:static}}

/* ---------- Nav items + subcategory dropdowns ----------
   Each item is exactly as wide as its own label (never flex:1 — equal-width
   boxes make long names spill over their neighbours). The leftover space is
   shared out between them, so the labels stay evenly spread and legible. */
.cat-item{position:relative;display:flex;flex:0 1 auto;min-width:0}
.cat-link{
  display:block;padding:13px 0;line-height:1.5;
  /* Never wrap, never overlap: a label that truly cannot fit is ellipsised
     rather than spilling over the item next to it. */
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
  /* Scales with the viewport so all 18 labels stay on one row. */
  font-size:clamp(10.5px,1vw,14px);font-weight:500;
  color:var(--ink);border-bottom:2px solid transparent;
}
.cat-link:hover,.cat-link.active{color:var(--cta);border-bottom-color:var(--cta)}
.cat-dropdown{position:absolute;top:100%;left:0;min-width:280px;background:#fff;border:1px solid var(--line);border-top:0;box-shadow:var(--shadow-lg);padding:14px;opacity:0;visibility:hidden;transform:translateY(4px);transition:.14s;z-index:60}
.cat-item:hover .cat-dropdown{opacity:1;visibility:visible;transform:translateY(0)}
/* Keep the dropdowns near the ends inside the viewport. */
.cat-item:nth-last-child(-n+5) .cat-dropdown{left:auto;right:0}
.cd-head{font-weight:800;color:var(--brand);font-size:13px;padding:4px 8px 8px;border-bottom:1px solid var(--line);margin-bottom:6px}
.cd-links{display:grid;grid-template-columns:1fr 1fr;gap:2px}
.cd-links a{padding:7px 8px;font-size:13px;font-weight:500;color:var(--ink);border-radius:7px}
.cd-links a:hover{background:var(--bg);color:var(--accent)}
.cd-all{grid-column:1/-1;color:var(--accent)!important;font-weight:700!important;border-top:1px solid var(--line);margin-top:4px}

/* ---------- Subcategory chips ---------- */
.subchips{display:flex;flex-wrap:wrap;gap:8px;margin:6px 0 4px}
.subchips a{padding:7px 14px;border-radius:20px;font-size:13px;font-weight:600;background:#fff;border:1.5px solid var(--line);color:var(--brand)}
.subchips a:hover{border-color:var(--accent);color:var(--accent)}
.subchips a.active{background:var(--accent);color:#fff;border-color:var(--accent)}

/* ---------- Price-may-change note ---------- */
.price-note{font-size:11.5px;color:var(--muted);margin-bottom:10px;line-height:1.4}
.price-note a{color:var(--accent);font-weight:700}
.price-note a:hover{text-decoration:underline}

/* ---------- Homepage banner ----------
   One restrained navy panel; the variety comes from real product photography,
   not from coloured gradients. */
.hero-slider{position:relative;margin-top:20px;border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;background:var(--brand)}
.hslides{position:relative;height:300px}
.hslide{position:absolute;inset:0;display:grid;grid-template-columns:1fr 42%;align-items:center;
  gap:24px;padding:40px 44px;color:#fff;opacity:0;visibility:hidden;transition:opacity .45s ease}
.hslide.active{opacity:1;visibility:visible}
.hslide-copy{max-width:540px}
.hslide .kicker{display:inline-block;font-size:11.5px;font-weight:700;letter-spacing:1.2px;
  text-transform:uppercase;color:#7fb2ea;margin-bottom:12px}
.hslide h1{margin:0 0 10px;font-size:29px;line-height:1.2;font-weight:700;letter-spacing:-.5px}
.hslide p{margin:0 0 20px;font-size:14.5px;color:#b8c8dc;max-width:430px}
.hslide-media{height:100%;display:grid;place-items:center;padding:8px}
.hslide-media img{max-height:220px;max-width:100%;object-fit:contain;
  filter:drop-shadow(0 18px 30px rgba(0,0,0,.35))}
.hero-dots{position:absolute;bottom:18px;left:44px;display:flex;gap:6px;z-index:3}
.hero-dots button{width:22px;height:3px;border:0;background:rgba(255,255,255,.28);cursor:pointer;padding:0;border-radius:2px;transition:background .15s}
.hero-dots button.active{background:var(--cta)}
@media(max-width:900px){
  .hslides{height:auto;min-height:260px}
  .hslide{grid-template-columns:1fr;padding:28px 24px 46px;gap:14px}
  .hslide h1{font-size:22px}
  .hslide p{font-size:13.5px;margin-bottom:16px}
  .hslide-media{display:none}
  .hero-dots{left:24px;bottom:16px}
  .usp-row{grid-template-columns:1fr 1fr}
  .cd-links{grid-template-columns:1fr}
}
@media(max-width:560px){.usp-row{grid-template-columns:1fr}}

/* ---------- Logo image (uploaded, replaces the text chips) ---------- */
.logo-img-link{display:flex;align-items:center;flex-shrink:0}
/* Works for both wide wordmarks and square logos. */
.logo-img-link img{height:54px;max-width:240px;object-fit:contain;display:block}
.footer .logo-img-link img{height:38px}
.sidebar .brand img{max-height:40px;max-width:100%;object-fit:contain}

/* ---------- Header icon buttons ---------- */
.icon-btn{display:none;background:rgba(255,255,255,.1);border:0;color:#fff;font-size:17px;width:40px;height:40px;border-radius:10px;cursor:pointer;place-items:center}
.icon-btn:hover{background:rgba(255,255,255,.18)}

/* ---------- Mobile category drawer ----------
   Slide-in panel listing every main category, each expandable to its
   subcategories via the + button. */
.navdrawer{position:fixed;top:0;left:-320px;width:300px;max-width:82vw;height:100%;background:#fff;z-index:110;
  box-shadow:var(--shadow-lg);transition:left .25s ease;display:flex;flex-direction:column;overflow-y:auto;
  -webkit-overflow-scrolling:touch}
.navdrawer.open{left:0}
.navdrawer-overlay{position:fixed;inset:0;background:rgba(6,20,40,.5);opacity:0;visibility:hidden;transition:.25s;z-index:105}
.navdrawer-overlay.show{opacity:1;visibility:visible}
.nd-list{padding-bottom:40px}
.nd-row{display:flex;align-items:center;border-bottom:1px solid var(--line)}
.nd-name{flex:1;padding:17px 18px;font-size:15.5px;font-weight:500;color:var(--ink)}
.nd-row.active .nd-name,.nd-row.open .nd-name{color:var(--cta)}
.nd-plus{width:56px;align-self:stretch;background:none;border:0;border-left:1px solid var(--line);
  color:var(--muted);font-size:22px;font-weight:300;line-height:1;cursor:pointer}
.nd-plus:hover{color:var(--accent)}
.nd-subs{display:none;background:var(--bg);border-bottom:1px solid var(--line)}
.nd-subs.open{display:block}
.nd-subs a{display:block;padding:12px 18px 12px 32px;font-size:14px;color:var(--muted);border-bottom:1px solid var(--line)}
.nd-subs a:last-child{border-bottom:0}
.nd-subs a:hover{color:var(--accent)}
.nd-subs .nd-all{color:var(--accent);font-weight:600}
/* The drawer is mobile-only; on desktop the category bar does this job. */
@media(min-width:1024px){
  .navdrawer,.navdrawer-overlay{display:none}
}

/* ---------- Icon sizing + footer contact labels ---------- */
.cart-btn svg,.icon-btn svg,.menu-toggle svg,.searchbar button svg{flex-shrink:0}
.searchbar button{display:inline-flex;align-items:center;justify-content:center}
.footer .contact li{display:flex;gap:10px;align-items:baseline}
.footer .contact .ct-l{flex:0 0 74px;font-size:11.5px;text-transform:uppercase;letter-spacing:.5px;opacity:.6}
.wa-float{display:grid;place-items:center}
.empty .big{display:none}

/* The base .icon-btn{display:none} is declared after the responsive block,
   so the mobile search toggle needs to win on specificity + source order. */
@media(max-width:1023px){
  .icon-btn.search-toggle{display:grid}
}
