/* ============================================================
   Printer Direct — storefront theme  ·  "Deep Ink + Coral"
   Ink Navy #0E3552 primary (chrome, brand) · Coral #FF5A3C CTA
   · Cyan link accent · CMYK micro-accents on the finder.
   Distinctive, premium, unmistakably a printing brand.
   Var names keep the old --green/--orange keys so every rule
   reskins from here; the VALUES are the new palette.
   ============================================================ */
:root {
  /* primary = ink navy (chrome, buttons, active, brand) */
  --green: #0e3552; --green-dark: #0b2b45; --green-darker: #082234; --green-50: #eaf0f5;
  /* accent / CTA = coral */
  --orange: #ff5a3c; --orange-dark: #e8462a; --orange-50: #fff0ec;
  /* interactive / info = cyan-blue; CMYK micro-accents */
  --blue: #0e7fbf; --red: #e5484d; --emerald: #17a673;
  --c: #00a9e0; --m: #ec1c8c; --y: #f6b40a;
  --ink: #14304a; --slate-700: #34506a; --muted: #5b6b7b; --faint: #93a3b3;
  --line: #e2e8ee; --line-2: #cdd7e0;
  --bg: #f4f7fa; --card: #ffffff; --footer: #0b2437; --footer-2: #071a29;
  --shadow-sm: 0 1px 2px rgba(14,53,82,.07);
  --shadow: 0 8px 26px -10px rgba(14,53,82,.28);
  --font: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --head: "Plus Jakarta Sans", var(--font);
  --mono: "JetBrains Mono", ui-monospace, Menlo, Consolas, monospace;
  /* back-compat aliases so older class names keep working */
  --teal: var(--green); --teal-dark: var(--green-dark); --teal-50: var(--green-50);
  --amber: var(--orange); --amber-dark: var(--orange-dark); --navy: var(--footer); --navy-dark: var(--footer-2);
  --slate-600: #4b5563; --acc: #7fb2d6;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font); font-size: 15px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--head); font-weight: 700; letter-spacing: -0.01em; line-height: 1.15; margin: 0; color: var(--ink); }
p { margin: 0; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--orange); }
img, svg { max-width: 100%; display: block; }
.ico { flex: none; }
.visually-hidden, .skip:not(:focus) { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: fixed; top: .5rem; left: .5rem; z-index: 100; background: var(--green); color: #fff; padding: .6rem 1rem; border-radius: 4px; }

/* Full-width container */
.container-store { width: 100%; margin: 0 auto; padding: 0 20px; max-width: 1600px; }
@media (min-width: 1700px) { .container-store { max-width: 1680px; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; font-family: var(--head); font-weight: 700; font-size: .92rem; padding: .72rem 1.25rem; border: 2px solid transparent; border-radius: 5px; cursor: pointer; transition: background .15s, border-color .15s, color .15s; white-space: nowrap; }
.btn-green, .btn-teal { background: var(--green); color: #fff; }
.btn-green:hover, .btn-teal:hover { background: var(--green-dark); color: #fff; }
.btn-orange, .btn-amber { background: var(--orange); color: #fff; }
.btn-orange:hover, .btn-amber:hover { background: var(--orange-dark); color: #fff; }
.btn-white { background: #fff; color: var(--green-dark); }
.btn-white:hover { background: #f3f7ee; color: var(--green-darker); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost-light:hover { background: rgba(255,255,255,.14); color: #fff; }
.btn-ghost-dark { background: #fff; color: var(--slate-700); border-color: var(--line-2); }
.btn-ghost-dark:hover { border-color: var(--green); color: var(--green-dark); }
.btn-block { width: 100%; }

/* Badges */
.badge { display: inline-flex; align-items: center; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; padding: .18rem .4rem; border-radius: 3px; color: #fff; }
.badge-sale { background: var(--red); }
.badge-staff { background: var(--orange); }
.badge-featured, .badge-new { background: var(--green); }

/* ---------------- Header ---------------- */
.site-head { position: sticky; top: 0; z-index: 40; box-shadow: 0 2px 6px rgba(20,30,40,.06); }
.utilbar { background: var(--green-dark); color: rgba(255,255,255,.92); font-size: 12px; }
.utilbar-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .35rem 20px; }
.ub-left, .ub-right { display: flex; align-items: center; gap: .7rem; }
.utilbar a { color: #fff; display: inline-flex; align-items: center; gap: .3rem; }
.utilbar a:hover { color: #fff; text-decoration: underline; }
.ub-sep { width: 1px; height: 12px; background: rgba(255,255,255,.35); }
.ub-ship { display: inline-flex; align-items: center; gap: .3rem; font-weight: 700; }
.ub-nzd { font-weight: 600; }
@media (max-width: 720px) { .ub-hide-sm { display: none; } .ub-right { display: none; } }

.mainhead { background: #fff; border-bottom: 1px solid var(--line); }
.mainhead-in { display: flex; align-items: center; gap: 1.25rem; padding: .85rem 20px; }
.brand { flex: none; display: flex; align-items: center; }
.brand img { height: 40px; width: auto; }
.hsearch { flex: 1; display: flex; align-items: stretch; background: #fff; border: 2px solid var(--green); border-radius: 6px; overflow: hidden; min-width: 0; max-width: 720px; }
.hsearch input { flex: 1; border: 0; padding: .7rem .95rem; font: inherit; outline: none; min-width: 0; }
.hsearch button { flex: none; display: inline-flex; align-items: center; gap: .4rem; background: var(--green); color: #fff; border: 0; padding: 0 1.25rem; font-family: var(--head); font-weight: 700; cursor: pointer; }
.hsearch button:hover { background: var(--green-dark); }
.head-actions { display: flex; align-items: center; gap: .5rem; flex: none; }
.ha-btn, .ha-cart { display: inline-flex; align-items: center; gap: .45rem; height: 44px; padding: 0 .9rem; border-radius: 5px; font-family: var(--head); font-weight: 700; font-size: .85rem; }
.ha-btn { color: var(--slate-700); }
.ha-btn:hover { color: var(--green-dark); background: var(--green-50); }
.ha-cart { background: var(--orange); color: #fff; position: relative; }
.ha-cart:hover { background: var(--orange-dark); color: #fff; }
.cart-count { background: #fff; color: var(--orange-dark); font-size: 11px; font-weight: 800; border-radius: 4px; min-width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; padding: 0 .25rem; }
.ha-burger { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; padding: .4rem; }
@media (max-width: 960px) {
  .ha-btn span, .ha-cart span:not(.cart-count) { display: none; }
  .ha-hide-sm { display: none; }
  .ha-burger { display: inline-flex; }
  .hsearch button span { display: none; }
  .brand img { height: 34px; }
}

/* Department nav */
.deptnav { background: #fff; border-bottom: 2px solid var(--green); }
.deptnav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; flex-wrap: wrap; }
.deptnav a { display: inline-flex; align-items: center; gap: .4rem; padding: .7rem .95rem; font-family: var(--head); font-weight: 700; font-size: .86rem; color: var(--slate-700); border-bottom: 3px solid transparent; }
.deptnav a:hover { color: var(--green-dark); }
.nav-item { position: relative; }
.nav-item:hover > a { color: var(--green-dark); border-bottom-color: var(--green); }
.nav-all a { background: var(--green); color: #fff; }
.nav-all a:hover { background: var(--green-dark); color: #fff; }
.nav-spacer { flex: 1; }
.nav-deal a { color: var(--orange-dark); }
.nav-drop { position: absolute; top: 100%; left: 0; min-width: 210px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(4px); transition: .12s; z-index: 30; }
.nav-item:hover .nav-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop ul { flex-direction: column; }
.nav-drop a { padding: .55rem .95rem; border: 0; font-weight: 500; color: var(--slate-700); display: block; }
.nav-drop a:hover { background: var(--green-50); color: var(--green-dark); }
@media (max-width: 1100px) { .deptnav { display: none; } }

.mobilenav { display: none; flex-direction: column; background: #fff; border-bottom: 1px solid var(--line); padding: .8rem 20px 1.2rem; }
.mobilenav.open { display: flex; }
.mobilenav > a { display: flex; align-items: center; gap: .6rem; padding: .7rem .1rem; font-family: var(--head); font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--line); }
.msearch { display: flex; align-items: center; background: var(--bg); border: 1px solid var(--line); border-radius: 5px; padding: 0 .7rem; margin-bottom: .5rem; }
.msearch input { flex: 1; border: 0; background: transparent; padding: .65rem 0; font: inherit; outline: none; }

/* ---------------- Finder hero (flat retail band) ---------------- */
.finder-hero { background: var(--bg); border-bottom: 1px solid var(--line); }
.finder-hero-in { display: grid; grid-template-columns: 1.65fr 1fr; gap: 1rem; padding: 1.25rem 20px 1.5rem; align-items: stretch; }
.finder-box { background: #fff; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; }
.finder-head { display: flex; align-items: center; gap: .5rem; background: var(--green); color: #fff; padding: .7rem 1rem; }
.finder-head h1 { color: #fff; font-size: 1.1rem; margin: 0; font-weight: 700; }
.finder-body { padding: 1.1rem 1rem; }
.finder-form { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: .6rem; align-items: end; }
.fstep label { display: block; font-family: var(--head); font-weight: 700; font-size: .74rem; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); margin-bottom: .3rem; }
.fstep select { width: 100%; border: 1px solid var(--line-2); border-radius: 3px; padding: .65rem .7rem; font: inherit; background: #fff; color: var(--ink); }
.fstep select:focus { outline: none; border-color: var(--green); }
.fstep select:disabled { background: #f6f7f8; color: var(--faint); }
.finder-go { height: 42px; }
.finder-alt { font-size: .84rem; color: var(--muted); margin-top: .85rem; }
.promo-block { background: var(--green-dark); color: #fff; border-radius: 4px; padding: 1.25rem 1.4rem; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: .35rem; }
.promo-eyebrow { font-family: var(--head); font-weight: 800; font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; color: #bfe39a; }
.promo-block strong { font-family: var(--head); font-weight: 800; font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.15; }
.promo-block p { color: rgba(255,255,255,.9); font-size: .9rem; margin-bottom: .5rem; }
@media (max-width: 960px) {
  .finder-hero-in { grid-template-columns: 1fr; }
  .finder-form { grid-template-columns: 1fr 1fr; }
  .finder-go { grid-column: 1 / -1; }
}
@media (max-width: 560px) { .finder-form { grid-template-columns: 1fr; } }

/* ---------------- Trust bar ---------------- */
.trustbar { background: #fff; border-bottom: 1px solid var(--line); }
.trustbar-in { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.1rem 20px; }
.tb-cell { display: flex; align-items: center; gap: .7rem; justify-content: center; }
.tb-ico2 { flex: none; color: var(--green); display: grid; place-items: center; }
.tb-cell strong { display: block; font-family: var(--head); font-size: .92rem; }
.tb-cell span { font-size: .78rem; color: var(--muted); }
@media (max-width: 860px) { .trustbar-in { grid-template-columns: 1fr 1fr; } .tb-cell { justify-content: flex-start; } }
@media (max-width: 480px) { .trustbar-in { grid-template-columns: 1fr; } }

/* ---------------- Sections ---------------- */
.section-store { padding: 2rem 0; }
.bg-white { background: #fff; }
.section-divider { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-title { font-size: clamp(1.35rem, 2.4vw, 1.7rem); margin-bottom: 1.25rem; }
.sec-title-center { text-align: center; }

/* Shop by category */
.cat-tiles { display: grid; grid-template-columns: repeat(8, 1fr); gap: .6rem; }
.cat-tile { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .55rem; background: #fff; border: 1px solid var(--line); border-radius: 3px; padding: 1.1rem .6rem; font-family: var(--head); font-weight: 700; font-size: .82rem; color: var(--ink); transition: border-color .12s, background .12s; }
.cat-tile:hover { border-color: var(--green); background: #fafcf7; color: var(--green-dark); }
.cat-tile-ico { color: var(--green); display: grid; place-items: center; }
@media (max-width: 1100px) { .cat-tiles { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .cat-tiles { grid-template-columns: repeat(2, 1fr); } }

/* Shop by brand */
.brand-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: .8rem; }
.brand-card { display: grid; place-items: center; height: 76px; background: #fff; border: 1px solid var(--line); border-radius: 3px; transition: border-color .12s, background .12s; }
.brand-card:hover { border-color: var(--green); background: #fafcf7; }
.brand-name { font-family: var(--head); font-weight: 800; font-size: 1.05rem; color: var(--slate-700); letter-spacing: -0.01em; }
.brand-card:hover .brand-name { color: var(--green-dark); }
@media (max-width: 1000px) { .brand-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .brand-grid { grid-template-columns: repeat(2, 1fr); } }

/* Product rows/cards */
.rowhead { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.rowhead h2 { font-size: 1.4rem; }
.rowhead p { font-size: .85rem; color: var(--muted); margin-top: .15rem; }
.rowhead-link { display: inline-flex; align-items: center; gap: .3rem; font-family: var(--head); font-weight: 700; font-size: .88rem; color: var(--green-dark); flex: none; }
.rowhead-link:hover { text-decoration: underline; }
.prow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
@media (max-width: 1200px) { .prow { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px) { .prow { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .prow { grid-template-columns: repeat(2, 1fr); } }
.pcard { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 3px; overflow: hidden; transition: border-color .12s, box-shadow .12s; }
.pcard:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.pcard-top { position: relative; display: block; }
.pcard-badges { position: absolute; top: .5rem; left: .5rem; display: flex; gap: .3rem; z-index: 2; }
.pcard-img { position: relative; height: 170px; background: #fff; display: grid; place-items: center; border-bottom: 1px solid var(--line); }
.pcard-glyph { color: #d3d8dd; }
.pcard-brandtag { position: absolute; bottom: .5rem; right: .6rem; font-family: var(--head); font-weight: 800; font-size: .72rem; color: var(--faint); }
.pcard-body { display: flex; flex-direction: column; gap: .3rem; padding: .85rem; flex: 1; }
.pcard-brand { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.pcard-name { font-size: .86rem; font-weight: 600; color: var(--ink); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.3em; }
.pcard-name:hover { color: var(--green-dark); }
.pcard-sku { font-family: var(--mono); font-size: .68rem; color: var(--faint); }
.pcard-price-row { display: flex; align-items: baseline; gap: .5rem; margin-top: .2rem; }
.pcard-price { font-family: var(--head); font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.pcard-was { font-size: .78rem; color: var(--faint); text-decoration: line-through; }
.pcard-save { font-size: .72rem; font-weight: 800; color: var(--red); }
.pcard-cta { margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: .4rem; background: var(--orange); color: #fff; border: 0; border-radius: 5px; padding: .6rem; font-family: var(--head); font-weight: 700; font-size: .84rem; cursor: pointer; transition: background .15s; }
.pcard-cta:hover { background: var(--orange-dark); }

/* Why shop */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.why-card { text-align: left; background: #fff; border: 1px solid var(--line); border-radius: 3px; padding: 1.2rem; }
.why-ico { color: var(--green); margin-bottom: .6rem; }
.why-card h3 { font-size: 1rem; margin-bottom: .3rem; }
.why-card p { font-size: .86rem; color: var(--muted); }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }

/* Newsletter */
.newsletter { background: var(--green-dark); color: #fff; }
.nl-in { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.75rem 20px; flex-wrap: wrap; }
.newsletter h2 { color: #fff; font-size: 1.35rem; }
.newsletter p { color: rgba(255,255,255,.85); font-size: .9rem; }
.nl-form { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.nl-form input { border: 0; border-radius: 5px; padding: .7rem .9rem; font: inherit; min-width: 260px; }
.form-status { font-size: .82rem; color: #d9f0c4; width: 100%; }
.form-status.err { color: #fecaca; }

/* SEO outro */
.seo-outro { max-width: 1100px; }
.seo-outro h2 { font-size: 1.35rem; margin-bottom: .8rem; }
.seo-outro p { color: var(--muted); margin-bottom: .9rem; line-height: 1.7; }

/* FAQ */
.faq-in { max-width: 1000px; margin: 0 auto; }
.faq-head { margin-bottom: 1.1rem; }
.faq-head h2 { font-size: 1.4rem; }
.faq { border: 1px solid var(--line); border-radius: 6px; margin-bottom: .6rem; background: #fff; overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.1rem; font-family: var(--head); font-weight: 700; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq-chev { color: var(--faint); transition: transform .2s; flex: none; }
.faq[open] .faq-chev { transform: rotate(180deg); color: var(--green); }
.faq-body { padding: 0 1.1rem 1.1rem; }
.faq-body p { color: var(--muted); font-size: .92rem; }

/* Error page */
.error-page { max-width: 620px; margin: 2rem auto; text-align: center; }
.err-code { font-family: var(--head); font-weight: 800; font-size: 3rem; color: var(--green); }
.error-page h1 { font-size: 1.9rem; margin-bottom: .6rem; }
.error-page > p { color: var(--muted); margin-bottom: 1.2rem; }
.err-search { display: flex; max-width: 420px; margin: 0 auto 1.2rem; background: #fff; border: 2px solid var(--green); border-radius: 5px; overflow: hidden; }
.err-search input { flex: 1; border: 0; padding: .7rem .9rem; font: inherit; outline: none; }
.err-search button { display: inline-flex; align-items: center; gap: .4rem; background: var(--green); color: #fff; border: 0; padding: 0 1.1rem; font-family: var(--head); font-weight: 700; cursor: pointer; }

/* ---------------- Auth + account ---------------- */
.crumb { font-size: .8rem; color: var(--muted); padding: 1rem 0 .5rem; }
.crumb a { color: var(--muted); } .crumb a:hover { color: var(--green-dark); }
.crumb span { color: var(--faint); margin: 0 .15rem; }
.authwrap { padding: 1rem 0 3rem; }
.authcard { max-width: 440px; margin: 1rem auto; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 2rem; box-shadow: var(--shadow-sm); }
.authcard h1 { font-size: 1.5rem; margin-bottom: .4rem; }
.auth-sub { color: var(--muted); font-size: .9rem; margin-bottom: 1.25rem; }
.authcard label { display: block; font-family: var(--head); font-weight: 700; font-size: .82rem; color: var(--slate-700); margin: .9rem 0 .35rem; }
.authcard input { width: 100%; border: 1.5px solid var(--line-2); border-radius: 5px; padding: .75rem .85rem; font: inherit; }
.authcard input:focus { outline: none; border-color: var(--green); }
.auth-row { display: flex; justify-content: flex-end; margin: .6rem 0 1rem; }
.auth-link { font-size: .84rem; font-weight: 700; }
.authcard .btn-block { margin-top: .3rem; }
.auth-alt { text-align: center; font-size: .88rem; color: var(--muted); margin-top: 1.25rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.auth-alt a { font-weight: 700; }
.auth-error { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; font-size: .86rem; padding: .7rem .9rem; border-radius: 5px; margin-bottom: 1rem; }
.auth-ok { background: var(--green-50); border: 1px solid #b7e08c; color: var(--green-darker); font-size: .86rem; padding: .7rem .9rem; border-radius: 5px; margin-bottom: 1rem; }
.account-page { padding-bottom: 2rem; }
.account-loading { padding: 3rem 1rem; text-align: center; color: var(--muted); }
.account-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.account-head h1 { font-size: 1.6rem; }
.account-hello { color: var(--muted); font-size: .9rem; margin-top: .2rem; }
.account-status { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; font-size: .88rem; padding: .8rem 1rem; border-radius: 6px; margin-bottom: 1.25rem; }
.account-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; }
.account-tile { display: flex; align-items: center; gap: .8rem; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 1.1rem; font-family: var(--head); font-weight: 700; color: var(--ink); transition: border-color .15s, box-shadow .15s; }
.account-tile:hover { border-color: var(--green); box-shadow: var(--shadow-sm); color: var(--green-dark); }
.account-ico { flex: none; width: 42px; height: 42px; border-radius: 8px; background: var(--green-50); color: var(--green-dark); display: grid; place-items: center; }
.account-arrow { margin-left: auto; color: var(--faint); }
@media (max-width: 900px) { .account-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .account-grid { grid-template-columns: 1fr; } }
.cart-page h1 { font-size: 1.6rem; margin-bottom: 1.25rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; background: #fff; border: 1px solid var(--line); border-radius: 8px; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.cart-empty-ico { color: var(--line-2); }
.cart-empty p { color: var(--muted); }

/* ---------------- Footer ---------------- */
.site-foot { background: var(--footer); color: #cbd2d9; }
.foot-grid { display: grid; grid-template-columns: 2.2fr 1.3fr 1.3fr 1.3fr 1.3fr 1.1fr; gap: 1.5rem; padding: 3rem 20px 2rem; max-width: 1600px; margin: 0 auto; }
.fbrand img { height: 38px; width: auto; margin-bottom: 1rem; }
.fbrand p { color: #9aa6b1; font-size: .88rem; margin-bottom: 1.1rem; max-width: 30ch; }
.fcontact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.fcontact li { display: flex; align-items: flex-start; gap: .55rem; font-size: .85rem; color: #cbd2d9; }
.fcontact .ico { color: var(--acc); margin-top: 2px; }
.fcontact a { color: #cbd2d9; } .fcontact a:hover { color: #fff; }
.fcol h3 { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #fff; border-left: 3px solid var(--orange); padding-left: .6rem; margin-bottom: 1rem; }
.fcol ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.fcol a { color: #cbd2d9; font-size: .85rem; } .fcol a:hover { color: #fff; }
@media (max-width: 1100px) { .foot-grid { grid-template-columns: 1fr 1fr 1fr; } .fbrand { grid-column: 1 / -1; } }
@media (max-width: 640px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-strip { background: var(--footer-2); border-top: 1px solid rgba(255,255,255,.08); }
.foot-strip-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 20px; flex-wrap: wrap; max-width: 1600px; margin: 0 auto; }
.fs-left { display: flex; align-items: center; gap: .9rem; }
.fs-region { background: var(--green); color: #fff; font-weight: 700; font-size: .82rem; padding: .35rem .8rem; border-radius: 4px; }
.fs-sep { width: 1px; height: 18px; background: rgba(255,255,255,.2); }
.fs-price { font-family: var(--mono); font-size: .82rem; color: #cbd2d9; }
.fs-right { display: flex; align-items: center; gap: .7rem; }
.fs-accept { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: #9aa6b1; }
.paybadges { display: flex; align-items: center; gap: .4rem; }
.pay { height: 26px; min-width: 40px; background: #fff; border-radius: 3px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 11px; }
.pay-visa { color: #1A1F71; font-style: italic; }
.pay-amex { color: #006FCF; font-size: 10px; }
.pay-mc { gap: 0; }
.pay-mc i { width: 15px; height: 15px; border-radius: 50%; display: block; }
.pay-mc i:first-child { background: #EB001B; }
.pay-mc i:last-child { background: #F79E1B; margin-left: -6px; mix-blend-mode: multiply; }
.pay-ap { background: #B2FCE4; color: #000; text-transform: lowercase; font-weight: 700; padding: 0 .5rem; }
.foot-legal { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 20px; font-size: .78rem; color: #9aa6b1; flex-wrap: wrap; max-width: 1600px; margin: 0 auto; }
.foot-legal-links { display: flex; gap: 1.1rem; }
.foot-legal-links a { color: #9aa6b1; } .foot-legal-links a:hover { color: #fff; }
.foot-disclaimer { padding: 0 20px 1.75rem; max-width: 1600px; margin: 0 auto; }
.foot-disclaimer p { font-size: 11px; color: #7a8791; text-align: center; max-width: 60ch; margin: 0 auto; line-height: 1.6; }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }

/* ============================================================
   Catalogue: product image, listings, product detail, cart,
   checkout, search, pagination  (appended)
   ============================================================ */

/* Product card image + placeholder */
.pcard-img img { max-width: 88%; max-height: 88%; object-fit: contain; mix-blend-mode: multiply; }
.pcard-ph { display: none; flex-direction: column; align-items: center; gap: .35rem; color: #cbd2d9; }
.pcard-ph em { font-family: var(--head); font-weight: 800; font-size: .72rem; color: var(--faint); font-style: normal; }
.pcard-img.noimg img { display: none; }
.pcard-img.noimg .pcard-ph { display: flex; }
.pcard-gst { font-size: .68rem; color: var(--muted); }

/* Homepage category tiles with imagery */
.cat-tile-img { width: 100%; aspect-ratio: 4/3; display: grid; place-items: center; overflow: hidden; margin-bottom: .2rem; }
.cat-tile-img img { max-width: 84%; max-height: 84%; object-fit: contain; mix-blend-mode: multiply; }
.cat-tile-ph { color: var(--green); display: grid; place-items: center; }
.cat-tile-count { font-size: .7rem; font-weight: 600; color: var(--muted); }
.cat-tiles-lg { grid-template-columns: repeat(5, 1fr); gap: .8rem; }
@media (max-width: 1100px) { .cat-tiles-lg { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .cat-tiles-lg { grid-template-columns: repeat(2, 1fr); } }
.cat-cols { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.4rem; margin-top: 2rem; }
.cat-col h2 { font-size: 1rem; margin-bottom: .5rem; padding-bottom: .4rem; border-bottom: 2px solid var(--green); }
.cat-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .35rem; }
.cat-col a { color: var(--slate-700); font-size: .88rem; }
.cat-col a:hover { color: var(--green-dark); }
.cat-col em { color: var(--faint); font-style: normal; font-size: .78rem; }
@media (max-width: 1000px) { .cat-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cat-cols { grid-template-columns: 1fr; } }

/* Brand logos */
.brand-logo { max-width: 74%; max-height: 42px; object-fit: contain; mix-blend-mode: multiply; }
.brand-card-lg { height: auto; flex-direction: column; gap: .6rem; padding: 1.4rem 1rem; }
.brand-card-count { font-size: .72rem; color: var(--muted); font-weight: 600; }
.brand-grid-lg { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1000px) { .brand-grid-lg { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .brand-grid-lg { grid-template-columns: repeat(2, 1fr); } }

/* Info / content pages */
.info-page { padding: 1.4rem 0 2.5rem; }
.info-head { margin: .6rem 0 1.4rem; }
.info-head h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.lede-p { font-size: 1.02rem; color: var(--muted); max-width: 70ch; margin-top: .5rem; }
.info-body { max-width: 80ch; display: flex; flex-direction: column; gap: 1.3rem; }
.info-block h2 { font-size: 1.15rem; margin-bottom: .35rem; }
.info-block p { color: var(--slate-700); }
.info-cta { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: .6rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 340px 1fr; gap: 2rem; align-items: start; }
.contact-list { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.contact-list li { display: flex; align-items: center; gap: .6rem; color: var(--slate-700); }
.contact-list svg { color: var(--green); flex: none; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 1.4rem; display: flex; flex-direction: column; gap: .9rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.contact-form label, .checkout-form label { display: flex; flex-direction: column; gap: .3rem; font-size: .82rem; font-weight: 600; color: var(--slate-700); }
.contact-form input, .contact-form textarea, .checkout-form input, .checkout-form textarea { font: inherit; padding: .6rem .7rem; border: 1px solid var(--line-2); border-radius: 5px; background: #fff; }
.contact-form input:focus, .contact-form textarea:focus, .checkout-form input:focus, .checkout-form textarea:focus { outline: 2px solid var(--green); border-color: var(--green); }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } .cf-row { grid-template-columns: 1fr; } }

/* Listing pages */
.listing { padding: 1.2rem 0 2.5rem; }
.listing-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin: .6rem 0 1.2rem; flex-wrap: wrap; }
.listing-head h1 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.listing-intro { color: var(--muted); max-width: 75ch; margin-top: .45rem; }
.listing-count { font-family: var(--mono); font-size: .8rem; color: var(--muted); white-space: nowrap; }
.listing-head-brand { align-items: center; }
.brand-hero-logo { max-height: 46px; max-width: 180px; object-fit: contain; margin-bottom: .3rem; }
.subcats { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .7rem; margin-bottom: 1.6rem; }
.subcat { display: flex; flex-direction: column; gap: .2rem; background: #fff; border: 1px solid var(--line); border-radius: 5px; padding: .9rem 1rem; }
.subcat:hover { border-color: var(--green); background: #fafcf7; }
.subcat span { font-family: var(--head); font-weight: 700; color: var(--ink); }
.subcat:hover span { color: var(--green-dark); }
.subcat small { color: var(--muted); font-size: .78rem; }
.listing-brands { margin: 0 0 1.6rem; }
.listing-brands .sec-title { font-size: 1rem; margin-bottom: .6rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { background: #fff; border: 1px solid var(--line-2); border-radius: 999px; padding: .4rem .9rem; font-size: .82rem; font-weight: 600; color: var(--slate-700); }
.chip:hover { border-color: var(--green); color: var(--green-dark); background: #fafcf7; }
.listing-seo { margin-top: 2rem; max-width: 80ch; display: flex; flex-direction: column; gap: .9rem; color: var(--slate-700); }
.listing-seo p { color: var(--slate-700); }
.empty-cat { text-align: center; background: #fff; border: 1px dashed var(--line-2); border-radius: 8px; padding: 2.5rem 1.5rem; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.empty-ico { color: var(--green); }
.empty-cta { display: flex; gap: .6rem; margin-top: .6rem; flex-wrap: wrap; justify-content: center; }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 2rem 0 .5rem; flex-wrap: wrap; }
.pg-nums { display: flex; align-items: center; gap: .3rem; }
.pg-nums a, .pg-cur, .pg-gap { min-width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 5px; font-weight: 700; font-size: .88rem; }
.pg-nums a { background: #fff; border: 1px solid var(--line-2); color: var(--slate-700); }
.pg-nums a:hover { border-color: var(--green); color: var(--green-dark); }
.pg-cur { background: var(--green); color: #fff; }
.pg-gap { color: var(--faint); }
.pg-prev, .pg-next { display: inline-flex; align-items: center; gap: .3rem; font-weight: 700; font-size: .86rem; color: var(--slate-700); }
.pg-prev:hover, .pg-next:hover { color: var(--green-dark); }
.pg-off { opacity: .35; pointer-events: none; }
.pg-flip { transform: rotate(180deg); }

/* Product detail */
.pd { padding: 1.2rem 0 2.5rem; }
.pd-grid { display: grid; grid-template-columns: minmax(0, 520px) 1fr; gap: 2.5rem; margin: 1rem 0 2rem; align-items: start; }
.pd-media { background: #fff; border: 1px solid var(--line); border-radius: 8px; aspect-ratio: 1/1; display: grid; place-items: center; padding: 2rem; position: sticky; top: 1rem; }
.pd-media img { max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.pd-ph { color: #d3d8dd; }
.pd-info { display: flex; flex-direction: column; gap: .5rem; }
.pd-brandlogo { align-self: flex-start; max-height: 28px; object-fit: contain; margin-bottom: .2rem; }
.pd-info h1 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.2; }
.pd-code { font-size: .86rem; color: var(--muted); }
.pd-code .mono { font-family: var(--mono); color: var(--ink); font-weight: 600; }
.pd-price { display: flex; align-items: baseline; gap: .5rem; margin: .5rem 0; }
.pd-price-val { font-family: var(--head); font-weight: 800; font-size: 2rem; color: var(--ink); }
.pd-gst { font-size: .85rem; color: var(--muted); }
.pd-buy { display: flex; gap: .7rem; align-items: stretch; margin: .3rem 0 .6rem; flex-wrap: wrap; }
.qty { display: inline-flex; align-items: stretch; border: 1px solid var(--line-2); border-radius: 6px; overflow: hidden; }
.qty button { width: 42px; border: 0; background: #f4f5f7; font-size: 1.2rem; cursor: pointer; color: var(--slate-700); }
.qty button:hover { background: var(--green-50); color: var(--green-dark); }
.qty input { width: 54px; border: 0; text-align: center; font: inherit; font-weight: 700; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pd-add { flex: 1; min-width: 200px; font-size: 1rem; padding: .8rem 1.4rem; }
.pd-trust { list-style: none; margin: .6rem 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; }
.pd-trust li { display: flex; align-items: center; gap: .4rem; font-size: .82rem; color: var(--slate-700); font-weight: 600; }
.pd-trust svg { color: var(--green); }
.pd-install { display: flex; gap: .7rem; background: var(--green-50); border: 1px solid #d7ead0; border-radius: 8px; padding: .9rem 1rem; margin-top: .5rem; }
.pd-install svg { color: var(--green-dark); flex: none; margin-top: .1rem; }
.pd-install strong { display: block; font-size: .9rem; color: var(--ink); }
.pd-install span { font-size: .82rem; color: var(--slate-700); }
.pd-compat { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 1.4rem; margin-bottom: 1.5rem; }
.pd-compat h2 { font-size: 1.15rem; margin-bottom: .5rem; }
.pd-compat > p { color: var(--muted); font-size: .88rem; margin-bottom: .8rem; }
.compat-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .35rem .8rem; }
.compat-list li { display: flex; align-items: center; gap: .4rem; font-size: .84rem; color: var(--slate-700); font-family: var(--mono); }
.compat-list svg { color: var(--faint); flex: none; }
.pd-specs { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 1.4rem; }
.pd-specs h2 { font-size: 1.15rem; margin-bottom: .7rem; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { text-align: left; padding: .6rem .8rem; border-bottom: 1px solid var(--line); font-size: .88rem; }
.spec-table th { width: 200px; color: var(--muted); font-weight: 600; }
.spec-table td { color: var(--ink); }
@media (max-width: 900px) { .pd-grid { grid-template-columns: 1fr; gap: 1.5rem; } .pd-media { position: static; max-width: 420px; } }

/* Cart */
.cart-page { padding: 1.2rem 0 2.5rem; }
.cart-page h1 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: .6rem 0 1.2rem; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 1.6rem; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: .6rem; }
.cart-item { display: grid; grid-template-columns: 80px 1fr auto auto auto; align-items: center; gap: 1rem; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: .8rem 1rem; }
.cart-item-img { width: 80px; height: 80px; display: grid; place-items: center; }
.cart-item-img img { max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.cart-item-name { font-weight: 600; color: var(--ink); }
.cart-item-name:hover { color: var(--green-dark); }
.cart-item-sku { display: block; font-family: var(--mono); font-size: .72rem; color: var(--faint); margin-top: .2rem; }
.cart-item-qty { display: inline-flex; border: 1px solid var(--line-2); border-radius: 6px; overflow: hidden; }
.cart-item-qty button { width: 34px; border: 0; background: #f4f5f7; cursor: pointer; font-size: 1.1rem; color: var(--slate-700); }
.cart-item-qty button:hover { background: var(--green-50); }
.cart-item-qty input { width: 46px; border: 0; text-align: center; font: inherit; font-weight: 700; -moz-appearance: textfield; }
.cart-item-qty input::-webkit-outer-spin-button, .cart-item-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cart-item-price { font-family: var(--head); font-weight: 800; }
.cart-item-remove { border: 0; background: none; font-size: 1.4rem; line-height: 1; color: var(--faint); cursor: pointer; }
.cart-item-remove:hover { color: var(--red); }
.cart-summary { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 1.3rem; position: sticky; top: 1rem; }
.cart-summary h2, .checkout-summary h2 { font-size: 1.15rem; margin-bottom: 1rem; }
.cs-row { display: flex; justify-content: space-between; padding: .45rem 0; font-size: .9rem; color: var(--slate-700); }
.cs-note { font-size: .8rem; color: var(--green-dark); background: var(--green-50); border-radius: 5px; padding: .5rem .7rem; margin: .4rem 0; }
.cs-total { display: flex; justify-content: space-between; align-items: center; padding: .8rem 0; margin-top: .3rem; border-top: 2px solid var(--line); font-family: var(--head); font-weight: 800; font-size: 1.2rem; }
.cart-summary .btn { margin-top: .6rem; }
.btn-block { width: 100%; }
.cart-empty { text-align: center; padding: 3rem 1.5rem; display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.cart-empty-ico { color: #d3d8dd; }
@media (max-width: 800px) { .cart-layout { grid-template-columns: 1fr; } .cart-item { grid-template-columns: 60px 1fr auto; grid-template-areas: 'img info remove' 'img qty price'; } .cart-item-img { grid-area: img; } .cart-item-info { grid-area: info; } .cart-item-qty { grid-area: qty; } .cart-item-price { grid-area: price; } .cart-item-remove { grid-area: remove; } }

/* Checkout */
.checkout { padding: 1.2rem 0 2.5rem; }
.checkout h1 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: .6rem 0 1.2rem; }
.checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 1.6rem; align-items: start; }
.checkout-form { display: flex; flex-direction: column; gap: 1.2rem; }
.checkout-form fieldset { border: 1px solid var(--line); border-radius: 8px; padding: 1.2rem; margin: 0; background: #fff; display: flex; flex-direction: column; gap: .9rem; }
.checkout-form legend { font-family: var(--head); font-weight: 700; padding: 0 .5rem; font-size: .95rem; }
.install-check { flex-direction: row !important; align-items: flex-start; gap: .7rem; cursor: pointer; font-weight: 400 !important; }
.install-check input { margin-top: .2rem; width: 20px; height: 20px; accent-color: var(--green); }
.install-check strong { color: var(--ink); }
.install-check em { color: var(--green-dark); font-style: normal; }
.install-opt { background: var(--green-50) !important; border-color: #d7ead0 !important; }
.checkout-note { font-size: .8rem; color: var(--muted); }
.checkout-summary { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 1.3rem; position: sticky; top: 1rem; }
.co-items { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.co-item { display: grid; grid-template-columns: 34px 1fr auto; gap: .5rem; font-size: .84rem; align-items: baseline; }
.co-q { font-family: var(--mono); color: var(--muted); }
.co-n { color: var(--slate-700); }
.co-p { font-weight: 700; white-space: nowrap; }
.co-item-install .co-n { color: var(--green-dark); }
.order-done { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 3rem 1.5rem; display: flex; flex-direction: column; align-items: center; gap: .6rem; grid-column: 1 / -1; }
.od-ico { width: 60px; height: 60px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: 2rem; }
.btn-lg { padding: .9rem 1.6rem; font-size: 1rem; }
@media (max-width: 800px) { .checkout-layout { grid-template-columns: 1fr; } }

/* Search results */
.search-results { margin: 1.2rem 0; min-height: 120px; }
.search-hint { color: var(--muted); }
.search-count { font-weight: 700; color: var(--slate-700); margin-bottom: 1rem; }

/* Toast */
.pd-toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); background: var(--ink); color: #fff; padding: .8rem 1.3rem; border-radius: 8px; font-weight: 600; font-size: .9rem; box-shadow: 0 8px 24px rgba(0,0,0,.25); opacity: 0; transition: opacity .25s, transform .25s; z-index: 200; max-width: 90vw; }
.pd-toast.show { opacity: 1; transform: translate(-50%, 0); }
.cart-count.has { background: var(--orange); color: #fff; }

/* ============================================================
   Redesign additions — palette v2 (Deep Ink + Coral)
   Promo strip · CMYK finder · brand shop · footer · product tabs
   ============================================================ */

/* Finder — full-width bar + CMYK step numbers */
.finder-box-full { max-width: none; }
.finder-form { position: relative; }
.fstep-num { width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-family: var(--head); font-weight: 800; font-size: .82rem; color: #fff; flex: none; align-self: center; }
.fstep-c0 { background: var(--c); } .fstep-c1 { background: var(--m); } .fstep-c2 { background: var(--y); color: #0e3552; }
@media (max-width: 760px) { .fstep-num { display: none; } }

/* Three-panel promo strip */
.promostrip { padding: 1.25rem 0 0; }
.promostrip-in { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.promo-panel { position: relative; overflow: hidden; border-radius: 12px; padding: 1.5rem 1.6rem; min-height: 168px; display: flex; flex-direction: column; align-items: flex-start; gap: .35rem; border: 1px solid transparent; transition: transform .15s, box-shadow .15s; }
.promo-panel:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.promo-navy { background: linear-gradient(135deg, #0e3552, #0a2a43); color: #fff; }
.promo-feature { background: linear-gradient(135deg, #ff5a3c, #ff7a44); color: #fff; }
.promo-light { background: #fff; border-color: var(--line); color: var(--ink); }
.promo-eyebrow { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; opacity: .9; }
.promo-light .promo-eyebrow { color: var(--orange); opacity: 1; }
.promo-badge { display: inline-flex; align-items: center; background: rgba(255,255,255,.22); color: #fff; font-family: var(--mono); font-weight: 700; font-size: .8rem; padding: .25rem .6rem; border-radius: 999px; }
.promo-title { font-family: var(--head); font-weight: 800; font-size: 1.5rem; line-height: 1.1; letter-spacing: -.02em; }
.promo-panel p { font-size: .9rem; opacity: .92; max-width: 34ch; }
.promo-light p { color: var(--muted); opacity: 1; }
.promo-link { margin-top: auto; display: inline-flex; align-items: center; gap: .35rem; font-family: var(--head); font-weight: 800; font-size: .9rem; }
.promo-light .promo-link { color: var(--green-dark); }
.promo-art { position: absolute; right: -12px; bottom: -14px; opacity: .16; pointer-events: none; }
.promo-light .promo-art { opacity: .07; color: var(--green); }
.promo-panel:hover { color: inherit; }
@media (max-width: 900px) { .promostrip-in { grid-template-columns: 1fr; } .promo-panel { min-height: 0; } }

/* Shop by brand — wordmark + typed sub-links */
.bshop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.bshop { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 1.1rem 1.2rem; transition: border-color .12s, box-shadow .12s; }
.bshop:hover { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.bshop-head { display: flex; align-items: center; height: 42px; margin-bottom: .7rem; padding-bottom: .7rem; border-bottom: 1px solid var(--line); }
.bshop-logo { max-height: 30px; max-width: 130px; object-fit: contain; object-position: left; mix-blend-mode: multiply; }
.bshop-word { font-family: var(--head); font-weight: 800; font-size: 1.2rem; color: var(--ink); letter-spacing: -.01em; }
.bshop-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .32rem; }
.bshop-links a { font-size: .86rem; color: var(--slate-700); display: inline-flex; align-items: center; }
.bshop-links a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); margin-right: .5rem; flex: none; }
.bshop-links a:hover { color: var(--orange); }
@media (max-width: 900px) { .bshop-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .bshop-grid { grid-template-columns: 1fr; } }

/* ---------------- New footer ---------------- */
.site-foot { background: var(--footer); color: #b7c4d0; margin-top: 3rem; border-top: 4px solid var(--orange); }
.foot-trust { border-bottom: 1px solid rgba(255,255,255,.08); }
.foot-trust-in { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.3rem 20px; max-width: 1600px; margin: 0 auto; }
.ft-cell { display: flex; align-items: center; gap: .7rem; }
.ft-ico { width: 42px; height: 42px; flex: none; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: var(--orange); }
.ft-cell strong { display: block; color: #fff; font-size: .9rem; }
.ft-cell span { font-size: .78rem; color: #8ea0af; }
.foot-main { display: grid; grid-template-columns: 320px 1fr; gap: 2.5rem; padding: 2.4rem 20px 2rem; max-width: 1600px; margin: 0 auto; }
.foot-logo { margin-bottom: .9rem; }
.foot-tag { font-size: .88rem; color: #9fb0be; max-width: 42ch; margin-bottom: 1rem; }
.fcontact { list-style: none; margin: 0 0 1rem; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.fcontact li { display: flex; align-items: center; gap: .55rem; font-size: .86rem; color: #b7c4d0; }
.fcontact svg { color: var(--orange); flex: none; }
.fcontact a { color: #b7c4d0; }
.fcontact a:hover { color: #fff; }
.foot-social { display: flex; gap: .6rem; }
.foot-social a { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #cdd8e1; transition: background .15s, color .15s; }
.foot-social a:hover { background: var(--orange); color: #fff; }
.foot-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.fcol h3 { color: #fff; font-size: .84rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .9rem; }
.fcol ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.fcol a { color: #a9b8c5; font-size: .87rem; }
.fcol a:hover { color: #fff; }
.foot-pay { border-top: 1px solid rgba(255,255,255,.08); }
.foot-pay-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 20px; flex-wrap: wrap; max-width: 1600px; margin: 0 auto; }
.fp-left { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.fp-region { display: inline-flex; align-items: center; gap: .35rem; background: var(--orange); color: #fff; font-weight: 700; font-size: .8rem; padding: .32rem .75rem; border-radius: 6px; }
.fp-region svg { stroke: #fff; }
.fp-price { font-family: var(--mono); font-size: .8rem; color: #8ea0af; }
.fp-right { display: flex; align-items: center; gap: .7rem; }
.fp-accept { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: #8ea0af; }
.paybadges { display: flex; align-items: center; gap: .4rem; }
.pay { height: 26px; min-width: 40px; background: #fff; border-radius: 3px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 11px; }
.pay-visa { color: #1A1F71; font-style: italic; }
.pay-amex { color: #006FCF; font-size: 10px; }
.pay-mc { gap: 0; }
.pay-mc i { width: 15px; height: 15px; border-radius: 50%; display: block; }
.pay-mc i:first-child { background: #EB001B; }
.pay-mc i:last-child { background: #F79E1B; margin-left: -6px; mix-blend-mode: multiply; }
.pay-ap { background: #B2FCE4; color: #000; text-transform: lowercase; font-weight: 700; padding: 0 .5rem; }
.foot-bottom { background: var(--footer-2); }
.foot-bottom-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 20px; flex-wrap: wrap; max-width: 1600px; margin: 0 auto; }
.foot-bottom-in p { font-size: 11.5px; color: #7f8f9d; max-width: 90ch; line-height: 1.6; }
.foot-bottom-links { display: flex; gap: 1.1rem; }
.foot-bottom-links a { color: #9fb0be; font-size: 12px; }
.foot-bottom-links a:hover { color: #fff; }
@media (max-width: 900px) { .foot-main { grid-template-columns: 1fr; gap: 1.6rem; } .foot-cols { grid-template-columns: 1fr 1fr; } .foot-trust-in { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-cols { grid-template-columns: 1fr; } .foot-trust-in { grid-template-columns: 1fr; } }

/* ---------------- Product page: stock, tabs, related ---------------- */
.pd-stock { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 700; padding: .35rem .7rem; border-radius: 6px; width: fit-content; }
.pd-stock.in { color: var(--emerald); background: #e7f6ef; }
.pd-stock.out { color: #9a6a00; background: #fff5e0; }
.pd-tabs { margin: 2rem 0 1rem; }
.pd-tabnav { display: flex; gap: .25rem; border-bottom: 2px solid var(--line); overflow-x: auto; }
.pd-tab { border: 0; background: none; font-family: var(--head); font-weight: 700; font-size: .92rem; color: var(--muted); padding: .8rem 1.1rem; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; white-space: nowrap; }
.pd-tab:hover { color: var(--ink); }
.pd-tab.is-active { color: var(--green-dark); border-bottom-color: var(--orange); }
.pd-panels { background: #fff; border: 1px solid var(--line); border-top: 0; border-radius: 0 0 10px 10px; padding: 1.6rem; }
.pd-panel h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.pd-panel > p { color: var(--slate-700); max-width: 80ch; margin-bottom: 1rem; }
.pd-feat { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 1.4rem; }
.pd-feat li { display: flex; align-items: flex-start; gap: .5rem; font-size: .9rem; color: var(--slate-700); }
.pd-feat svg { color: var(--emerald); flex: none; margin-top: .15rem; }
.pd-two { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.pd-related { margin-top: 2.5rem; }
@media (max-width: 700px) { .pd-feat, .pd-two { grid-template-columns: 1fr; } }
