/* =========================================================================
   JD Uniforms — "Motion" design system
   ========================================================================= */
:root {
  --teal: #00808f;
  --teal-dark: #006a76;
  --teal-tint: #e3f0f1;
  --ink: #101518;
  --accent: #ffd233;
  --surface: #f3f4f3;
  --soft: #f7f8f7;
  --paper: #ffffff;
  --line: #e5e8e7;
  --muted: #6b7680;
  --card-radius: 24px;
  --btn-radius: 100px;
  --maxw: 1600px;
  --fdisp: 'Archivo', system-ui, sans-serif;
  --fbody: 'Space Grotesk', system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--fbody); line-height: 1.5; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--fdisp); margin: 0; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ============================ Buttons ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: var(--btn-radius); font-family: var(--fdisp);
  font-weight: 700; letter-spacing: .01em; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s;
}
.btn:active { transform: translateY(1px); }
.btn-md { padding: 12px 22px; font-size: 14px; }
.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn-full { width: 100%; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #000; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent:hover { filter: brightness(1.05); }
.btn-ghost { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.6); }
.btn-ghost-light:hover { background: #fff; color: var(--ink); }

/* ============================ Product image placeholder ============================ */
.pimg { position: relative; width: 100%; overflow: hidden; border-radius: inherit; }
.pimg-stripe { position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, #fff 0 1px, transparent 1px 13px); }
.pimg-glow { position: absolute; inset: 0; background: radial-gradient(120% 80% at 28% 18%, rgba(255,255,255,.22), transparent 60%); }
.pimg-mono { position: absolute; left: 14px; bottom: 13px; font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.pimg-mark { position: absolute; right: 14px; top: 12px; font-family: var(--fdisp); font-weight: 800; font-size: 14px; letter-spacing: -.02em; }

/* ============================ Color dots / swatches ============================ */
.cdots { display: flex; gap: 6px; align-items: center; }
.cdot { border-radius: 50%; border: 0; padding: 0; box-shadow: inset 0 0 0 1px rgba(0,0,0,.14); transition: transform .15s; }
.cdot:hover { transform: scale(1.18); }
.cdot.active { box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px var(--ink); }

/* ============================ Product card ============================ */
.pcard { display: flex; flex-direction: column; }
.pcard-media { position: relative; border-radius: var(--card-radius); overflow: hidden; background: var(--surface); cursor: pointer; }
.pcard-media .pimg { border-radius: var(--card-radius); }
.pbadge { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--ink); color: #fff; font-family: var(--fdisp); font-weight: 700; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; padding: 5px 9px; border-radius: 6px; }
.pbadge-accent { background: var(--accent); color: var(--ink); }
.pcard-body { padding: 13px 2px 0; }
.pcard-brand { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.pcard-name { font-family: var(--fdisp); font-weight: 700; font-size: 15px; letter-spacing: -.01em; margin: 4px 0 9px; cursor: pointer; line-height: 1.25; }
.pcard-name:hover { color: var(--teal); }
.pcard-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pcard-price { font-family: var(--fdisp); font-weight: 800; font-size: 15px; }

.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 22px; }

/* ============================ Header ============================ */
.hdr { position: sticky; top: 0; z-index: 100; background: var(--paper); }
.announce { position: relative; background: var(--ink); color: #fff; height: 38px; display: flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--fdisp); font-weight: 700; font-size: 12.5px; letter-spacing: 0; overflow: hidden; text-align: center; }
.announce svg { color: var(--accent); flex-shrink: 0; }
.announce-arrow { position: absolute; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,.55); font-size: 18px; line-height: 1; pointer-events: none; }
.announce-prev { left: 18px; }
.announce-next { right: 18px; }
.announce-track { animation: annIn .5s ease; }
.announce b { color: var(--accent); font-weight: 800; }
@keyframes annIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
/* Rotating announcement messages — only the .active one is shown */
.announce-msgs { display: flex; align-items: center; }
.announcement-message { display: none; margin: 0; animation: annIn .4s ease; }
.announcement-message.active { display: block; }
/* Search scrim — hidden by default, shown with .is-open */
.search-scrim { display: none; }
.search-scrim.is-open { display: flex; }
.hdr-main { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; height: 78px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.logo { justify-self: start; }
.hdr-burger { display: none; background: none; border: 0; color: var(--ink); }
.logo { background: none; border: 0; display: inline-flex; align-items: center; gap: 7px; padding: 0; }
.logo-img { height: 68px; width: auto; display: block; }
.ftr-logo { height: 52px; margin-bottom: 16px; display: block; }
.ftr-logo-link { display: inline-block; }
.ftr-wordmark-link { display: inline-block; margin-bottom: 16px; text-decoration: none; }
.ftr-wordmark { font-family: var(--fdisp); font-weight: 900; font-size: 30px; letter-spacing: -.03em; color: #fff; line-height: 1; display: block; }
.logo-jd { font-family: var(--fdisp); font-weight: 900; font-size: 23px; letter-spacing: -.03em; color: var(--teal); }
.logo-u { font-family: var(--fdisp); font-weight: 700; font-size: 14px; letter-spacing: .18em; color: var(--ink); }
.hdr-nav { display: flex; align-items: center; justify-content: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link { background: none; border: 0; display: inline-flex; align-items: center; gap: 4px; padding: 10px 14px; font-family: var(--fdisp); font-weight: 600; font-size: 14px; color: var(--ink); border-radius: 8px; }
.nav-link:hover { color: var(--teal); }
.nav-team { color: var(--teal); }
.nav-sale { color: #d6492f; }
.nav-sale:hover { color: #b53a23; }
.mega-cell-all { background: var(--teal-tint) !important; }
.mega-cell-all .mega-name { color: var(--teal); }
.mega-dept { width: 440px; grid-template-columns: 1fr; gap: 14px; }
.mega-dept .mega-cell-all { display: none; }
.mega-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 0 10px 8px; }
.mega-head span { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.mega-head a { color: var(--teal); font-family: var(--fdisp); font-size: 12.5px; font-weight: 700; white-space: nowrap; }
.mega-head a:hover { color: var(--teal-dark); }
.mega-brands { width: 342px; grid-template-columns: 1fr; gap: 12px; }
.mega-brandgrid { display: grid; grid-template-columns: 1fr; gap: 2px; }
.mega-brandcell { background: #fff; border: 0; border-radius: 10px; min-height: 47px; display: grid; grid-template-columns: 52px minmax(0, 1fr); align-items: center; gap: 10px; padding: 6px 10px; transition: background .15s, color .15s; }
.mega-brandcell:hover { background: var(--soft); }
.mega-brandcell img { max-height: 24px; max-width: 48px; width: auto; object-fit: contain; justify-self: center; }
.mega-brandcell span { min-width: 0; display: grid; gap: 1px; }
.mega-brandcell strong { font-family: var(--fdisp); font-weight: 700; font-size: 14px; line-height: 1.05; color: var(--ink); }
.mega-brandcell small { color: var(--muted); font-size: 11.5px; line-height: 1.15; }
.mega-brandcell:hover strong { color: var(--teal); }
.msheet-sale { color: #d6492f; }
.pbadge-sale { background: #d6492f; color: #fff; }
.price-was { color: var(--muted); text-decoration: line-through; font-weight: 600; margin-right: 7px; }
.price-now { color: #d6492f; }
.pcard-price .price-now { color: #d6492f; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.pdp-price .price-was { font-size: 20px; }
.pdp-price .price-now { color: #d6492f; }
.price-save { font-family: var(--fbody); font-weight: 700; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: #fff; background: #d6492f; padding: 4px 9px; border-radius: 100px; }
.mega { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); width: 720px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 24px 60px rgba(16,21,24,.14); padding: 18px; display: grid; grid-template-columns: 1fr 200px; gap: 18px; animation: megaIn .18s ease; }
@keyframes megaIn { from { opacity: 0; transform: translate(-50%, 4px); } to { opacity: 1; transform: translate(-50%, 0); } }
.mega::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mega-cell { background: none; border: 0; text-align: left; padding: 11px 13px; border-radius: 10px; display: flex; flex-direction: column; gap: 2px; }
.mega-cell:hover { background: var(--soft); }
.mega-name { font-family: var(--fdisp); font-weight: 700; font-size: 14px; }
.mega-cell:hover .mega-name { color: var(--teal); }
.mega-blurb { font-size: 11.5px; color: var(--muted); }
.mega-feat { background: var(--teal); border-radius: 12px; padding: 18px; color: #fff; display: flex; flex-direction: column; justify-content: flex-end; }
.mega-feat-kick { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.mega-feat-h { font-family: var(--fdisp); font-weight: 800; font-size: 22px; line-height: 1.05; margin: 6px 0 14px; }
.mega-feat-btn { background: #fff; color: var(--ink); border: 0; border-radius: 100px; padding: 9px 14px; font-family: var(--fdisp); font-weight: 700; font-size: 13px; align-self: flex-start; }
.hdr-actions { justify-self: end; display: flex; align-items: center; gap: 6px; }
.acct-item { position: relative; }
.acctmenu { position: absolute; top: calc(100% + 8px); right: 0; width: 200px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 20px 50px rgba(16,21,24,.14); padding: 8px; z-index: 120; animation: megaIn .16s ease; }
.acctmenu::before { content: ''; position: absolute; top: -10px; right: 0; left: 0; height: 10px; }
.acctmenu-link { display: block; width: 100%; text-align: left; background: none; border: 0; padding: 10px 12px; border-radius: 9px; font-family: var(--fdisp); font-weight: 600; font-size: 14px; color: var(--ink); }
.acctmenu-link:hover { background: var(--soft); color: var(--teal); }
.acctmenu-div { height: 1px; background: var(--line); margin: 6px 4px; }
.iconbtn { background: none; border: 0; color: var(--ink); padding: 9px; border-radius: 10px; display: inline-flex; }
.iconbtn:hover { background: var(--soft); color: var(--teal); }
.cartbtn { position: relative; }
.cart-dot { position: absolute; top: 2px; right: 2px; background: var(--teal); color: #fff; font-family: var(--fdisp); font-weight: 700; font-size: 10px; min-width: 17px; height: 17px; border-radius: 100px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }

/* Mobile sheet */
.msheet { position: fixed; inset: 0; z-index: 200; background: rgba(16,21,24,.4); display: flex; }
.msheet-panel { width: 320px; max-width: 86vw; height: 100%; background: #fff; padding: 20px; overflow-y: auto; animation: sheetIn .25s ease; }
@keyframes sheetIn { from { transform: translateX(-100%); } to { transform: translateX(0); } }
.msheet-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.msheet-top h3 { font-size: 18px; }
.msheet-link { display: block; width: 100%; text-align: left; background: none; border: 0; padding: 14px 4px; font-family: var(--fdisp); font-weight: 600; font-size: 17px; border-bottom: 1px solid var(--line); }

/* ============================ Hero ============================ */
.hero { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); min-height: 560px; width: 100%; }
.hero-text { min-width: 0; background: var(--teal); color: #fff; padding: 64px clamp(28px, 5vw, 80px); display: flex; flex-direction: column; justify-content: center; }
.hero-kick { font-family: var(--fdisp); font-weight: 700; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; background: rgba(255,255,255,.16); align-self: flex-start; padding: 7px 13px; border-radius: 100px; margin-bottom: 22px; }
.hero-h { font-family: var(--fdisp); font-weight: 900; font-size: clamp(54px, 7vw, 88px); line-height: .9; letter-spacing: -.04em; text-transform: uppercase; }
.hero-h span { color: var(--accent); }
.hero-sub { font-size: 16px; line-height: 1.55; max-width: 400px; margin: 24px 0 32px; color: rgba(255,255,255,.92); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-media { min-width: 0; position: relative; overflow: hidden; background: var(--surface); }
.hero-media img { width: 100%; height: 100%; object-fit: contain; object-position: center; }

/* ============================ Value props ============================ */
.vprops { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.vprop { display: flex; align-items: center; justify-content: center; gap: 11px; padding: 20px; font-family: var(--fdisp); font-weight: 600; font-size: 13.5px; }
.vprop:not(:last-child) { border-right: 1px solid var(--line); }
.vprop svg { color: var(--teal); }

/* Value-prop marquee */
.vmarquee { border-bottom: 1px solid var(--line); overflow: hidden; background: #fff; }
.vmarquee-track { display: flex; width: max-content; animation: vmarq 42s linear infinite; }
.vmarquee:hover .vmarquee-track { animation-play-state: paused; }
.vchip { display: inline-flex; align-items: center; gap: 9px; padding: 16px 30px; font-family: var(--fdisp); font-weight: 600; font-size: 13.5px; white-space: nowrap; color: var(--ink); border-right: 1px solid var(--line); }
.vchip svg { color: var(--teal); }
@keyframes vmarq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .vmarquee-track { animation: none; } }

/* ============================ Sections ============================ */
.section { max-width: var(--maxw); margin: 0 auto; padding: 76px 28px; }
.section-soft { max-width: none; background: var(--soft); }
.section-soft > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 34px; gap: 20px; }
.sec-title { font-family: var(--fdisp); font-weight: 800; font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -.025em; text-transform: uppercase; line-height: 1; }
.sec-link { background: none; border: 0; display: inline-flex; align-items: center; gap: 4px; font-family: var(--fdisp); font-weight: 700; font-size: 14px; color: var(--ink); }
.sec-link:hover { color: var(--teal); }

/* Category grid */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-tile { position: relative; background: none; border: 0; padding: 0; text-align: left; border-radius: var(--card-radius); overflow: hidden; }
.cat-tile::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 48%; background: linear-gradient(transparent, rgba(8,18,20,.46)); pointer-events: none; z-index: 1; }
.cat-tile .pimg { border-radius: var(--card-radius); transition: transform .4s ease; }
.cat-tile .pimg { aspect-ratio: 4 / 5; background-size: cover; background-position: center top; }
.cat-tile:hover .pimg { transform: scale(1.04); }
.cat-tag { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.92); color: var(--ink); font-family: var(--fdisp); font-weight: 700; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; padding: 5px 9px; border-radius: 100px; }
.cat-name { position: absolute; left: 14px; bottom: 13px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; color: #fff; font-family: var(--fdisp); font-weight: 800; font-size: 18px; letter-spacing: -.01em; text-shadow: 0 1px 16px rgba(0,0,0,.4); }
.cat-name svg { transition: transform .2s; }
.cat-tile:hover .cat-name svg { transform: translateX(4px); }

/* Feature (embroidery) */
.feat { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; max-width: var(--maxw); margin: 0 auto; padding: 28px; gap: 40px; }
.feat-media { border-radius: 18px; overflow: hidden; min-height: 420px; }
.feat-ph { width: 100%; height: 100%; min-height: 420px; background: var(--ink); position: relative; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 1px, transparent 1px 16px); }
.feat-text { display: flex; flex-direction: column; justify-content: center; padding: 30px 20px; }
.feat-kick { display: inline-flex; align-items: center; gap: 8px; font-family: var(--fdisp); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
.feat-text h2 { font-family: var(--fdisp); font-weight: 900; font-size: clamp(30px, 4vw, 46px); line-height: .98; letter-spacing: -.03em; text-transform: uppercase; }
.feat-text p { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 440px; margin: 18px 0 28px; }

/* Brands */
.brands { max-width: none; margin: 0 auto; padding: 30px 0 76px; text-align: center; overflow: hidden; }
.brands-label { display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; }
.brand-marquee { overflow: hidden; width: 100%; }
.brand-mtrack { display: flex; align-items: center; width: max-content; gap: 0; animation: vmarq 34s linear infinite; }
.brand-mgroup { display: flex; align-items: center; gap: 64px; padding-right: 64px; flex-shrink: 0; }
.brand-marquee:hover .brand-mtrack { animation-play-state: paused; }
.brands-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 28px 44px; }
.brand-chip { background: none; border: 0; padding: 6px 12px; height: 70px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: .2s; }
.brand-chip:hover { transform: translateY(-3px); }
.brand-chip img { max-height: 62px; max-width: 190px; width: auto; object-fit: contain; }

/* Drop (prints) */
.drop { background: var(--teal); color: #fff; padding: 64px 28px; }
.drop-in { max-width: var(--maxw); margin: 0 auto 40px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.drop-kick { font-family: var(--fdisp); font-weight: 700; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; background: rgba(255,255,255,.16); padding: 7px 14px; border-radius: 100px; }
.drop-h { font-family: var(--fdisp); font-weight: 900; font-size: clamp(40px, 6vw, 72px); letter-spacing: -.03em; line-height: 1; margin: 18px 0 12px; }
.drop-sub { font-size: 16px; max-width: 420px; margin: 0 0 26px; color: rgba(255,255,255,.9); }
.drop-cards { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.drop-cards .pcard-brand, .drop-cards .pcard-name, .drop-cards .pcard-price { color: #fff; }
.drop-cards .pcard-name:hover { color: var(--accent); }

/* Reviews */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rev { background: var(--soft); border: 1px solid var(--line); border-radius: 16px; padding: 26px; }
.rev-q { font-family: var(--fdisp); font-weight: 500; font-size: 18px; line-height: 1.4; letter-spacing: -.01em; margin: 16px 0 18px; }
.rev-by { font-size: 13px; color: var(--muted); }
.rev-by b { color: var(--ink); }

/* ============================ Shop / PLP ============================ */
.shop { max-width: var(--maxw); margin: 0 auto; padding: 30px 28px 80px; }
.crumbs { font-size: 12.5px; color: var(--muted); margin-bottom: 14px; }
.crumbs button { background: none; border: 0; color: var(--muted); padding: 0; font-size: 12.5px; }
.crumbs button:hover { color: var(--teal); }
.plp-head { margin-bottom: 30px; }
.plp-title { font-family: var(--fdisp); font-weight: 900; font-size: clamp(32px, 5vw, 52px); letter-spacing: -.03em; text-transform: uppercase; line-height: 1; }
.plp-sub { color: var(--muted); margin: 12px 0 0; max-width: 540px; }
.plp-body { display: grid; grid-template-columns: 232px 1fr; gap: 40px; }
.plp-aside { position: sticky; top: 92px; align-self: start; }
.filters { display: flex; flex-direction: column; gap: 26px; }
.fgroup h4 { font-family: var(--fdisp); font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 12px; }
.fcat { display: block; width: 100%; text-align: left; background: none; border: 0; padding: 7px 0; font-size: 14px; color: var(--muted); }
.fcat:hover { color: var(--ink); }
.fcat.on { color: var(--ink); font-weight: 600; }
.fcheck { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; cursor: pointer; }
.fcheck input { display: none; }
.fbox { width: 18px; height: 18px; border: 1.5px solid var(--line); border-radius: 5px; display: inline-flex; align-items: center; justify-content: center; color: #fff; transition: .15s; flex-shrink: 0; }
.fcheck input:checked + .fbox, .co-check input:checked + .fbox { background: var(--teal); border-color: var(--teal); }
.fcolors { display: flex; flex-wrap: wrap; gap: 9px; }
.fcolor { width: 26px; height: 26px; border-radius: 50%; border: 0; box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); }
.fcolor.on { box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--ink); }
.fclear { background: none; border: 0; color: var(--teal); font-weight: 600; font-size: 13px; text-align: left; padding: 0; text-decoration: underline; }
.plp-toolbar { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.fbtn { display: none; align-items: center; gap: 7px; background: none; border: 1.5px solid var(--line); border-radius: 100px; padding: 9px 16px; font-family: var(--fdisp); font-weight: 600; font-size: 13px; }
.plp-count { font-size: 13px; color: var(--muted); }
.sortsel { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.sortsel select { font-family: var(--fbody); font-size: 13px; font-weight: 600; color: var(--ink); border: 1.5px solid var(--line); border-radius: 100px; padding: 9px 14px; background: #fff; }
.plp-grid { grid-template-columns: repeat(3, 1fr); }
.plp-empty { padding: 60px 0; text-align: center; color: var(--muted); }
.plp-empty button { background: none; border: 0; color: var(--teal); font-weight: 600; text-decoration: underline; }
.msheet-filters { width: 340px; }
.msheet-filters .filters { margin-bottom: 20px; }

/* ============================ PDP ============================ */
.pdp { max-width: var(--maxw); margin: 0 auto; padding: 24px 28px 80px; }
.pdp-crumbs { margin-bottom: 22px; }
.pdp-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; }
.pdp-gallery { display: grid; grid-template-columns: 72px 1fr; gap: 14px; align-self: start; position: sticky; top: 92px; }
.pdp-thumbs { display: flex; flex-direction: column; gap: 10px; }
.pdp-thumb { border: 1.5px solid var(--line); border-radius: 10px; overflow: hidden; padding: 0; background: none; opacity: .7; transition: .15s; }
.pdp-thumb .pimg { border-radius: 8px; }
.pdp-thumb.on, .pdp-thumb:hover { opacity: 1; border-color: var(--teal); }
.pdp-main-img { position: relative; border-radius: 16px; overflow: hidden; background: var(--surface); }
.pdp-summary { max-width: 480px; }
.pdp-brand { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.pdp-title { font-family: var(--fdisp); font-weight: 900; font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -.03em; line-height: 1.02; text-transform: uppercase; margin: 8px 0 12px; }
.pdp-rate { margin-bottom: 16px; }
.pdp-price { font-family: var(--fdisp); font-weight: 800; font-size: 26px; }
.pdp-sezzle { font-size: 13px; color: var(--muted); margin: 8px 0 0; }
.sezzle { background: var(--ink); color: #fff; padding: 2px 7px; border-radius: 5px; font-family: var(--fdisp); font-weight: 800; font-size: 11px; }
.pdp-desc { font-size: 15px; line-height: 1.6; color: #3a4248; margin: 20px 0 26px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.pdp-opt { margin-bottom: 24px; }
.pdp-opt-label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 11px; font-family: var(--fdisp); font-weight: 700; font-size: 13px; letter-spacing: .03em; text-transform: uppercase; }
.pdp-opt-val { color: var(--muted); font-weight: 500; text-transform: none; letter-spacing: 0; }
.opt-err { color: #c4452f; font-style: normal; font-weight: 600; text-transform: none; letter-spacing: 0; }
.swatch-row { display: flex; flex-wrap: wrap; gap: 10px; }
.swatch-lg { width: 34px; height: 34px; border-radius: 50%; border: 0; box-shadow: inset 0 0 0 1px rgba(0,0,0,.14); transition: transform .15s; }
.swatch-lg:hover { transform: scale(1.1); }
.swatch-lg.on { box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--ink); }
.sizeguide { background: none; border: 0; font-size: 12px; color: var(--teal); text-decoration: underline; font-weight: 600; text-transform: none; letter-spacing: 0; }
.size-row { display: flex; flex-wrap: wrap; gap: 9px; }
.size-btn { min-width: 50px; padding: 11px 14px; border: 1.5px solid var(--line); background: #fff; border-radius: 10px; font-family: var(--fdisp); font-weight: 600; font-size: 14px; color: var(--ink); transition: .15s; }
.size-btn:hover { border-color: var(--ink); }
.size-btn.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.emb { margin-bottom: 26px; background: var(--soft); border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.emb-toggle { display: flex; align-items: center; gap: 11px; cursor: pointer; }
.emb-toggle input { display: none; }
.emb-box { width: 20px; height: 20px; border: 1.5px solid var(--line); border-radius: 6px; background: #fff; display: inline-flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.emb-toggle input:checked + .emb-box { background: var(--teal); border-color: var(--teal); }
.emb-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--fdisp); font-weight: 600; font-size: 14px; }
.emb-label svg { color: var(--teal); }
.emb-input { margin-top: 12px; width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-family: var(--fbody); font-size: 14px; }
.emb-input:focus { outline: none; border-color: var(--teal); }
.pdp-buy { display: flex; gap: 12px; margin-bottom: 20px; }
.qtybox { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 100px; overflow: hidden; }
.qtybox button { background: #fff; border: 0; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; color: var(--ink); }
.qtybox button:hover { background: var(--soft); }
.qtybox span { min-width: 30px; text-align: center; font-family: var(--fdisp); font-weight: 700; font-size: 14px; }
.qtybox-lg button { width: 46px; height: 50px; }
.qtybox-lg span { min-width: 34px; font-size: 16px; }
.pdp-trust { display: flex; flex-wrap: wrap; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 8px; }
.pdp-trust span { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted); font-weight: 500; }
.pdp-trust svg { color: var(--teal); }
.acc { margin-top: 8px; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; background: none; border: 0; padding: 18px 0; font-family: var(--fdisp); font-weight: 700; font-size: 14px; letter-spacing: .02em; text-transform: uppercase; }
.acc-body { padding: 0 0 18px; animation: accIn .2s ease; }
@keyframes accIn { from { opacity: 0; } to { opacity: 1; } }
.acc-list { margin: 0; padding-left: 18px; color: var(--muted); font-size: 14px; line-height: 1.8; }

/* ============================ Drawer / mini-cart ============================ */
.drawer-scrim { position: fixed; inset: 0; background: rgba(16,21,24,.42); z-index: 300; opacity: 0; visibility: hidden; transition: .3s; }
.drawer-scrim.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; width: 410px; max-width: 92vw; height: 100%; background: #fff; z-index: 301; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .32s cubic-bezier(.77,0,.18,1); }
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-family: var(--fdisp); font-weight: 800; font-size: 18px; text-transform: uppercase; letter-spacing: .01em; }
.drawer-head h3 span { color: var(--muted); }
.ship-bar { padding: 14px 22px; background: var(--soft); border-bottom: 1px solid var(--line); }
.ship-bar p { margin: 0 0 8px; font-size: 12.5px; }
.ship-track { height: 6px; background: #e2e6e5; border-radius: 100px; overflow: hidden; }
.ship-fill { height: 100%; background: var(--teal); border-radius: 100px; transition: width .4s ease; }
.drawer-body { flex: 1; overflow-y: auto; padding: 8px 22px; }
.drawer-empty { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 60px 20px; text-align: center; color: var(--muted); }
.li { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.li-img { width: 72px; height: 90px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: flex-end; justify-content: flex-end; padding: 6px; }
.li-img span { font-family: var(--fdisp); font-weight: 800; font-size: 11px; color: rgba(255,255,255,.6); }
.li-info { flex: 1; min-width: 0; }
.li-top { display: flex; justify-content: space-between; gap: 8px; }
.li-name { font-family: var(--fdisp); font-weight: 700; font-size: 14px; line-height: 1.2; }
.li-x { background: none; border: 0; color: var(--muted); padding: 0; }
.li-x:hover { color: var(--ink); }
.li-meta { font-size: 12px; color: var(--muted); margin: 4px 0 12px; }
.li-bottom { display: flex; align-items: center; justify-content: space-between; }
.li-price { font-family: var(--fdisp); font-weight: 800; font-size: 14px; }
.drawer-foot { padding: 18px 22px; border-top: 1px solid var(--line); }
.drawer-sub { display: flex; justify-content: space-between; font-family: var(--fdisp); font-weight: 700; font-size: 16px; margin-bottom: 14px; text-transform: uppercase; }
.drawer-view { display: block; width: 100%; background: none; border: 0; margin-top: 10px; color: var(--muted); font-size: 13px; text-decoration: underline; }

/* ============================ Cart page ============================ */
.page-title { font-family: var(--fdisp); font-weight: 900; font-size: clamp(32px, 5vw, 52px); letter-spacing: -.03em; text-transform: uppercase; }
.cartpage { max-width: var(--maxw); margin: 0 auto; padding: 34px 28px 90px; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 44px; margin-top: 28px; align-items: start; }
.ship-bar-lg { border-radius: 12px; border: 1px solid var(--line); margin-bottom: 18px; }
.cart-row { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.cart-img { width: 92px; height: 116px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: flex-end; justify-content: flex-end; padding: 8px; }
.cart-img span { font-family: var(--fdisp); font-weight: 800; font-size: 12px; color: rgba(255,255,255,.6); }
.cart-mid { flex: 1; }
.cart-name { font-family: var(--fdisp); font-weight: 700; font-size: 16px; }
.cart-meta { font-size: 13px; color: var(--muted); margin: 6px 0 14px; }
.cart-remove { background: none; border: 0; color: var(--muted); font-size: 13px; text-decoration: underline; padding: 0; }
.cart-remove:hover { color: #c4452f; }
.cart-right { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.cart-price { font-family: var(--fdisp); font-weight: 800; font-size: 16px; }
.cart-continue { background: none; border: 0; color: var(--teal); font-family: var(--fdisp); font-weight: 700; font-size: 14px; padding: 24px 0 0; }
.cart-summary { background: var(--soft); border: 1px solid var(--line); border-radius: 16px; padding: 26px; position: sticky; top: 92px; }
.cart-summary h3 { font-family: var(--fdisp); font-weight: 800; font-size: 18px; text-transform: uppercase; margin-bottom: 18px; }
.sum-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); padding: 8px 0; }
.sum-total { display: flex; justify-content: space-between; font-family: var(--fdisp); font-weight: 800; font-size: 19px; padding: 14px 0 18px; margin-top: 6px; border-top: 1px solid var(--line); }
.sum-total small { font-weight: 500; font-size: 12px; color: var(--muted); }
.sum-pay { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }
.sum-trust { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 12.5px; color: var(--muted); margin-top: 14px; }
.sum-trust svg { color: var(--teal); }
.cart-empty-page { max-width: 520px; margin: 0 auto; padding: 100px 28px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; color: var(--muted); }
.cart-empty-page h1 { font-family: var(--fdisp); font-weight: 900; font-size: 34px; text-transform: uppercase; color: var(--ink); }

/* ============================ Checkout ============================ */
.checkout { max-width: 1060px; margin: 0 auto; padding: 28px 28px 80px; }
.co-logo { background: none; border: 0; display: inline-flex; align-items: baseline; gap: 7px; padding: 0; margin-bottom: 28px; }
.co-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
.co-express { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.exp { border: 0; border-radius: 10px; padding: 13px; font-family: var(--fdisp); font-weight: 700; font-size: 14px; color: #fff; }
.exp-dark { background: var(--ink); }
.exp-pp { background: #ffc439; color: #003087; }
.exp-sz { background: #6d3bf5; }
.co-or { text-align: center; margin: 22px 0; position: relative; }
.co-or::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--line); }
.co-or span { position: relative; background: #fff; padding: 0 14px; font-size: 12.5px; color: var(--muted); }
.co-sec { margin-bottom: 30px; }
.co-sec h3 { font-family: var(--fdisp); font-weight: 800; font-size: 16px; text-transform: uppercase; margin-bottom: 14px; }
.fld { width: 100%; padding: 14px 15px; border: 1.5px solid var(--line); border-radius: 10px; font-family: var(--fbody); font-size: 14.5px; margin-bottom: 11px; }
.fld:focus { outline: none; border-color: var(--teal); }
.fld-row { display: flex; gap: 11px; }
.fld-row .fld { flex: 1; }
.co-check { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--muted); cursor: pointer; }
.co-check input { display: none; }
.ship-opt { display: flex; align-items: center; gap: 13px; border: 1.5px solid var(--line); border-radius: 10px; padding: 15px 16px; margin-bottom: 11px; cursor: pointer; }
.ship-opt.on { border-color: var(--teal); background: var(--teal-tint); }
.ship-opt input { display: none; }
.ship-rdot { width: 19px; height: 19px; border-radius: 50%; border: 1.5px solid var(--line); flex-shrink: 0; position: relative; }
.ship-opt.on .ship-rdot { border-color: var(--teal); }
.ship-opt.on .ship-rdot::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--teal); }
.ship-opt-mid { flex: 1; display: flex; flex-direction: column; }
.ship-opt-mid b { font-family: var(--fdisp); font-weight: 700; font-size: 14px; }
.ship-opt-mid small { font-size: 12.5px; color: var(--muted); }
.ship-opt-price { font-family: var(--fdisp); font-weight: 700; font-size: 14px; }
.co-secure { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 12.5px; color: var(--muted); margin-top: 16px; }
.co-secure svg { color: var(--teal); }
.co-summary { background: var(--soft); border: 1px solid var(--line); border-radius: 16px; padding: 24px; position: sticky; top: 28px; }
.co-summary h3 { font-family: var(--fdisp); font-weight: 800; font-size: 15px; text-transform: uppercase; margin-bottom: 16px; }
.co-items { margin-bottom: 18px; }
.co-li { display: flex; align-items: center; gap: 13px; padding: 9px 0; }
.co-li-img { width: 52px; height: 64px; border-radius: 8px; position: relative; flex-shrink: 0; }
.co-li-qty { position: absolute; top: -7px; right: -7px; background: var(--muted); color: #fff; font-family: var(--fdisp); font-weight: 700; font-size: 11px; min-width: 20px; height: 20px; border-radius: 100px; display: flex; align-items: center; justify-content: center; }
.co-li-info { flex: 1; min-width: 0; }
.co-li-name { display: block; font-family: var(--fdisp); font-weight: 700; font-size: 13.5px; line-height: 1.2; }
.co-li-meta { display: block; font-size: 12px; color: var(--muted); margin-top: 3px; }
.co-li-price { font-family: var(--fdisp); font-weight: 700; font-size: 13.5px; }
.co-promo { display: flex; gap: 10px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.co-promo input { flex: 1; padding: 11px 13px; border: 1.5px solid var(--line); border-radius: 8px; font-family: var(--fbody); font-size: 13px; }
.co-promo button { background: var(--ink); color: #fff; border: 0; border-radius: 8px; padding: 0 18px; font-family: var(--fdisp); font-weight: 700; font-size: 13px; }

/* Confirmation */
.confirm { max-width: 540px; margin: 0 auto; padding: 80px 28px; text-align: center; }
.confirm-badge { width: 72px; height: 72px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.confirm h1 { font-family: var(--fdisp); font-weight: 900; font-size: 38px; text-transform: uppercase; letter-spacing: -.02em; }
.confirm-sub { color: var(--muted); margin: 12px 0 28px; }
.confirm-card { background: var(--soft); border: 1px solid var(--line); border-radius: 14px; padding: 22px; margin-bottom: 28px; text-align: left; }
.confirm-num { display: flex; justify-content: space-between; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--line); }
.confirm-num span { color: var(--muted); font-size: 14px; }
.confirm-num b { font-family: var(--fdisp); font-weight: 800; }
.confirm-eta { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink); }
.confirm-eta svg { color: var(--teal); }

/* ============================ About ============================ */
.ab-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); min-height: 480px; }
.ab-hero-text { background: var(--ink); color: #fff; padding: 64px clamp(28px,5vw,72px); display: flex; flex-direction: column; justify-content: center; }
.ab-hero-text .hero-kick { background: rgba(255,255,255,.14); }
.ab-h { font-family: var(--fdisp); font-weight: 900; font-size: clamp(44px,6vw,76px); line-height: .92; letter-spacing: -.04em; text-transform: uppercase; }
.ab-hero-text p { color: rgba(255,255,255,.85); font-size: 15.5px; line-height: 1.6; max-width: 440px; margin-top: 22px; }
.ab-hero-media { min-width: 0; overflow: hidden; background: #f7f2ed; display: flex; align-items: center; justify-content: center; }
.ab-hero-media img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.ab-stats { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--teal); color: #fff; }
.ab-stat { padding: 38px 20px; text-align: center; }
.ab-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,.16); }
.ab-stat b { display: block; font-family: var(--fdisp); font-weight: 900; font-size: clamp(32px,4vw,46px); letter-spacing: -.02em; }
.ab-stat span { font-size: 13px; letter-spacing: .04em; text-transform: uppercase; opacity: .85; margin-top: 6px; display: block; }
.ab-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ab-val { padding: 4px; }
.ab-val-ic { width: 50px; height: 50px; border-radius: 12px; background: var(--teal-tint); color: var(--teal); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.ab-val h3 { font-family: var(--fdisp); font-weight: 800; font-size: 18px; text-transform: uppercase; letter-spacing: -.01em; }
.ab-val p { color: var(--muted); font-size: 14px; line-height: 1.55; margin-top: 8px; }
.ab-team { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: var(--maxw); margin: 0 auto; padding: 40px 28px 90px; align-items: center; }
.ab-team-h { font-family: var(--fdisp); font-weight: 900; font-size: clamp(32px,4.4vw,52px); letter-spacing: -.03em; text-transform: uppercase; line-height: 1; margin: 16px 0; }
.ab-team-in p { color: var(--muted); font-size: 15.5px; line-height: 1.6; max-width: 460px; }
.ab-team-list { list-style: none; padding: 0; margin: 22px 0 28px; display: flex; flex-direction: column; gap: 11px; }
.ab-team-list li { display: flex; align-items: center; gap: 10px; font-family: var(--fdisp); font-weight: 600; font-size: 14.5px; }
.ab-team-list svg { color: var(--teal); }
.ab-team-media { border-radius: 18px; overflow: hidden; min-height: 380px; }
.ab-team-media .feat-ph { min-height: 380px; }
.ab-store { background: var(--soft); border-top: 1px solid var(--line); }
.ab-store-in { max-width: var(--maxw); margin: 0 auto; padding: 64px 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.ab-store-info .store-addr:first-of-type { border-top: 1px solid var(--line); }
.ab-store-map { height: 320px; border-radius: 16px; background: var(--surface); background-image: repeating-linear-gradient(135deg, rgba(0,0,0,.04) 0 1px, transparent 1px 14px); display: flex; align-items: center; justify-content: center; }
@media (max-width: 760px) { .ab-store-in { grid-template-columns: 1fr; } }

/* ============================ Footer ============================ */
.ftr { background: var(--ink); color: #b9c1c4; }
.ftr-cta { border-bottom: 1px solid rgba(255,255,255,.1); }
.ftr-cta-in { max-width: var(--maxw); margin: 0 auto; padding: 48px 28px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.ftr-cta-in h2 { font-family: var(--fdisp); font-weight: 900; font-size: clamp(28px,3.4vw,40px); color: #fff; text-transform: uppercase; letter-spacing: -.02em; }
.ftr-cta-in p { color: #b9c1c4; margin-top: 8px; }
.ftr-main { max-width: var(--maxw); margin: 0 auto; padding: 56px 28px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr; gap: 36px; }
.ftr-col h4 { font-family: var(--fdisp); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.ftr-col button { display: block; background: none; border: 0; color: #b9c1c4; padding: 6px 0; font-size: 14px; text-align: left; }
.ftr-col button:hover { color: #fff; }
.ftr-brand .logo { margin-bottom: 14px; }
.ftr-brand .logo-jd { color: #fff; }
.ftr-brand .logo-u { color: #fff; }
.ftr-brand p { font-size: 14px; line-height: 1.6; max-width: 240px; }
.ftr-pay { margin-top: 16px; font-size: 12px; letter-spacing: .06em; color: #7c878b; }
.ftr-news p { font-size: 13.5px; line-height: 1.5; margin-bottom: 14px; }
.ftr-form { display: flex; gap: 8px; }
.ftr-form input { flex: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 10px; padding: 12px 14px; color: #fff; font-family: var(--fbody); font-size: 14px; }
.ftr-form input::placeholder { color: #7c878b; }
.ftr-form input:focus { outline: none; border-color: var(--teal); }
.ftr-form button { background: var(--teal); border: 0; border-radius: 10px; width: 46px; color: #fff; display: flex; align-items: center; justify-content: center; }
.ftr-base { border-top: 1px solid rgba(255,255,255,.1); }
.ftr-base { max-width: var(--maxw); margin: 0 auto; padding: 22px 28px; display: flex; justify-content: space-between; gap: 16px; font-size: 12.5px; color: #7c878b; flex-wrap: wrap; }

/* ============================ Info / help pages ============================ */
.info { max-width: var(--maxw); margin: 0 auto; }
.info-head { border-bottom: 1px solid var(--line); }
.info-head-in { padding: 40px 28px 30px; }
.info-title { font-family: var(--fdisp); font-weight: 900; font-size: clamp(34px, 5vw, 54px); letter-spacing: -.03em; text-transform: uppercase; line-height: 1; margin-top: 12px; }
.info-intro { color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 620px; margin: 14px 0 0; }
.info-body { display: grid; grid-template-columns: 232px 1fr; gap: 48px; padding: 40px 28px 90px; }
.info-nav { position: sticky; top: 92px; align-self: start; }
.info-nav h4 { font-family: var(--fdisp); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.info-navlink { display: block; width: 100%; text-align: left; background: none; border: 0; padding: 9px 0; font-family: var(--fdisp); font-weight: 600; font-size: 14px; color: var(--muted); }
.info-navlink:hover { color: var(--ink); }
.info-navlink.on { color: var(--teal); }
.info-contactcard { margin-top: 24px; background: var(--soft); border: 1px solid var(--line); border-radius: 14px; padding: 18px; display: flex; flex-direction: column; gap: 6px; }
.icc-k { font-family: var(--fdisp); font-weight: 700; font-size: 13px; }
.info-contactcard a { font-size: 13.5px; color: var(--teal); }
.icc-btn { margin-top: 6px; background: none; border: 0; text-align: left; padding: 0; color: var(--ink); font-family: var(--fdisp); font-weight: 700; font-size: 13px; }
.info-content { max-width: 720px; }
.info-h { font-family: var(--fdisp); font-weight: 800; font-size: 22px; letter-spacing: -.01em; text-transform: uppercase; margin: 34px 0 12px; }
.info-content > .info-h:first-child { margin-top: 0; }
.info-p { font-size: 15.5px; line-height: 1.7; color: #3a4248; margin: 0 0 16px; }
.info-list { margin: 0 0 18px; padding-left: 20px; }
.info-list li { font-size: 15.5px; line-height: 1.7; color: #3a4248; margin-bottom: 7px; }
.info-note { border-radius: 12px; padding: 16px 18px; margin: 0 0 24px; font-size: 15px; line-height: 1.5; }
.info-note-teal { background: var(--teal-tint); border-left: 4px solid var(--teal); }
.info-note-amber { background: #fdf4e3; border-left: 4px solid #e0a83a; }
.info-addr { background: var(--soft); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; font-size: 15.5px; line-height: 1.7; }
.info-addr b { font-family: var(--fdisp); }

/* Shipping tiles */
.ship-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 4px 0 22px; }
.ship-tile { border: 1px solid var(--line); border-radius: 14px; padding: 20px; display: flex; flex-direction: column; gap: 4px; }
.ship-tile svg { color: var(--teal); margin-bottom: 8px; }
.ship-tile b { font-family: var(--fdisp); font-size: 16px; }
.ship-tile span { font-size: 13.5px; color: var(--muted); }
.ship-tile em { font-style: normal; font-family: var(--fdisp); font-weight: 700; font-size: 13px; color: var(--teal); margin-top: 4px; }

/* Size guide */
.size-tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.size-tab { background: #fff; border: 1.5px solid var(--line); border-radius: 100px; padding: 10px 18px; font-family: var(--fdisp); font-weight: 600; font-size: 14px; color: var(--ink); }
.size-tab.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.sizetable-wrap { overflow-x: auto; margin-bottom: 8px; }
.sizetable { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 420px; }
.sizetable th, .sizetable td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); }
.sizetable thead th { font-family: var(--fdisp); font-weight: 700; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); background: var(--soft); }
.sizetable tbody th { font-family: var(--fdisp); font-weight: 700; color: var(--ink); }
.sizetable tbody td { color: #3a4248; }
.sizetable tbody tr:hover { background: var(--soft); }
.measure-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 22px; }
.measure { background: var(--soft); border-radius: 12px; padding: 16px; }
.measure b { display: block; font-family: var(--fdisp); margin-bottom: 5px; }
.measure span { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* Embroidery */
.embsteps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 24px; }
.embstep { border: 1px solid var(--line); border-radius: 14px; padding: 18px; display: flex; flex-direction: column; gap: 6px; }
.embstep-n { width: 30px; height: 30px; border-radius: 50%; background: var(--teal); color: #fff; font-family: var(--fdisp); font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.embstep b { font-family: var(--fdisp); font-size: 15px; }
.embstep span { font-size: 13.5px; color: var(--muted); line-height: 1.45; }
.threadrow { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.thread { width: 34px; height: 34px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.14); }
.emb-opts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px; }
.emb-opt { background: var(--soft); border-radius: 12px; padding: 16px; }
.emb-opt b { display: block; font-family: var(--fdisp); margin-bottom: 5px; }
.emb-opt span { font-size: 14px; color: var(--muted); }
.emb-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 36px; }
.contact-card { border: 1px solid var(--line); border-radius: 14px; padding: 20px; display: flex; flex-direction: column; gap: 3px; transition: .15s; }
.contact-card:hover { border-color: var(--teal); transform: translateY(-3px); }
.contact-card svg { color: var(--teal); margin-bottom: 8px; }
.contact-card b { font-family: var(--fdisp); font-size: 15px; }
.contact-card > span { font-size: 14px; color: var(--ink); }
.cc-sub { font-size: 12.5px !important; color: var(--muted) !important; }
.contact-lower { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; }
.contact-form { display: flex; flex-direction: column; gap: 11px; }
.contact-text { resize: vertical; font-family: var(--fbody); }
.contact-sent { background: var(--soft); border: 1px solid var(--line); border-radius: 14px; padding: 30px; }
.contact-sent b { font-family: var(--fdisp); font-size: 17px; }
.store-addr { display: flex; align-items: flex-start; gap: 11px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; line-height: 1.5; }
.store-addr svg { color: var(--teal); margin-top: 2px; flex-shrink: 0; }
.store-addr b { font-family: var(--fdisp); }
.map-ph { margin-top: 16px; height: 180px; border-radius: 12px; background: var(--surface); background-image: repeating-linear-gradient(135deg, rgba(0,0,0,.04) 0 1px, transparent 1px 14px); display: flex; align-items: center; justify-content: center; }

@media (max-width: 900px) {
  .info-body { grid-template-columns: 1fr; gap: 28px; }
  .info-nav { position: static; display: flex; flex-wrap: wrap; gap: 8px; }
  .info-nav h4, .info-contactcard { display: none; }
  .info-navlink { width: auto; border: 1.5px solid var(--line); border-radius: 100px; padding: 8px 14px; }
  .info-navlink.on { border-color: var(--teal); }
  .ship-tiles, .embsteps, .emb-opts, .contact-grid { grid-template-columns: 1fr; }
  .embsteps { grid-template-columns: 1fr 1fr; }
  .measure-grid { grid-template-columns: 1fr; }
  .contact-lower { grid-template-columns: 1fr; gap: 30px; }
}

/* ============================ Get a Quote ============================ */
.quote { max-width: var(--maxw); margin: 0 auto; padding: 0 28px 90px; }
.quote-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 48px 0 64px; align-items: center; }
.quote-h { font-family: var(--fdisp); font-weight: 900; font-size: clamp(40px, 5.5vw, 68px); line-height: .92; letter-spacing: -.04em; text-transform: uppercase; margin: 18px 0 0; }
.quote-hero-text > p { color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 460px; margin: 20px 0 24px; }
.quote-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.quote-list li { display: flex; align-items: center; gap: 11px; font-family: var(--fdisp); font-weight: 600; font-size: 15px; }
.quote-list svg { color: var(--teal); flex-shrink: 0; }
.quote-formcard { background: var(--soft); border: 1px solid var(--line); border-radius: 20px; padding: 32px; }
.quote-formtitle { font-family: var(--fdisp); font-weight: 800; font-size: 22px; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 20px; }
.quote-form { display: flex; flex-direction: column; gap: 14px; }
.fldgroup { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.fldgroup label { font-family: var(--fdisp); font-weight: 600; font-size: 12.5px; letter-spacing: .02em; color: var(--ink); }
.fldgroup .fld { margin-bottom: 0; }
select.fld { appearance: none; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7680' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 14px center; }
.quote-text { resize: vertical; font-family: var(--fbody); }
.quote-fine { font-size: 13px; color: var(--muted); text-align: center; margin: 4px 0 0; }
.quote-fine a { color: var(--teal); font-weight: 600; }
.quote-steps-sec { padding: 24px 0 0; }
.quote-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.quote-step { border: 1px solid var(--line); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; gap: 7px; }
.quote-step b { font-family: var(--fdisp); font-size: 16px; }
.quote-step span { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ============================ Account ============================ */
.acct { max-width: var(--maxw); margin: 0 auto; }
.acct-head { border-bottom: 1px solid var(--line); }
.acct-head-in { padding: 36px 28px; display: flex; align-items: center; gap: 18px; }
.acct-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--teal); color: #fff; font-family: var(--fdisp); font-weight: 800; font-size: 22px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.acct-name { font-family: var(--fdisp); font-weight: 900; font-size: clamp(26px, 4vw, 38px); text-transform: uppercase; letter-spacing: -.02em; line-height: 1; }
.acct-email { color: var(--muted); font-size: 14px; margin-top: 4px; }
.acct-signout { margin-left: auto; background: none; border: 1.5px solid var(--line); border-radius: 100px; padding: 10px 20px; font-family: var(--fdisp); font-weight: 600; font-size: 13px; color: var(--ink); }
.acct-signout:hover { border-color: var(--ink); }
.acct-body { display: grid; grid-template-columns: 220px 1fr; gap: 44px; padding: 36px 28px 90px; }
.acct-nav { position: sticky; top: 92px; align-self: start; display: flex; flex-direction: column; gap: 2px; }
.acct-navlink { text-align: left; background: none; border: 0; padding: 12px 14px; border-radius: 10px; font-family: var(--fdisp); font-weight: 600; font-size: 14.5px; color: var(--muted); }
.acct-navlink:hover { background: var(--soft); color: var(--ink); }
.acct-navlink.on { background: var(--ink); color: #fff; }
.acct-h { font-family: var(--fdisp); font-weight: 800; font-size: 20px; text-transform: uppercase; letter-spacing: -.01em; margin: 0 0 18px; }
.acct-subh { font-family: var(--fdisp); font-weight: 700; font-size: 15px; text-transform: uppercase; margin: 0 0 14px; }
.acct-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 34px; }
.acct-card { background: var(--soft); border: 1px solid var(--line); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; transition: .15s; }
.acct-card:hover { border-color: var(--teal); transform: translateY(-3px); }
.acct-card-n { font-family: var(--fdisp); font-weight: 900; font-size: 32px; letter-spacing: -.02em; }
.acct-card-ic { color: var(--teal); }
.acct-card-l { font-size: 13.5px; color: var(--muted); font-weight: 600; }
.ordercard { border: 1px solid var(--line); border-radius: 16px; padding: 20px; margin-bottom: 16px; }
.ordercard-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.ordercard-meta { display: flex; flex-direction: column; gap: 3px; }
.ordercard-id { font-family: var(--fdisp); font-weight: 700; font-size: 15px; }
.ordercard-date { font-size: 13px; color: var(--muted); }
.ordercard-status { font-family: var(--fdisp); font-weight: 700; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; background: var(--soft); color: var(--muted); }
.ordercard-status.delivered { background: var(--teal-tint); color: var(--teal-dark); }
.ordercard-items { display: flex; flex-direction: column; gap: 12px; padding: 16px 0; }
.ordercard-item { display: flex; align-items: center; gap: 13px; }
.ordercard-sw { width: 44px; height: 54px; border-radius: 8px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.1); flex-shrink: 0; }
.ordercard-item b { font-family: var(--fdisp); font-weight: 700; font-size: 14px; display: block; }
.ordercard-item span { font-size: 13px; color: var(--muted); }
.ordercard-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--line); }
.ordercard-total { font-size: 14px; color: var(--muted); }
.ordercard-total b { font-family: var(--fdisp); font-weight: 800; font-size: 16px; color: var(--ink); margin-left: 6px; }
.ordercard-actions { display: flex; gap: 8px; }
.ordercard-actions button { background: none; border: 1.5px solid var(--line); border-radius: 100px; padding: 9px 16px; font-family: var(--fdisp); font-weight: 600; font-size: 13px; color: var(--ink); }
.ordercard-actions button:hover { border-color: var(--ink); }
.acct-help { display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--soft); border-radius: 16px; padding: 22px 24px; margin-top: 24px; }
.acct-help b { font-family: var(--fdisp); font-size: 16px; }
.acct-help p { color: var(--muted); font-size: 14px; margin-top: 4px; }
.acct-wish { grid-template-columns: repeat(3, 1fr); }
.acct-empty { color: var(--muted); }
.acct-addrs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.acct-addr { border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.acct-addr-tag { display: inline-block; font-family: var(--fdisp); font-weight: 700; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.acct-addr b { font-family: var(--fdisp); font-size: 15px; display: block; margin-bottom: 6px; }
.acct-addr p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.acct-addr-actions { display: flex; gap: 14px; margin-top: 16px; }
.acct-addr-actions button { background: none; border: 0; padding: 0; font-family: var(--fdisp); font-weight: 600; font-size: 13px; color: var(--teal); }
.acct-addr-add { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; border-style: dashed; color: var(--muted); cursor: pointer; min-height: 160px; }
.acct-addr-add:hover { border-color: var(--teal); color: var(--teal); }
.acct-addr-add span { font-family: var(--fdisp); font-weight: 600; font-size: 14px; }
.acct-form { max-width: 520px; display: flex; flex-direction: column; gap: 14px; }
.acct-form-divider { height: 1px; background: var(--line); margin: 12px 0; }

@media (max-width: 900px) {
  .quote-hero { grid-template-columns: 1fr; gap: 32px; }
  .quote-steps { grid-template-columns: 1fr 1fr; }
  .acct-body { grid-template-columns: 1fr; gap: 24px; }
  .acct-nav { position: static; flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .acct-navlink { border: 1.5px solid var(--line); border-radius: 100px; padding: 8px 14px; }
  .acct-cards { grid-template-columns: 1fr; }
  .acct-wish { grid-template-columns: 1fr 1fr; }
  .acct-addrs { grid-template-columns: 1fr; }
}

/* ============================ New: cards, wishlist, quick-add, stock ============================ */
.pcard-badges { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.stock-tag { font-family: var(--fdisp); font-weight: 700; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; padding: 5px 9px; border-radius: 6px; }
.stock-low { background: #fff; color: #b5471f; box-shadow: inset 0 0 0 1px #eccfc3; }
.stock-out { background: #e7e9e8; color: #6b7680; }
.pcard-wish { position: absolute; top: 10px; right: 10px; z-index: 3; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.92); border: 0; color: var(--ink); display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(-4px); transition: .18s; }
.pcard-media:hover .pcard-wish { opacity: 1; transform: translateY(0); }
.pcard-wish:hover { background: #fff; }
.pcard-wish.on { opacity: 1; transform: translateY(0); color: #d6492f; }
.pcard-sold .pcard-media { opacity: .72; }
.pcard-sold .pimg-mono, .pcard-sold image-slot { filter: grayscale(.4); }
.pcard-toprow { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.pcard-rate { display: inline-flex; align-items: center; gap: 3px; font-family: var(--fdisp); font-weight: 700; font-size: 12px; color: var(--ink); }
.pcard-rate svg { color: var(--accent); }
.pcard-rev { color: var(--muted); font-weight: 500; }

/* image-slot empty-state text legibility */
image-slot { border-radius: inherit; }

/* ============================ Search overlay ============================ */
.search-scrim { position: fixed; inset: 0; z-index: 320; background: rgba(16,21,24,.5); backdrop-filter: blur(3px); justify-content: center; align-items: flex-start; padding: 8vh 20px 20px; }
.search-scrim.is-open { animation: fadeIn .18s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.search-panel { width: 100%; max-width: 640px; background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.3); animation: searchIn .22s ease; }
@keyframes searchIn { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
.search-bar { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.search-bar > svg { color: var(--muted); flex-shrink: 0; }
.search-bar input { flex: 1; border: 0; outline: none; font-family: var(--fbody); font-size: 17px; color: var(--ink); }
.search-close { background: none; border: 0; color: var(--muted); padding: 4px; display: flex; }
.search-close:hover { color: var(--ink); }
.search-body { max-height: 60vh; overflow-y: auto; padding: 12px; }
.search-sugg-label, .search-results { display: block; }
.search-sugg-label { font-family: var(--fdisp); font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding: 8px 8px 12px; }
.search-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 8px 8px; }
.search-chips button { background: var(--soft); border: 1px solid var(--line); border-radius: 100px; padding: 9px 15px; font-family: var(--fdisp); font-weight: 600; font-size: 13px; color: var(--ink); }
.search-chips button:hover { border-color: var(--teal); color: var(--teal); }
.search-empty { padding: 30px 12px; color: var(--muted); font-size: 14px; }
.search-row { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; background: none; border: 0; padding: 10px 8px; border-radius: 10px; }
.search-row:hover { background: var(--soft); }
.search-sw { width: 44px; height: 54px; border-radius: 7px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.1); flex-shrink: 0; }
.search-info { flex: 1; min-width: 0; }
.search-name { display: block; font-family: var(--fdisp); font-weight: 700; font-size: 14px; }
.search-meta { display: block; font-size: 12.5px; color: var(--muted); }
.search-price { font-family: var(--fdisp); font-weight: 800; font-size: 14px; }
.search-all { width: 100%; text-align: left; background: none; border: 0; border-top: 1px solid var(--line); margin-top: 8px; padding: 14px 8px 6px; font-family: var(--fdisp); font-weight: 700; font-size: 14px; color: var(--teal); }

/* ============================ PDP additions ============================ */
.pdp-main-img .pcard-badges { top: 14px; left: 14px; }
.pdp-wish { position: absolute; top: 14px; right: 14px; z-index: 3; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.92); border: 0; color: var(--ink); display: flex; align-items: center; justify-content: center; transition: .15s; }
.pdp-wish:hover { background: #fff; }
.pdp-wish.on { color: #d6492f; }
.pdp-soldnote { background: var(--soft); border-radius: 10px; padding: 12px 14px; font-size: 13.5px; color: var(--muted); margin: 0 0 18px; }

/* Size guide drawer */
.sg-scrim { position: fixed; inset: 0; z-index: 330; background: rgba(16,21,24,.45); display: flex; justify-content: flex-end; animation: fadeIn .2s ease; }
.sg-drawer { width: 440px; max-width: 92vw; height: 100%; background: #fff; display: flex; flex-direction: column; animation: drawerInR .3s cubic-bezier(.77,0,.18,1); }
@keyframes drawerInR { from { transform: translateX(100%); } to { transform: translateX(0); } }
.sg-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.sg-head h3 { font-family: var(--fdisp); font-weight: 800; font-size: 19px; text-transform: uppercase; }
.sg-body { padding: 22px; overflow-y: auto; }
.sg-intro { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0 0 18px; }
.sg-note { background: var(--teal-tint); border-radius: 12px; padding: 16px; font-size: 14px; line-height: 1.55; margin-top: 18px; }

/* ============================ Filter additions ============================ */
.fprice { width: 100%; accent-color: var(--teal); margin: 4px 0 8px; }
.fprice-val { font-size: 13px; color: var(--muted); }
.fprice-val b { color: var(--ink); font-family: var(--fdisp); }
.chiprow { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 22px; }
.fchip { display: inline-flex; align-items: center; gap: 7px; background: var(--soft); border: 1px solid var(--line); border-radius: 100px; padding: 7px 8px 7px 14px; font-size: 13px; font-weight: 600; }
.fchip button { background: var(--ink); color: #fff; border: 0; border-radius: 50%; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; padding: 0; }
.chip-clear { background: none; border: 0; color: var(--teal); font-weight: 600; font-size: 13px; text-decoration: underline; padding: 4px; }

/* ============================ Promo ============================ */
.promo-box { display: flex; gap: 8px; margin-bottom: 12px; }
.promo-input { flex: 1; padding: 11px 13px; border: 1.5px solid var(--line); border-radius: 9px; font-family: var(--fbody); font-size: 13.5px; }
.promo-input:focus { outline: none; border-color: var(--teal); }
.promo-apply { background: var(--ink); color: #fff; border: 0; border-radius: 9px; padding: 0 18px; font-family: var(--fdisp); font-weight: 700; font-size: 13px; }
.promo-msg { display: flex; align-items: center; gap: 6px; font-size: 13px; margin-bottom: 12px; }
.promo-ok { color: var(--teal-dark); }
.promo-ok button { background: none; border: 0; color: var(--muted); text-decoration: underline; font-size: 12px; margin-left: auto; }
.promo-err { color: #c4452f; }
.sum-disc { color: var(--teal-dark); font-weight: 600; }

/* Footer newsletter subscribed state */
.ftr-subbed p { font-size: 13.5px; line-height: 1.5; margin-bottom: 12px; }
.ftr-subbed b { color: #fff; background: rgba(255,255,255,.12); padding: 2px 7px; border-radius: 5px; font-family: var(--fdisp); letter-spacing: .04em; }
.ftr-applycode { display: inline-block; text-decoration: none; background: var(--teal); color: #fff; border: 0; border-radius: 10px; padding: 11px 18px; font-family: var(--fdisp); font-weight: 700; font-size: 13px; }

@media (max-width: 760px) {
  .sg-drawer { width: 100%; }
  .pcard-wish { opacity: 1; transform: none; }
}

/* ============================ Responsive ============================ */
@media (max-width: 1000px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .ftr-main { grid-template-columns: 1fr 1fr; gap: 30px; }
  .pdp-grid { grid-template-columns: 1fr; gap: 30px; }
  .pdp-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; }
  .co-grid { grid-template-columns: 1fr; gap: 32px; }
  .co-summary { position: static; order: -1; }
}
@media (max-width: 760px) {
  .hdr-nav { display: none; }
  .hdr-burger { display: inline-flex; }
  .hdr-main { gap: 14px; }
  .hide-sm { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr); }
  .hero-text { width: 100%; max-width: 100vw; overflow: hidden; }
  .hero-sub { width: calc(100vw - 56px); max-width: 100%; overflow-wrap: anywhere; }
  .hero-media { min-height: 320px; }
  .hero-media img { object-position: center 38%; }
  .vprops { grid-template-columns: 1fr 1fr; }
  .vprop:nth-child(2n) { border-right: 0; }
  .vprop:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .prod-grid, .plp-grid, .drop-cards { grid-template-columns: 1fr 1fr; gap: 18px 14px; }
  .rev-grid { grid-template-columns: 1fr; }
  .feat, .ab-team { grid-template-columns: 1fr; }
  .feat-media { min-height: 300px; }
  .plp-body { grid-template-columns: 1fr; }
  .plp-aside { display: none; }
  .fbtn { display: inline-flex; }
  .ab-hero, .ab-stats { grid-template-columns: minmax(0, 1fr); }
  .ab-hero-media { min-height: 360px; }
  .ab-stats { grid-template-columns: 1fr 1fr; }
  .ab-stat:nth-child(2n) { border-right: 0; }
  .ab-values { grid-template-columns: 1fr 1fr; }
  .ftr-main { grid-template-columns: 1fr; }
  .section { padding: 52px 24px; }
}
@media (max-width: 460px) {
  .prod-grid, .plp-grid, .drop-cards, .cat-grid, .ab-values { grid-template-columns: 1fr 1fr; }
  .hero-h { font-size: 50px; }
}

/* ---- Shop by colour hub (/shop-by-colour/) ---- */
.info-body-wide { display: block; max-width: 1180px; margin: 0 auto; padding: 32px 20px 64px; }
.colour-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 18px; }
.colour-cell { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 18px 10px; border: 1px solid var(--line, #e5e5e5); border-radius: 14px; text-decoration: none; color: inherit; transition: border-color .15s ease, transform .15s ease; }
.colour-cell:hover { border-color: var(--teal, #5099A0); transform: translateY(-2px); }
.colour-chip { width: 56px; height: 56px; border-radius: 50%; background: #f2f2f2 center/cover no-repeat; box-shadow: inset 0 0 0 1px rgba(0,0,0,.10); }
.colour-name { font-family: var(--fdisp); font-weight: 700; font-size: 14px; text-align: center; line-height: 1.25; }
.colour-count { font-size: 12px; opacity: .62; }

@media (max-width: 520px) {
  .colour-grid { grid-template-columns: repeat(auto-fill, minmax(108px, 1fr)); gap: 12px; }
  .colour-chip { width: 44px; height: 44px; }
}

/* ---- Shop by brand hub (/shop-by-brand/) ---- */
.brand-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 18px; }
.brand-cell { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; min-height: 150px; padding: 20px 14px; border: 1px solid var(--line, #e5e5e5); border-radius: 14px; text-decoration: none; color: inherit; transition: border-color .15s ease, transform .15s ease; }
.brand-cell:hover { border-color: var(--teal, #5099A0); transform: translateY(-2px); }
.brand-logo { max-width: 120px; max-height: 44px; object-fit: contain; }
.brand-wordmark { font-family: var(--fdisp); font-weight: 800; font-size: 19px; letter-spacing: -.01em; text-align: center; line-height: 1.15; }
.brand-name { font-size: 13px; font-weight: 600; text-align: center; }
.brand-count { font-size: 12px; opacity: .62; }
/* The wordmark already names the brand — don't say it twice. */
.brand-cell .brand-wordmark + .brand-name { display: none; }

@media (max-width: 520px) {
  .brand-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
  .brand-cell { min-height: 124px; }
}
