@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
/* Modnio storefront theme v2 (2026-05-24). Distinct slate-teal/coral/amber identity. */
:root {
  --blue: #1d4a5e;
  --blue-dark: #143845;
  --blue-deep: #0f2c37;
  --green: #c2511a;
  --green-dark: #9a3f12;
  --orange: #e8523a;
  --gold: #e8523a;
  --ink: #2a2a35;
  --muted: #5b6270;
  --line: #e7e2d8;
  --soft: #f3ede4;
  --white: #fff;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(20,30,40,.05), 0 10px 28px rgba(20,30,40,.07);
  --shadow-lg: 0 20px 48px rgba(20,30,40,.16);
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --maxw: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: var(--font); font-size: 15px; line-height: 1.5; -webkit-font-smoothing: antialiased; max-width: 100%; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; }

.wrap { width: min(100% - 32px, var(--maxw)); margin-inline: auto; min-width: 0; }
.prototype-strip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 7px 14px; background: #0b1220; color: #fff; font-size: 12.5px; text-align: center; }
.prototype-strip strong { font-weight: 800; }
.prototype-strip span { color: #aeb6c6; }

/* ===== Header ===== */
.header { position: sticky; top: 0; z-index: 50; background: var(--blue); color: #fff; }
.header-row { display: flex; align-items: center; gap: 16px; padding: 12px 0; }
.hamburger { display: inline-flex; flex-direction: column; gap: 4px; padding: 8px; border: 0; background: transparent; }
.hamburger span { width: 22px; height: 2.5px; background: #fff; border-radius: 2px; }
.logo { display: inline-block; line-height: 1; font-weight: 800; font-size: 22px; letter-spacing: -.5px; white-space: nowrap; }
.logo b { color: #ffd84d; font-weight: 800; }
.deliver { display: flex; flex-direction: column; font-size: 12px; opacity: .95; white-space: nowrap; }
.deliver strong { font-weight: 700; }
.searchbar { position: relative; flex: 0 1 460px; min-width: 120px; max-width: 460px; }
.searchbar input { width: 100%; height: 44px; padding: 0 52px 0 18px; border: 0; border-radius: 999px; font-size: 15px; color: var(--ink); }
.searchbar input:focus { outline: 3px solid rgba(255,255,255,.5); }
.searchbar .go { position: absolute; right: 6px; top: 6px; width: 32px; height: 32px; border: 0; border-radius: 50%; background: var(--blue); display: grid; place-items: center; }
.searchbar .go::before { content: ""; width: 11px; height: 11px; border: 2px solid #fff; border-radius: 50%; box-shadow: 6px 6px 0 -4px #fff; }
.head-meta { display: flex; align-items: center; gap: 18px; white-space: nowrap; }
.head-meta .reviews { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.head-meta .reviews .star { color: var(--gold); }
.head-meta .reviews b { font-weight: 800; }
.head-link { font-size: 13.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.btn-sell { padding: 8px 16px; border: 1px solid rgba(255,255,255,.7); border-radius: 999px; background: transparent; color: #fff; font-weight: 700; font-size: 13.5px; }
.btn-sell:hover { background: rgba(255,255,255,.12); }
.icon-btn { position: relative; width: 38px; height: 38px; border: 0; background: transparent; color: #fff; display: grid; place-items: center; }
.icon-btn svg { width: 24px; height: 24px; }
.cart-count { position: absolute; top: -2px; right: -2px; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 999px; background: var(--orange); color: #fff; font-size: 11px; font-weight: 800; display: grid; place-items: center; }

/* Account dropdown */
.acct-wrap { position: relative; display: inline-block; }
.acct-menu { position: absolute; top: calc(100% + 6px); right: -4px; min-width: 240px; background: #fff; color: var(--ink); border-radius: 10px; box-shadow: var(--shadow-lg); padding: 4px 0; opacity: 0; visibility: hidden; transform: translateY(-4px); transition: opacity .12s ease, transform .12s ease, visibility 0s linear .12s; z-index: 100; }
.acct-menu.open { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity .12s ease, transform .12s ease, visibility 0s linear 0s; }
.acct-menu-head { padding: 12px 16px 10px; border-bottom: 1px solid var(--line); }
.acct-menu-head strong { display: block; font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 2px; }
.acct-menu-head span { display: block; font-size: 12px; color: var(--muted); line-height: 1.4; }
.acct-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 16px; font-size: 14px; color: var(--ink); text-decoration: none; transition: background .1s ease; }
.acct-menu a:hover { background: var(--soft); }
.acct-menu .acct-icon { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; font-size: 13px; color: var(--blue); font-weight: 700; }
.acct-divider { height: 1px; background: var(--line); margin: 4px 12px; }

/* commitments bar */
.commit { background: var(--blue-dark); color: #fff; }
.commit-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 0; font-size: 13px; }
.commit-row .left { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.commit-row .right { display: flex; align-items: center; gap: 18px; }
.commit-row .right span { display: inline-flex; align-items: center; gap: 6px; opacity: .95; }
.commit-row .right a { display: inline-flex; align-items: center; gap: 4px; font-weight: 700; }

/* flash deals */
.flash { margin: 16px 0 8px; border-radius: 10px; background: linear-gradient(90deg, var(--blue-deep), var(--blue)); color: #fff; }
.flash-row { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 14px; }
.flash-title { font-style: italic; font-weight: 800; font-size: clamp(20px, 3vw, 30px); }
.flash-ends { font-size: 13px; opacity: .9; }
.countdown { display: inline-flex; gap: 6px; }
.countdown b { min-width: 34px; padding: 4px 6px; border-radius: 6px; background: var(--green); color: #fff; font-size: 16px; font-weight: 800; text-align: center; font-variant-numeric: tabular-nums; }
.flash-row .chev { font-size: 22px; opacity: .8; }

/* section heading */
.sec-head { margin: 26px 0 14px; }
.sec-title { display: inline-block; font-size: clamp(20px, 2.6vw, 26px); font-weight: 800; border-bottom: 3px solid var(--orange); padding-bottom: 6px; }

/* category tabs */
.cat-tabs { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; }
.cat-tab { flex: 0 0 auto; padding: 12px 18px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink); font-weight: 600; font-size: 13.5px; text-align: center; line-height: 1.2; max-width: 150px; }
.cat-tab:hover { border-color: var(--blue); }
.cat-tab.active { background: #eaf2fb; border-color: var(--blue); color: var(--blue); font-weight: 800; }

/* ===== Product grid + card ===== */
.grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 22px 18px; margin: 18px 0 8px; }
.card { display: flex; flex-direction: column; background: #fff; border-radius: 10px; }
.card-media { position: relative; overflow: hidden; border-radius: 10px; background: var(--soft); aspect-ratio: 1/1; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.card:hover .card-media img { transform: scale(1.12); }
.card .play { position: absolute; right: 10px; bottom: 10px; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; box-shadow: var(--shadow); }
.card .play::before { content: ""; border-style: solid; border-width: 6px 0 6px 10px; border-color: transparent transparent transparent var(--ink); margin-left: 2px; }
.card .badge { position: absolute; left: 0; top: 12px; background: var(--blue); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 10px 4px 8px; border-radius: 0 6px 6px 0; }
.card .badge.rev { background: #3b5bdb; }
.card-body { padding: 10px 2px 0; display: flex; flex-direction: column; gap: 4px; }
.card-title { font-size: 14px; font-weight: 600; color: #222; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 38px; }
.card:hover .card-title { color: var(--blue); }
.stars { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; }
.stars .s { color: var(--gold); letter-spacing: 1px; }
.stars .c { color: var(--blue); font-weight: 600; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 2px; }
.price { color: var(--green); font-weight: 800; font-size: 20px; }
.price .cents { font-size: 12px; vertical-align: super; }
.was { color: #9aa1ad; text-decoration: line-through; font-size: 13px; }
.save { color: var(--green-dark); font-size: 12.5px; font-weight: 700; }
.seller { color: #9aa1ad; font-size: 12px; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 46px; padding: 0 20px; border-radius: 8px; font-weight: 800; font-size: 15px; border: 1px solid transparent; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); }
.btn-outline { background: #fff; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: #eaf2fb; }

/* ===== Footer ===== */
.footer { margin-top: 40px; background: var(--blue); color: #fff; }
.foot-touch { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.18); font-weight: 600; }
.foot-touch .item { display: inline-flex; align-items: center; gap: 8px; }
.foot-touch .totop { margin-left: auto; padding: 9px 16px; border: 1px solid rgba(255,255,255,.7); border-radius: 999px; font-weight: 700; }
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr) 1.4fr; gap: 28px; padding: 26px 0; }
.foot-cols h4 { font-size: 16px; margin-bottom: 12px; }
.foot-cols ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.foot-cols a { opacity: .92; font-size: 14px; }
.foot-cols a:hover { opacity: 1; text-decoration: underline; }
.subscribe { display: flex; background: #fff; border-radius: 999px; padding: 5px; max-width: 340px; }
.subscribe input { flex: 1; border: 0; background: transparent; padding: 0 14px; color: var(--ink); }
.subscribe input:focus { outline: none; }
.subscribe button { border: 0; border-radius: 999px; padding: 10px 16px; background: var(--orange); color: #fff; font-weight: 800; }
.app-badges { display: flex; gap: 10px; margin-top: 14px; }
.app-badges .b { padding: 9px 14px; border: 1px solid rgba(255,255,255,.6); border-radius: 8px; font-size: 13px; font-weight: 700; }
.foot-desc { margin-top: 14px; font-size: 13px; opacity: .9; line-height: 1.5; }
.foot-bottom { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.18); }
.socials { display: flex; gap: 10px; }
.socials a { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.16); display: grid; place-items: center; font-weight: 800; font-size: 13px; }
.pay-icons { display: flex; flex-wrap: wrap; gap: 6px; margin-left: auto; align-items: center; }
.pay-icons .pay { height: 24px; padding: 0 7px; border-radius: 4px; background: #fff; color: #333; font-size: 10px; font-weight: 800; display: grid; place-items: center; letter-spacing: .2px; }
.foot-legal { display: flex; flex-wrap: wrap; gap: 16px; padding: 12px 0 24px; font-size: 12.5px; opacity: .85; }
.foot-legal .copy { margin-right: auto; }

/* ===== Mega-menu drawer ===== */
.overlay { position: fixed; inset: 0; z-index: 80; background: rgba(15,23,42,.5); opacity: 0; visibility: hidden; transition: opacity .2s; }
.overlay.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; left: 0; z-index: 90; width: min(380px, 88vw); height: 100%; background: #fff; transform: translateX(-100%); transition: transform .25s ease; overflow-y: auto; }
.drawer.open { transform: translateX(0); }
.drawer-sec { padding: 16px 18px; border-bottom: 1px solid var(--line); }
.drawer-sec h4 { font-size: 15px; margin-bottom: 10px; }
.drawer-link { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; font-weight: 600; }
.drawer-link:hover { color: var(--blue); }
.recent { display: flex; gap: 10px; align-items: center; }
.recent img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; background: var(--soft); }
.support-card { display: flex; align-items: center; gap: 10px; padding: 12px; border-radius: 10px; background: var(--soft); margin-bottom: 8px; }
.support-card .dot { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 800; }

/* ===== Floating category rail ===== */
.rail { position: fixed; left: 0; top: 50%; transform: translateY(-50%) translateX(-100%); z-index: 40; width: 84px; max-height: 86vh; overflow-y: auto; background: var(--blue); padding: 12px 6px; border-radius: 0 10px 10px 0; transition: transform .3s ease; scrollbar-width: none; }
.rail.show { transform: translateY(-50%) translateX(0); }
.rail::-webkit-scrollbar { display: none; }
.rail-item { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 8px 2px; color: #fff; text-align: center; }
.rail-item img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.4); background: var(--soft); }
.rail-item span { font-size: 10px; font-weight: 700; line-height: 1.1; }
.rail-item:hover img { border-color: #fff; }

/* ===== Social-proof toast ===== */
.toast { position: fixed; left: 18px; bottom: 18px; z-index: 70; width: min(340px, 90vw); display: flex; gap: 10px; padding: 12px; background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg); transform: translateY(140%); transition: transform .4s ease; }
.toast.show { transform: translateY(0); }
.toast img { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; background: var(--soft); }
.toast .body { font-size: 12.5px; line-height: 1.35; }
.toast .body b { font-weight: 800; }
.toast .body a { color: var(--blue); font-weight: 700; }
.toast .x { margin-left: auto; align-self: flex-start; border: 0; background: transparent; color: var(--muted); font-size: 16px; }
.toast .demo { display: block; margin-top: 3px; color: #b0b6c0; font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

/* ===== Exit-intent modal ===== */
.modal-overlay { position: fixed; inset: 0; z-index: 95; background: rgba(15,23,42,.55); display: none; place-items: center; padding: 20px; }
.modal-overlay.open { display: grid; }
.modal { width: min(560px, 100%); background: #fff; border-radius: 14px; padding: 38px 34px; text-align: center; box-shadow: var(--shadow-lg); }
.modal .mark { width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 50%; background: conic-gradient(from 0deg, var(--orange), var(--blue), var(--green), var(--orange)); }
.modal .eyebrow { letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-size: 13px; }
.modal h2 { margin: 8px 0; font-size: clamp(24px, 4vw, 36px); }
.modal h2 .o { color: var(--orange); }
.modal p { color: #4b5563; margin: 14px 0 22px; }
.modal .cta { width: 100%; height: 60px; font-size: 18px; }
.modal .perks { margin-top: 18px; color: #4b5563; font-size: 14px; }
.modal .x { position: absolute; }
.modal-close { position: absolute; top: 14px; right: 16px; border: 0; background: transparent; font-size: 22px; color: var(--muted); }
.modal-card { position: relative; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .foot-cols { grid-template-columns: repeat(2, 1fr); }
  .head-meta .head-link.help, .btn-sell { display: none; }
}
@media (max-width: 820px) {
  .header-row { flex-wrap: wrap; gap: 10px; }
  .searchbar { order: 3; flex-basis: 100%; }
  .deliver, .head-meta .reviews { display: none; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 12px; }
  .commit-row .right span { display: none; }
  .foot-cols { grid-template-columns: 1fr; }
  .flash-title { font-size: 20px; }
}
@media (max-width: 480px) {
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price { font-size: 17px; }
}

/* ===== PDP ===== */
.breadcrumb { display: flex; gap: 8px; padding: 16px 0 4px; font-size: 13px; color: var(--blue); }
.breadcrumb span { color: var(--muted); }
.pdp-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,1fr) 360px; gap: 26px; padding: 8px 0 20px; }
.gallery { display: grid; grid-template-columns: 72px 1fr; gap: 12px; }
.thumbs { display: flex; flex-direction: column; gap: 8px; max-height: 520px; overflow-y: auto; scrollbar-width: thin; }
.thumb { width: 64px; height: 64px; border: 2px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--soft); padding: 0; position: relative; }
.thumb.active { border-color: var(--blue); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.video::after { content: ""; position: absolute; inset: 0; margin: auto; width: 0; height: 0; border-style: solid; border-width: 6px 0 6px 10px; border-color: transparent transparent transparent #fff; filter: drop-shadow(0 0 2px rgba(0,0,0,.6)); }
.main-media { position: relative; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--soft); aspect-ratio: 1/1; }
.main-media img { width: 100%; height: 100%; object-fit: cover; }
.main-media .badge { position: absolute; left: 0; top: 14px; background: #3b5bdb; color: #fff; font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 0 6px 6px 0; }
.main-media .share { position: absolute; right: 12px; top: 12px; width: 34px; height: 34px; border-radius: 50%; border: 0; background: rgba(255,255,255,.92); box-shadow: var(--shadow); font-size: 15px; }
.pdp-info .verified { display: inline-flex; align-items: center; gap: 6px; background: #eaf2fb; color: var(--blue); font-weight: 800; font-size: 12.5px; padding: 5px 10px; border-radius: 8px; }
.pdp-info h1 { font-size: 22px; margin: 12px 0; line-height: 1.25; }
.featured-review { border: 1px solid var(--line); border-radius: 12px; padding: 16px; background: #fff; }
.featured-review p { font-size: 15px; line-height: 1.5; }
.featured-review .who { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 13px; }
.vp { background: #e7f6ee; color: var(--green-dark); font-weight: 700; font-size: 11px; padding: 3px 8px; border-radius: 6px; }
.demo-tag { display: inline-block; background: #f1f3f6; color: #9aa1ad; font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 2px 6px; border-radius: 5px; }

.buybox { position: sticky; top: 96px; border: 1px solid var(--line); border-radius: 14px; padding: 18px; box-shadow: var(--shadow); height: fit-content; display: flex; flex-direction: column; gap: 12px; }
.buybox .bb-price { display: flex; align-items: baseline; gap: 10px; }
.buybox .bb-price .price { font-size: 26px; }
.buybox .save { font-size: 14px; }
.seller-card { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 10px; padding: 10px; }
.seller-card .av { width: 38px; height: 38px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-weight: 800; }
.seller-card .sold { color: var(--muted); font-size: 12px; }
.seller-card .msg { margin-left: auto; color: var(--blue); font-weight: 700; font-size: 13px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; width: fit-content; }
.qty button { width: 38px; height: 40px; border: 0; background: #fff; font-size: 18px; color: var(--green-dark); }
.qty input { width: 44px; height: 40px; border: 0; text-align: center; font-weight: 800; font-size: 15px; }
.instock { color: var(--green-dark); font-weight: 700; font-size: 13.5px; }
.bb-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.bb-pill { display: inline-flex; align-items: center; gap: 5px; border: 1px solid var(--line); border-radius: 8px; padding: 6px 9px; font-size: 12px; font-weight: 600; color: #4b5563; }
.viewing { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 12.5px; }
.trust-strip { list-style: none; margin: 10px 0 0; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: #fbfaf6; display: flex; flex-direction: column; gap: 7px; font-size: 13px; color: #3a3f4a; }
.trust-strip li { position: relative; padding-left: 22px; line-height: 1.45; }
.trust-strip li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: #1e6b3a; font-weight: 800; font-size: 14px; }
.trust-strip li b { color: var(--ink); font-weight: 700; }
.why-this { margin: 22px 0 0; padding: 20px 22px; background: #f7faff; border: 1px solid #d6e3f4; border-radius: 12px; }
.why-this h2 { font-size: 18px; margin: 0 0 12px; color: var(--ink); }
.why-this ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.why-this li { position: relative; padding-left: 26px; font-size: 14px; line-height: 1.5; color: #3a3f4a; }
.why-this li::before { content: "\2192"; position: absolute; left: 0; top: 0; color: var(--blue); font-weight: 800; }
.faq-body { padding: 0 4px; }
.faq-row { padding: 12px 0; border-bottom: 1px solid var(--line); }
.faq-row:last-child { border-bottom: 0; }
.faq-q { font-weight: 700; font-size: 14.5px; color: var(--ink); margin: 0 0 6px; }
.faq-a { font-size: 14px; line-height: 1.6; color: #3a3f4a; margin: 0; }
.viewing b { color: var(--ink); }
.guaranteed { display: flex; flex-direction: column; gap: 6px; border-top: 1px solid var(--line); padding-top: 10px; }
.guaranteed .g-row { display: flex; align-items: center; gap: 6px; color: var(--green-dark); font-weight: 700; font-size: 13px; }
.pay-mini { display: flex; flex-wrap: wrap; gap: 4px; }
.pay-mini .pay { height: 20px; font-size: 9px; padding: 0 5px; background: var(--soft); border: 1px solid var(--line); color: #555; border-radius: 3px; display: grid; place-items: center; font-weight: 800; }
.help-row { display: flex; align-items: center; justify-content: space-between; background: var(--soft); border-radius: 8px; padding: 9px 12px; font-size: 13px; }
.help-row a { color: var(--blue); font-weight: 700; }
.policy-card { border: 1px solid var(--line); border-radius: 12px; padding: 14px; margin-top: 14px; font-size: 13px; }
.policy-card h4 { color: var(--green-dark); margin-bottom: 8px; }

.about { border: 1px solid var(--line); border-radius: 12px; padding: 18px; margin: 8px 0 26px; }
.about summary { font-size: 19px; font-weight: 800; cursor: pointer; list-style: none; display: flex; justify-content: space-between; }
.about summary::-webkit-details-marker { display: none; }
.about ul { margin: 12px 0 0; padding-left: 20px; }
.about li { margin: 8px 0; }
.about li b { color: var(--ink); }

.row-section { margin: 26px 0; }
.row-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.row-head h3 { font-size: 20px; font-weight: 800; }
.row-section { min-width: 0; }
.about .about-body p { margin: 12px 0; color: #3a3f4a; line-height: 1.65; }
.about .about-body p:first-child { margin-top: 6px; }
.about .for-you { margin: 16px 0 4px; padding: 14px 16px; background: #f3ede4; border-radius: 8px; border-left: 3px solid var(--blue); }
.about .for-you strong { display: block; font-size: 11px; color: var(--blue-dark); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .07em; font-weight: 800; }
.about .for-you p { margin: 0; color: var(--ink); font-size: 14.5px; line-height: 1.55; }
.about .ship-body p { margin: 10px 0; color: #3a3f4a; line-height: 1.6; font-size: 14.5px; }
.about .ship-body strong { color: var(--ink); }
.about .ship-body a { color: var(--blue); font-weight: 600; }

.row-scroll { display: flex; gap: 16px; overflow-x: auto; max-width: 100%; padding-bottom: 8px; scroll-snap-type: x proximity; scrollbar-width: none; -ms-overflow-style: none; }
.row-scroll::-webkit-scrollbar { display: none; }
.row-scroll .card { flex: 0 0 180px; scroll-snap-align: start; }
.modnio-carousel { position: relative; padding: 0 0 2px; }
.modnio-carousel .swiper-slide { width: 220px; height: auto; }
.modnio-carousel .swiper-slide .card { width: 100%; }
.modnio-carousel .swiper-button-prev, .modnio-carousel .swiper-button-next { color: var(--blue); background: #fff; width: 40px; height: 40px; border-radius: 50%; box-shadow: var(--shadow); margin-top: -22px; }
.modnio-carousel .swiper-button-prev:after, .modnio-carousel .swiper-button-next:after { font-size: 16px; font-weight: 900; }
.modnio-carousel .swiper-button-disabled { opacity: 0; pointer-events: none; }
.collection-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.collection-pills a { padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 13.5px; font-weight: 600; }
.collection-pills a:hover { border-color: var(--blue); color: var(--blue); }

.trust-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; background: var(--soft); border-radius: 12px; padding: 22px; margin: 26px 0; text-align: center; }
.trust-band .t { display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 800; }
.trust-band .t .ic { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; }

.reviews { border: 1px solid var(--line); border-radius: 12px; padding: 20px; margin: 26px 0; }
.rev-top { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.rev-top .big { font-size: 26px; font-weight: 800; }
.rev-tabs { display: flex; gap: 22px; border-bottom: 1px solid var(--line); margin: 14px 0; }
.rev-tabs button { border: 0; background: transparent; padding: 10px 0; font-weight: 700; color: var(--muted); border-bottom: 2px solid transparent; }
.rev-tabs button.active { color: var(--ink); border-color: var(--ink); }
.rev-filter { display: flex; margin: 0 0 16px auto; max-width: 360px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.rev-filter input { flex: 1; border: 0; padding: 10px 12px; }
.rev-filter button { border: 0; background: var(--blue); color: #fff; width: 44px; }
.rev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.review-card { background: var(--soft); border-radius: 10px; padding: 16px; }
.review-card .head { display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; }
.review-card .who { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 13px; }
.review-card .av { width: 28px; height: 28px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 12px; }
.review-card .stars { color: #f5a623; letter-spacing: 1px; font-size: 13px; }
.review-card .vp { margin-left: auto; }
.review-card .helpful { margin-top: 10px; font-size: 12px; color: var(--muted); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.proof-pending { border: 1px dashed var(--line); border-radius: 10px; padding: 18px; color: var(--muted); background: #fff; }
/* PDP middle-column enrichment (highlights + specs + assurance) added 2026-05-24 */
.highlights { list-style: none; margin: 16px 0; padding: 0; display: grid; gap: 10px; }
.highlights li { position: relative; padding-left: 28px; font-size: 14.5px; line-height: 1.45; color: #3a3f4a; }
.highlights li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%; background: #e7f6ee; color: var(--green-dark); font-weight: 800; font-size: 12px; display: grid; place-items: center; }
.highlights li b { color: var(--ink); }
.featured-review { margin-top: 16px; }
.featured-review .who .av { width: 30px; height: 30px; border-radius: 50%; color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 12px; flex: 0 0 auto; }
.info-assure { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); font-weight: 600; }
.info-assure span { display: inline-flex; align-items: center; gap: 6px; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; margin-top: 14px; }
.spec-grid .sr { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.spec-grid .sr span { color: var(--muted); }
.spec-grid .sr b { color: var(--ink); font-weight: 700; text-align: right; }
@media (max-width: 600px) { .spec-grid { grid-template-columns: 1fr; } }

/* ===== Checkout ===== */
.co-header { background: var(--blue); color: #fff; }
.co-header .row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.co-header .logo { font-size: 20px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 400px; gap: 26px; padding: 26px 0 50px; align-items: start; }
.express { border: 1px solid var(--blue); border-radius: 12px; padding: 14px; text-align: center; }
.express .lbl { color: var(--blue); font-weight: 800; margin-bottom: 6px; font-size: 14px; }
.express .btns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; justify-content: center; }
.express .pay-btn { height: 36px; min-width: 110px; flex: 1 1 110px; max-width: 170px; border: 0; border-radius: 6px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 4px; font-size: 14px; padding: 0 12px; transition: filter .12s ease, transform .08s ease; }
.express .pay-btn:hover { filter: brightness(1.08); }
.express .pay-btn:active { transform: scale(.98); }
.express .pay-btn:disabled { opacity: .55; cursor: wait; }
.express .pay-btn svg { display: block; height: 18px; width: auto; }

.express .pay-btn.apay { background: #000; color: #fff; }
.express .pay-btn.apay .ap-text { font-weight: 500; font-size: 14.5px; letter-spacing: -.2px; }

.express .pay-btn.gpay { background: #fff; color: #3c4043; border: 1px solid #dadce0; }
.express .pay-btn.gpay .gp-g-blue { fill: #4285F4; }
.express .pay-btn.gpay .gp-g-red { fill: #EA4335; }
.express .pay-btn.gpay .gp-g-yellow { fill: #FBBC04; }
.express .pay-btn.gpay .gp-g-green { fill: #34A853; }
.express .pay-btn.gpay .gp-pay { font-weight: 600; color: #5f6368; font-size: 14px; letter-spacing: -.1px; margin-left: 2px; }

.express .pay-btn.paypal { background: #ffc439; color: #003087; }
.express .pay-btn.paypal .pp-text { font-style: italic; font-weight: 800; font-size: 15px; letter-spacing: -.4px; }
.express .pay-btn.paypal .pp-b { color: #003087; }
.express .pay-btn.paypal .pp-a { color: #009cde; }

.express .pay-btn.klarna { background: #ffa8cd; color: #17120f; }
.express .pay-btn.klarna .k-text { font-weight: 800; font-size: 15px; letter-spacing: -.4px; }

/* Inline checkout error banner */
.co-error { margin: 10px 0 0; padding: 10px 12px; background: #fde7e7; border: 1px solid #f3c6c2; border-radius: 8px; color: #b42318; font-size: 13.5px; line-height: 1.45; display: flex; gap: 10px; align-items: flex-start; }
.co-error .co-error-x { background: transparent; border: 0; color: #b42318; font-weight: 800; cursor: pointer; padding: 0 2px; font-size: 16px; }
.co-error strong { font-weight: 700; }
.divider { text-align: center; color: var(--muted); font-weight: 700; font-size: 12px; margin: 18px 0; letter-spacing: .08em; }
.co-field { border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; margin-bottom: 12px; }
.co-field h3 { display: flex; align-items: center; gap: 8px; font-size: 15px; margin-bottom: 10px; }
.co-field input:not([type="checkbox"]):not([type="radio"]) { width: 100%; height: 40px; border: 1px solid var(--line); border-radius: 8px; padding: 0 12px; font-size: 14px; color: var(--ink); }
.co-field input:focus { outline: 2px solid rgba(29,74,94,.35); outline-offset: 0; }
.co-field .chk { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 13px; color: var(--muted); cursor: pointer; user-select: none; }
.co-field .chk input[type="checkbox"] { appearance: none; -webkit-appearance: none; width: 16px; height: 16px; border: 1.5px solid #b5bcc7; border-radius: 3px; cursor: pointer; position: relative; flex: 0 0 16px; background: #fff; transition: background .1s, border-color .1s; }
.co-field .chk input[type="checkbox"]:hover { border-color: var(--blue); }
.co-field .chk input[type="checkbox"]:checked { background: var(--blue); border-color: var(--blue); }
.co-field .chk input[type="checkbox"]:checked::after { content: ""; position: absolute; left: 4px; top: 1px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.co-field .chk:hover { color: var(--ink); }
.summary { border: 1px solid var(--line); border-radius: 14px; padding: 18px; position: sticky; top: 20px; }
.summary .line { display: flex; justify-content: space-between; padding: 8px 0; }
.summary .total { display: flex; justify-content: space-between; border-top: 2px solid var(--ink); margin-top: 8px; padding-top: 12px; font-size: 20px; font-weight: 800; }
.summary .total b { color: var(--green); }
.summary .item { display: flex; gap: 10px; align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.summary .item img { width: 54px; height: 54px; border-radius: 8px; object-fit: cover; background: var(--soft); }
.co-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; background: #e7f6ee; border-radius: 10px; padding: 12px; margin-top: 12px; text-align: center; font-size: 12px; color: var(--green-dark); font-weight: 700; }

@media (max-width: 1000px) {
  .pdp-grid { grid-template-columns: 1fr; }
  .buybox { position: static; }
  .checkout-grid { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .gallery { grid-template-columns: 56px 1fr; }
  .trust-band { grid-template-columns: 1fr; gap: 10px; }
  .express .btns { grid-template-columns: 1fr; }
}

/* ===================== v2: differentiation overrides + new components + a11y/responsive fixes ===================== */
body { background: #faf8f4; }
.logo b { color: #ffd84d; }

/* sharper, bordered, editorial cards */
.card { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: #fff; min-width: 0; }
.card-media { border-radius: 0; }
.card-body { padding: 12px; }
.price { color: var(--green-dark); }
.card .badge.rev { background: #6b3a9e; }
.cat-tab.active { color: var(--blue-dark); background: #e8f0f2; border-color: var(--blue); }
.sec-title { border-bottom-color: var(--orange); }
.deliver, .commit-row .right span { opacity: 1; }

/* focus visibility */
.hamburger:focus-visible, .icon-btn:focus-visible, .cat-tab:focus-visible, .btn:focus-visible,
.cart-button:focus-visible, a:focus-visible, button:focus-visible, .tile:focus-visible, .product-card:focus-visible,
.thumb:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* real payment chips (brand-colored) */
.pay-chip { height: 26px; min-width: 40px; padding: 0 8px; border-radius: 4px; display: inline-grid; place-items: center; font-size: 10px; font-weight: 900; letter-spacing: .2px; color: #fff; border: 1px solid rgba(0,0,0,.06); }
.pay-chip.sm { height: 22px; min-width: 34px; font-size: 9px; }
.pay-chip .mc { display: inline-flex; }
.pay-chip .mc i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.pay-chip .mc i:last-child { margin-left: -5px; }

/* image lightbox (maximize on click) */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(10,15,20,.88); display: none; place-items: center; padding: 28px; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 90vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox .lb-close { position: absolute; top: 16px; right: 22px; width: 44px; height: 44px; border: 0; background: rgba(255,255,255,.15); color: #fff; font-size: 26px; border-radius: 50%; cursor: pointer; }
.main-media img { cursor: zoom-in; }
.thumb { cursor: pointer; }

/* mini-cart drawer (right) */
.cartdrawer { position: fixed; top: 0; right: 0; z-index: 92; width: min(420px, 92vw); height: 100%; background: #fff; transform: translateX(100%); transition: transform .25s ease; display: flex; flex-direction: column; box-shadow: -18px 0 50px rgba(20,30,40,.2); }
.cartdrawer.open { transform: translateX(0); }
.cartdrawer .cd-head { display: flex; align-items: center; justify-content: space-between; padding: 18px; border-bottom: 1px solid var(--line); }
.cartdrawer .cd-head h3 { font-size: 18px; }
.cartdrawer .cd-close { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: #fff; font-size: 18px; cursor: pointer; }
.cartdrawer .cd-body { flex: 1; overflow-y: auto; padding: 12px 18px; }
.cd-line { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cd-line img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; background: var(--soft); }
.cd-line .t { font-size: 13px; font-weight: 600; line-height: 1.3; }
.cd-line .meta { color: var(--muted); font-size: 12px; margin-top: 3px; display: flex; align-items: center; gap: 8px; }
.cd-qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; }
.cd-qty button { width: 26px; height: 26px; border: 0; background: #fff; color: var(--green-dark); font-size: 15px; cursor: pointer; }
.cd-qty span { min-width: 22px; text-align: center; font-weight: 700; font-size: 13px; }
.cd-remove { border: 0; background: transparent; color: var(--muted); font-size: 12px; cursor: pointer; text-decoration: underline; }
.cd-foot { padding: 16px 18px; border-top: 1px solid var(--line); }
.cd-sub { display: flex; justify-content: space-between; font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.cd-sub b { color: var(--green-dark); }
.cd-empty { color: var(--muted); text-align: center; padding: 40px 10px; }

/* search clear button */
.search .clear { position: absolute; right: 44px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border: 0; border-radius: 50%; background: #d9dee4; color: #333; font-size: 13px; cursor: pointer; display: none; }
.search .clear.show { display: grid; place-items: center; }

/* empty state */
.empty-state { grid-column: 1 / -1; text-align: center; padding: 50px 20px; color: var(--muted); }
.empty-state h3 { color: var(--ink); margin-bottom: 6px; }
.empty-state .actions { display: flex; gap: 10px; justify-content: center; margin-top: 16px; }

/* a11y / contrast for small text */
.seller, .was, .review-card .head { color: #6a6f7a; }

@media (max-width: 820px) {
  .rail { display: none !important; }
}
@media (max-width: 600px) {
  .gallery { grid-template-columns: 1fr; }
  .thumbs { flex-direction: row; max-height: none; overflow-x: auto; }
  .thumb { flex: 0 0 auto; }
  .row-scroll { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow-x: visible; }
  .row-scroll .card { flex: initial; }
}

/* cart-count add animation */
@keyframes cartpulse { 0% { transform: scale(1); } 40% { transform: scale(1.5); } 100% { transform: scale(1); } }
.cart-count.pulse { animation: cartpulse .35s ease; }
.co-field h2 { display: flex; align-items: center; gap: 8px; font-size: 16px; margin-bottom: 12px; }
