/* Voetris Shop - Frontend Stylesheet */

:root {
  --black: #050505;
  --white: #fff;
  --paper: #fbfbfc;
  --panel: #f4f5f7;
  --ink: #080808;
  --muted: #666b74;
  --line: rgba(5, 5, 5, .12);
  --soft-line: rgba(5, 5, 5, .07);
  --blue: #0d4d9b;
  --red: #ee2219;
  --magenta: #b629a7;
  --green: #16865c;
  --brown: #8c4f2d;
  --shadow: 0 22px 60px rgba(0, 0, 0, .16);
  --max: 1480px;
  --nav-height: 74px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

body:has(.nav-mobile.open) {
  overflow: hidden;
}

.navbar,
.home-shell,
.site-footer {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  background: var(--paper);
}

.announcement-bar {
  position: relative;
  min-height: 46px;
  padding: 10px 72px 10px 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(90deg, #0a0d14 0%, #0f1420 45%, #0a0d14 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .96);
  text-align: center;
}

.announcement-copy {
  max-width: 1120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .01em;
}

.announcement-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.announcement-bar strong {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  margin: 0 6px;
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-weight: 900;
  letter-spacing: .06em;
}

.announcement-close {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .9);
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.announcement-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, .16);
  transform: translateY(-50%) scale(1.04);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 9200;
  margin-top: 0;
  border-radius: 0;
  overflow: visible;
}

.nav-inner {
  min-height: var(--nav-height);
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: visible;
}

.nav-logo,
.footer-logo {
  line-height: 1;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.brand-logo-nav {
  height: 28px;
  max-height: 28px;
}

.brand-logo-footer {
  height: 36px;
  max-height: 36px;
  max-width: min(190px, 100%);
  line-height: 1;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: clamp(18px, 3vw, 52px);
  margin-left: 7vw;
  margin-right: auto;
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a,
.footer-col a,
.section-link,
.text-arrow {
  transition: opacity .18s ease, transform .18s ease;
}

.nav-links a:hover,
.footer-col a:hover,
.section-link:hover,
.text-arrow:hover {
  opacity: .58;
}

.nav-links a.active,
.nav-mobile a.active {
  opacity: 1;
  color: var(--black);
  font-weight: 900;
}

/* ── "Collections" hover dropdown ─────────────────────────────────────────── */
.nav-collections-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-collections-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-collections-caret {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  transition: transform .2s ease;
}

.nav-collections-wrap:hover .nav-collections-caret,
.nav-collections-wrap:focus-within .nav-collections-caret {
  transform: rotate(180deg);
}

.nav-collections-dd {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Invisible padding "bridge" — closes the gap between the link and the
     card below so the pointer never leaves a descendant of .nav-collections-wrap
     while moving down to it (otherwise :hover drops and the menu vanishes
     mid-transit, a classic dropdown-menu bug). */
  padding-top: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 500;
}

.nav-collections-wrap:hover .nav-collections-dd,
.nav-collections-wrap:focus-within .nav-collections-dd {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-collections-dd-inner {
  min-width: 210px;
  background: var(--white);
  border-top: 2px solid var(--ink);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .15);
  padding: 10px 0;
}

.nav-collections-dd-link {
  display: block;
  padding: 10px 24px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  opacity: 1;
  transition: background .15s ease;
}

.nav-collections-dd-link:hover {
  background: var(--paper, #f7f7f5);
  opacity: 1;
}

.nav-actions {
  gap: 24px;
  overflow: visible;
}

.nav-icon-btn,
.nav-hamburger,
.btn-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.nav-icon-btn {
  position: relative;
  width: 28px;
  height: 28px;
}

.nav-icon-btn svg,
.btn-cart svg {
  width: 22px;
  height: 22px;
}

.btn-cart {
  position: relative;
  width: 28px;
  height: 28px;
  padding: 0;
  font-size: 0;
}

/* ── Nav icon hover labels ──────────────────────────────────────────────── */
[data-nav-label] { position: relative; }
[data-nav-label]::after {
  content: attr(data-nav-label);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .01em;
  white-space: nowrap;
  color: #fff;
  background: #111;
  padding: 5px 12px 6px;
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .14s ease;
  line-height: 1;
  z-index: 9999;
}
[data-nav-label]:hover::after { opacity: 1; }
@media (max-width: 768px) { [data-nav-label]::after { display: none; } }
.so-open [data-nav-label]::after { display: none; }

.cart-count {
  position: absolute;
  top: -8px;
  right: -9px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--black);
  font-size: .68rem;
  font-weight: 900;
}

.nav-hamburger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  gap: 5px;
}

.nav-hamburger span {
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.nav-mobile {
  display: none;
}

.shop-flash,
.shop-alert {
  width: min(var(--max), calc(100% - 48px));
  margin: 16px auto 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.shop-flash {
  position: fixed;
  top: 88px;
  left: 50%;
  z-index: 9300;
  transform: translateX(-50%);
}

.shop-flash-error,
.shop-alert-error {
  border-color: rgba(200, 63, 52, .28);
  color: #842019;
  background: #fff0ed;
}

.shop-flash-success,
.shop-alert-success {
  border-color: rgba(40, 130, 92, .28);
  color: #1b6849;
  background: #edf8f2;
}

.shop-flash-info,
.shop-alert-info {
  border-color: rgba(68, 108, 181, .24);
  color: #274b86;
  background: #eef4ff;
}

.shop-flash-close {
  float: right;
  border: 0;
  background: transparent;
  color: inherit;
}

.cart-toast-wrap {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: grid;
  gap: 10px;
  width: min(340px, calc(100vw - 32px));
}

.cart-toast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--black);
  color: var(--white);
  background: var(--black);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.cart-toast-error {
  border-color: #842019;
  background: #842019;
}

.cart-toast button {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, .45);
  color: inherit;
  background: transparent;
  font-size: 1rem;
  line-height: 1;
}

.home-shell {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0;
}

.home-block {
  order: var(--block-order, 0);
}

.hero {
  --hero-height: clamp(640px, 48vw, 860px);
  min-height: var(--hero-height);
  height: var(--hero-height);
  position: relative;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 30%, rgba(13, 77, 155, .08), transparent 10%),
    linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(247, 248, 250, .9));
  touch-action: pan-y;
  user-select: none;
}

.hero-slides {
  min-height: var(--hero-height);
  height: var(--hero-height);
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  min-height: var(--hero-height);
  height: var(--hero-height);
  display: grid;
  grid-template-columns: minmax(420px, .82fr) minmax(540px, 1fr);
  background: var(--hero-bg, var(--paper));
  opacity: 0;
  pointer-events: none;
  transform: translateX(22px);
  transition: opacity .55s ease, transform .55s ease;
}

.hero-bg {
  display: none;
}

.hero-layout-background {
  isolation: isolate;
}

.hero-layout-background .hero-bg {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--hero-bg, var(--paper));
}

.hero-layout-background .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .84) 0%, rgba(255, 255, 255, .68) 32%, rgba(255, 255, 255, 0) 58%);
  pointer-events: none;
}

.hero-layout-background .hero-bg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-layout-background .hero-left,
.hero-layout-background .hero-right {
  z-index: 1;
}

.hero-layout-background .hero-right {
  display: none;
}

.hero-slide.active {
  position: relative;
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-left {
  padding: 88px 0 96px 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-left::before {
  content: "";
  position: absolute;
  left: 56px;
  top: 88px;
  width: 1px;
  height: 190px;
  background: linear-gradient(#c9cdd3 0 14px, transparent 14px 22px, #c9cdd3 22px 32px, transparent 32px 40px, #c9cdd3 40px 54px, transparent 54px 68px, #c9cdd3 68px 100%);
}

.hero-kicker {
  margin-bottom: 22px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 610px;
  margin: 0 0 24px;
  font-size: clamp(3.6rem, 5.3vw, 5.8rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-sub {
  max-width: 290px;
  margin: 0 0 34px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.38;
}

.hero-actions,
.qty-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary-dark,
.btn-outline-dark,
.btn-white,
.btn,
.btn-add,
.btn-add-to-cart,
.btn-checkout,
.newsletter-form button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 0;
  border: 1px solid var(--black);
  padding: 0 24px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}

.btn-primary-dark,
.btn-primary,
.btn-add-to-cart,
.btn-checkout {
  color: var(--white);
  background: var(--black);
}

.btn-primary-dark svg {
  width: 18px;
  height: 18px;
}

.btn-outline-dark,
.btn-outline {
  color: var(--black);
  background: transparent;
}

.btn-white {
  color: var(--white);
  border-color: rgba(255, 255, 255, .76);
  background: rgba(255, 255, 255, .03);
}

.btn-primary-dark:hover,
.btn-outline-dark:hover,
.btn-white:hover,
.btn:hover,
.btn-add:hover,
.btn-add-to-cart:hover,
.btn-checkout:hover,
.newsletter-form button:hover {
  transform: translateY(-2px);
}

.hero-right {
  min-height: var(--hero-height);
  height: var(--hero-height);
  position: relative;
  overflow: hidden;
  background: var(--hero-bg, var(--paper));
}

.hero-meta {
  position: absolute;
  right: 72px;
  top: 250px;
  z-index: 4;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero-right-img,
.hero-right > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-controls {
  position: absolute;
  left: 112px;
  bottom: 28px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: none;
}

.hero-arrow,
.hero-dot {
  border: 0;
  background: transparent;
  color: var(--ink);
}

.hero-arrow {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0;
  font-size: 1rem;
  line-height: 1;
  transition: background .18s ease, color .18s ease;
  cursor: pointer;
}

/* Hide hero slide prev/next buttons */
.hero .hero-controls .hero-arrow {
  display: none !important;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  color: var(--white);
  background: var(--black);
  outline: 0;
}

.hero-dots {
  display: none !important;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  margin: 0;
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  padding: 0;
  border-radius: 50%;
  background: rgba(5, 5, 5, .22);
  cursor: pointer;
}

.hero-dot.active,
.hero-dot[aria-selected="true"] {
  background: var(--black);
  box-shadow: 0 0 0 5px rgba(5, 5, 5, .08);
}

.hero-arrow svg,
.drop-carousel-btn svg {
  width: 16px;
  height: 16px;
  display: block;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-motorsport .hero-right > img {
  object-position: center;
}

.hero-tee .hero-right > img {
  object-position: center;
  background: var(--panel);
}

.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-inner {
  width: calc(100% - 64px);
  margin: 0 auto;
  padding: 18px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  min-width: 0;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
}

.trust-icon svg {
  width: 32px;
  height: 32px;
}

.trust-label {
  font-size: .82rem;
  font-weight: 900;
}

.trust-sub {
  margin-top: 2px;
  color: var(--muted);
  font-size: .72rem;
}

.section,
.collections-inner,
.product-detail,
.cart-page,
.checkout-page,
.orders-page {
  width: calc(100% - 64px);
  max-width: 1396px;
  margin: 0 auto;
}

.section {
  padding: 28px 0 40px;
}

.arrivals-section::before,
.collections-inner::before,
.featured-drop::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--line);
  margin-bottom: 34px;
}

.featured-drop::before {
  grid-column: 1 / -1;
  margin-bottom: 14px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-title {
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  font-weight: 500;
  line-height: 1;
}

.section-title::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  margin-top: 13px;
  background: var(--black);
}

.section-link,
.text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.section-link span,
.text-arrow span,
.btn-white span {
  font-size: 1.2rem;
  line-height: 1;
}

.collections-bg {
  background: var(--paper);
}

/* .collections-inner {
  padding: 0 0 52px;
} */

.collections-track-wrap {
  overflow: hidden;
}

.collections-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.col-card,
.prod-card {
  min-width: 0;
  background: transparent;
}

.prod-card {
  display: flex;
  flex-direction: column;
}

.col-card {
  position: relative;
  min-height: clamp(390px, 38vw, 520px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--black);
  isolation: isolate;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.col-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, .36);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .16);
}

.col-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .12) 36%, rgba(0, 0, 0, .72)),
    linear-gradient(90deg, rgba(0, 0, 0, .2), transparent 36%, transparent 64%, rgba(0, 0, 0, .12));
  pointer-events: none;
}

.col-card-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.col-card-img img,
.main-image img,
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.col-card-img img {
  object-position: center;
  transition: transform .38s ease;
}

.col-card:hover .col-card-img img {
  transform: scale(1.045);
}

.prod-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .32s ease, opacity .4s ease;
}

.prod-img-hover {
  opacity: 0;
}

.prod-card:hover .prod-img img,
.wl-card:hover .prod-img img {
  transform: scale(1.04);
}

/* Second product photo, crossfades in on hover (only when one exists) */
.prod-card:hover .prod-img.has-hover .prod-img-main,
.wl-card:hover .prod-img.has-hover .prod-img-main {
  opacity: 0;
}

.prod-card:hover .prod-img.has-hover .prod-img-hover,
.wl-card:hover .prod-img.has-hover .prod-img-hover {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .prod-img img {
    transition: none;
  }
}

.col-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 38px;
  z-index: 3;
  padding: 0 32px;
  color: var(--white);
  text-align: center;
}

.prod-body {
  padding: 16px 0 8px;
}

.col-card-name,
.cart-item-name,
.order-number {
  display: block;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
}

.col-card-eyebrow {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(.92rem, 1.2vw, 1.1rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: .04em;
}

.col-card-name {
  color: var(--white);
  font-size: clamp(1.15rem, 1.65vw, 1.65rem);
  line-height: 1.02;
  letter-spacing: .34em;
  font-weight: 900;
  text-indent: .34em;
  text-transform: uppercase;
}

.col-card-text {
  max-width: 320px;
  margin-top: 10px;
  color: rgba(255, 255, 255, .78);
  font-size: .84rem;
  line-height: 1.45;
}

.prod-price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.cart-item-variant {
  margin-top: 3px;
  color: var(--muted);
  font-size: .84rem;
}

.col-card-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin-top: 28px;
  padding: 16px 38px;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.collections-nav {
  display: none;
}

.gender-shop,
.featured-drop {
  width: calc(100% - 64px);
  max-width: 1396px;
  margin: 28px auto 0;
  display: grid;
  gap: 20px;
}

.gender-shop {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gender-card,
.drop-hero {
  position: relative;
  min-height: clamp(340px, 34vw, 480px);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.gender-media,
.drop-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.gender-media img,
.gender-media .vo-art,
.drop-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .38s ease;
}

.gender-media img {
  object-position: 58% center;
}

.gender-card::before,
.drop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .2) 35%, rgba(0, 0, 0, .72));
  pointer-events: none;
}

.gender-card:hover .gender-media img,
.gender-card:hover .gender-media .vo-art,
.drop-hero:hover > img {
  transform: scale(1.035);
}

.gender-copy,
.drop-copy {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
}

.gender-eyebrow,
.drop-eyebrow {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .98rem;
  font-style: italic;
}

.gender-copy h2,
.drop-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: .92;
  font-weight: 900;
  letter-spacing: -.045em;
}

.gender-copy p,
.drop-copy p {
  max-width: 430px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, .82);
  font-size: .95rem;
  line-height: 1.55;
}

.gender-copy span,
.drop-copy span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  color: var(--white);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.featured-drop {
  display: block;
  margin-top: 42px;
}

.drop-header {
  margin-bottom: 14px;
}

.drop-header-right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.drop-carousel-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.drop-carousel-btn {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
  line-height: 1;
  cursor: pointer;
}

.drop-carousel-btn:hover,
.drop-carousel-btn:focus-visible {
  background: var(--black);
  color: var(--white);
}

.drop-carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.drop-carousel-dot {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  margin: 0;
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(5, 5, 5, .24);
  cursor: pointer;
}

.drop-carousel-dot.active,
.drop-carousel-dot[aria-selected="true"] {
  background: var(--black);
}

.drop-slide {
  display: none;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  align-items: stretch;
  gap: 20px;
}

.drop-slide.active {
  display: grid;
}

.drop-hero {
  min-height: clamp(390px, 38vw, 520px);
}

.drop-copy {
  max-width: 620px;
}

.drop-copy .drop-eyebrow {
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--font);
  font-size: .68rem;
  font-style: normal;
  font-weight: 900;
}

.drop-products {
  display: grid;
  grid-auto-rows: minmax(0, 1fr);
  align-self: stretch;
  height: 100%;
  min-height: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.drop-product {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 0;
  padding: 16px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: background .16s;
}

.drop-product-meta {
  min-width: 0;
}

.drop-product:last-child {
  border-bottom: 0;
}

.drop-product:hover {
  background: #fafafa;
}

.drop-product-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f7f7f6;
}

.drop-product-img img,
.drop-product-img .vo-art {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.drop-product-name {
  color: var(--ink);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.drop-product-name-link {
  color: inherit;
  text-decoration: none;
}

.drop-product-name-link:hover .drop-product-name {
  text-decoration: underline;
}

.drop-product-price {
  margin-top: 8px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
}

.drop-product-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.drop-product-actions .prod-icon {
  width: 34px;
  height: 34px;
}

.drop-product-actions .prod-icon svg {
  width: 17px;
  height: 17px;
}

.arrivals-section {
  padding-top: 62px;
}

.arrivals-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.arrivals-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.arrivals-title::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  margin-top: 13px;
  background: var(--black);
}

.arrivals-view {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .05em;
  line-height: 1;
  text-transform: uppercase;
}

.arrivals-view span {
  font-size: 1.2rem;
  line-height: 1;
}

.arrivals-view:hover {
  opacity: .58;
}

.arrivals-nav,
.arrivals-arr {
  display: none;
}

.arrivals-arr:disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}

.prod-carousel-wrap {
  overflow: visible;
  border: 0;
  cursor: default;
  user-select: none;
}

.arrivals-section .prod-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  transform: none !important;
  transition: none;
  will-change: auto;
}

.arrivals-section .prod-card {
  min-width: 0;
  border-right: 0;
  background: transparent;
}

.prod-img {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f0f0f0;
}

.prod-img-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.prod-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 3;
  min-width: 62px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--black);
  background: var(--white);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.prod-actions {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: flex;
  gap: 5px;
  opacity: 1;
}

.prod-icon {
  width: 40px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  transition: background .18s, color .18s, transform .18s;
}

.prod-icon:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-1px);
}

.prod-icon.is-loading {
  opacity: .62;
  pointer-events: none;
}

.prod-icon svg {
  width: 18px;
  height: 18px;
}

.prod-quick,
.prod-cart-add {
  position: static;
  opacity: 1;
  pointer-events: auto;
}

.prod-cat {
  display: none;
}

.prod-meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.prod-name {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: .01em;
  text-transform: none;
  text-decoration: none;
  transition: opacity .14s ease;
}

.prod-name:hover {
  opacity: .68;
}

.prod-price {
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink);
}

.product-price,
.cart-item-price,
.order-total {
  font-size: .78rem;
  font-weight: 900;
}

.prod-compare,
.product-compare {
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 400;
  font-size: .82rem;
}

.prod-swatches {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.prod-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.18);
  flex-shrink: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}

.prod-swatch:hover {
  transform: scale(1.2);
}

.prod-swatch.is-active {
  box-shadow: 0 0 0 2px var(--white, #fff), 0 0 0 3px var(--ink, #111);
}

.prod-swatch:focus-visible {
  outline: 2px solid var(--ink, #111);
  outline-offset: 2px;
}

.prod-swatch-more {
  font-size: .65rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1;
}

.prod-footer {
  padding-top: 12px;
}

.btn-add {
  width: 100%;
  min-height: 42px;
  color: var(--white);
  background: var(--black);
}

.newsletter {
  width: calc(100% - 64px);
  max-width: 1396px;
  margin: 28px auto 0;
  color: var(--white);
  background: #07090d;
}

.newsletter-inner {
  min-height: 98px;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 32px;
}

.newsletter h2 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
}

.newsletter p {
  margin: 0;
  max-width: 360px;
  color: rgba(255, 255, 255, .84);
  font-size: .78rem;
}

.newsletter-form {
  display: flex;
  height: 42px;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, .25);
  border-right: 0;
  padding: 0 18px;
  color: var(--white);
  background: rgba(255, 255, 255, .05);
  outline: 0;
  font-size: .78rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .62);
}

.newsletter-form button {
  width: 54px;
  min-height: 42px;
  padding: 0;
  color: var(--black);
  background: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.newsletter-form button:disabled,
.newsletter-form input:disabled {
  opacity: .72;
}

.stats-row {
  width: calc(100% - 64px);
  max-width: 1396px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #07090d;
  color: var(--white);
}

.stat-item {
  min-height: 98px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-num {
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1;
}

.stat-label {
  margin-top: 12px;
  color: rgba(255, 255, 255, .74);
  font-size: .75rem;
}

.about-page {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  background: var(--paper);
  overflow: hidden;
}

.about-hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(520px, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-hero-copy {
  padding: 90px 64px 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-kicker {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 620px;
  margin: 0 0 24px;
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  font-weight: 500;
  line-height: 1.04;
}

.about-hero p,
.about-story-copy p,
.about-values p {
  color: var(--muted);
}

.about-hero p {
  max-width: 430px;
  margin: 0 0 34px;
  font-size: 1.08rem;
  line-height: 1.55;
}

.about-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-hero-art {
  min-height: 560px;
  background:
    linear-gradient(90deg, transparent 0 calc(100% - 1px), var(--soft-line) calc(100% - 1px)),
    linear-gradient(0deg, transparent 0 calc(100% - 1px), var(--soft-line) calc(100% - 1px)),
    var(--panel);
  background-size: 32px 32px;
}

.about-hero-art img,
.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story {
  width: calc(100% - 64px);
  max-width: 1396px;
  margin: 54px auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  gap: 54px;
  align-items: stretch;
}

.about-story-image {
  min-height: 360px;
  overflow: hidden;
  background: var(--black);
}

.about-story-copy {
  padding: 42px 0;
  align-self: center;
}

.about-story-copy h2 {
  margin: 0 0 26px;
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 500;
  line-height: 1.08;
}

.about-story-copy p {
  margin: 0 0 16px;
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.75;
}

.about-values {
  width: calc(100% - 64px);
  max-width: 1396px;
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-values > div {
  padding: 32px 34px;
  border-right: 1px solid var(--line);
}

.about-values > div:last-child {
  border-right: 0;
}

.about-values span {
  display: block;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
}

.about-values h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  font-weight: 700;
}

.about-values p {
  margin: 0;
  line-height: 1.7;
}

.about-manifesto {
  width: calc(100% - 64px);
  max-width: 1396px;
  margin: 0 auto 54px;
  padding: 38px 40px;
  border: 1px solid var(--line);
  background: var(--white);
}

.about-manifesto h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 700;
}

.about-manifesto p {
  margin: 0 0 12px;
  max-width: 920px;
  color: var(--muted);
  line-height: 1.75;
}

.about-manifesto p:last-child {
  margin-bottom: 0;
}

.about-timeline {
  width: calc(100% - 64px);
  max-width: 1396px;
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-timeline article {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 24px 24px 22px;
}

.about-timeline span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-timeline h3 {
  margin: 0 0 9px;
  font-size: 1.2rem;
  font-weight: 700;
}

.about-timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.about-cta {
  width: calc(100% - 64px);
  max-width: 1396px;
  margin: 0 auto 56px;
  padding: 38px 40px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 20%, rgba(13, 77, 155, .08), transparent 40%),
    radial-gradient(circle at 12% 82%, rgba(238, 34, 25, .08), transparent 40%),
    var(--white);
}

.about-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 700;
}

.about-cta p {
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 560px;
}

.contact-page {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-bottom: 48px;
  background: var(--paper);
  border-radius: 0;
  overflow: hidden;
}

.contact-hero {
  margin-top: 0;
  padding: 56px 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 20%, rgba(13, 77, 155, .08), transparent 45%),
    radial-gradient(circle at 82% 76%, rgba(238, 34, 25, .08), transparent 48%),
    var(--white);
}

.contact-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.6rem, 4.8vw, 5rem);
  line-height: 1.02;
  font-weight: 600;
}

.contact-hero p {
  margin: 0;
  max-width: 740px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.contact-grid {
  width: calc(100% - 64px);
  max-width: 1396px;
  margin: 34px auto 0;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  min-height: 180px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(17, 16, 14, .07);
}

.contact-card-wide {
  grid-column: 1 / -1;
}

.contact-card h2 {
  margin: 0 0 8px;
  font-size: 1.3rem;
  font-weight: 700;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-card a {
  display: inline-block;
  margin-top: 20px;
  font-size: 1.02rem;
  font-weight: 700;
}

.contact-card a:hover {
  opacity: .58;
}

.contact-form-wrap {
  width: calc(100% - 64px);
  max-width: 1396px;
  margin: 28px auto 0;
}

.contact-form-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(17, 16, 14, .07);
}

.contact-form-card h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 700;
}

.contact-form-sub {
  margin: 0 0 22px;
  color: var(--muted);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form-card .btn-primary-dark {
  min-width: 220px;
}

.contact-page + .site-footer {
  border-radius: 0;
  margin-top: 72px;
}

.contact-about-page {
  width: min(calc(100% - 32px), var(--max));
  max-width: var(--max);
  padding-bottom: 0;
}

.contact-about-hero .about-hero-copy {
  justify-content: center;
}

.contact-hero-art {
  display: grid;
  place-items: center;
  padding: 48px;
}

.contact-hero-panel {
  width: min(100%, 520px);
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .86);
}

.contact-hero-panel span,
.contact-story-image span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-hero-panel strong {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1;
}

.contact-hero-panel p,
.contact-story-image p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-values a {
  display: inline-block;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-live-chat-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.contact-live-chat-btn:hover {
  opacity: .58;
}

.contact-story-image {
  display: grid;
  place-items: center;
  padding: 36px;
  background:
    radial-gradient(circle at 82% 18%, rgba(238, 34, 25, .1), transparent 40%),
    radial-gradient(circle at 18% 84%, rgba(13, 77, 155, .1), transparent 42%),
    var(--white);
  border: 1px solid var(--line);
}

.contact-story-image h2 {
  max-width: 520px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.06;
}

.contact-form-wrap {
  padding: 38px 40px;
  margin-bottom: 72px;
}

.contact-form-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-footer {
  border-radius: 0 0 18px 18px;
  box-shadow: var(--shadow);
}

.footer-inner {
  padding: 42px 34px 32px;
  display: grid;
  grid-template-columns: 1.7fr repeat(4, minmax(120px, 1fr));
  gap: 36px;
}

.footer-tagline {
  max-width: 360px;
  color: var(--muted);
}

.footer-col {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-col-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  margin-bottom: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  font: inherit;
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: left;
  cursor: default;
}

.footer-col-caret {
  display: none;
  flex: 0 0 auto;
  transition: transform .25s ease;
}

.footer-col-links-inner {
  display: grid;
  gap: 8px;
}

.footer-col a {
  color: var(--ink);
  font-size: .75rem;
}

.footer-bottom {
  padding: 0 34px 26px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--ink);
  font-size: .72rem;
}

.footer-copy {
  margin-right: auto;
}

.footer-payments {
  display: flex;
  align-items: center;
}

.payment-methods {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  row-gap: 6px;
  flex-wrap: wrap;
}

.payment-method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.payment-logo {
  display: block;
  width: auto;
  height: 22px;
  max-width: none;
}

.payment-logo-applepay,
.payment-logo-googlepay,
.payment-logo-discover {
  height: 30px;
}

.payment-logo-cashapp {
  height: 25px;
}

.footer-credit {
  margin-left: auto;
  white-space: nowrap;
}

.breadcrumb {
  width: min(var(--max), calc(100% - 48px));
  margin: 28px auto 0;
  color: var(--muted);
  font-size: .9rem;
}

.breadcrumb a:hover {
  opacity: .58;
}

.empty-state,
.cart-empty {
  padding: 70px 24px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

/* ——— Category Listing ——— */
.shop-listing {
  padding-top: 32px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.category-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.listing-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.listing-head h1 {
  margin: 0;
  font-size: clamp(1.65rem, 2.3vw, 2.45rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
}

.listing-head p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
}

.listing-filter-panel {
  margin-bottom: 18px;
}

.pf-bar {
  position: sticky;
  top: calc(var(--nav-height) + 16px);
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  width: 100%;
  min-height: 64px;
  background: var(--black);
  border: 1px solid var(--black);
  box-shadow: 0 14px 34px rgba(17, 16, 14, .18);
  overflow: visible;
}

.pf-actions {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: 0;
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.pf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 62px;
  padding: 0 22px;
  border: 0;
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}

.pf-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pf-btn-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
}

.pf-btn-label {
  color: rgba(255, 255, 255, .62);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pf-btn-value {
  color: var(--white);
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pf-total {
  color: rgba(255, 255, 255, .72);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.pf-btn-caret {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, .72);
}

.pf-btn-collections {
  justify-content: flex-start;
  gap: 14px;
  min-width: 0;
  padding-inline: 20px;
  text-align: left;
}

.pf-btn-collections:hover,
.pf-btn-collections.is-open {
  background: rgba(255, 255, 255, .06);
}

.pf-btn-filter {
  flex: 1 1 0;
  min-width: 0;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.pf-btn-filter:hover,
.pf-btn-filter.is-open {
  background: rgba(255, 255, 255, .08);
}

.pf-btn-sort {
  flex: 1 1 0;
  min-width: 0;
  color: var(--white);
}

.pf-btn-sort:hover,
.pf-btn-sort.is-open {
  background: rgba(255, 255, 255, .08);
}

/* ── Dropdown panels ──────────────────────────────────────────────────────────
   Positioned via JS (position: fixed, anchored to the trigger button's own
   rect) rather than CSS left/right — the bar is compact and its buttons sit
   close together, so a dropdown can't reliably be pinned to "the panel's
   edge"; it has to track its own button exactly, including through sticky
   scroll repositioning. */
.pf-dropdown {
  position: fixed;
  min-width: 320px;
  max-width: calc(100vw - 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 54px rgba(17, 16, 14, .16);
  padding: 20px;
  z-index: 6000;
  margin-top: 2px;
}

.pf-dropdown-sort {
  min-width: 220px;
}

.pf-dropdown-filter {
  width: min(420px, calc(100vw - 32px));
}

.pf-dropdown-collections {
  min-width: 280px;
}

.pf-collections-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pf-collection-link {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-size: .86rem;
  font-weight: 700;
  transition: background .15s ease, color .15s ease;
}

.pf-collection-link:hover,
.pf-collection-link.is-active {
  background: var(--paper);
}

.pf-collection-link.is-active {
  color: var(--black);
}


.filter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.filter-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.filter-field > span {
  color: var(--muted);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.filter-price-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 8px;
}

.filter-price-inputs label {
  min-width: 0;
}

.filter-price-apply {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font: inherit;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity .15s ease;
}

.filter-price-apply:hover {
  opacity: .82;
}

.listing-filters input,
.listing-filters select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  padding: 0 13px;
  outline: 0;
  font: inherit;
  font-size: .92rem;
}

.listing-filters input:focus,
.listing-filters select:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(5, 5, 5, .08);
}

/* ── Active filter chips + "Clear filter" — sits below the bar, in front of
   the results, never inside the Filter dropdown itself. ── */
.active-filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.filter-clear {
  margin-left: 4px;
  padding: 6px 2px;
  color: var(--black);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.filter-clear:hover {
  opacity: .68;
}

.active-filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: .76rem;
  font-weight: 800;
}

.sort-options {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sort-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: .84rem;
  font-weight: 700;
  color: var(--ink);
  transition: background .15s ease;
}

.sort-option:hover {
  background: var(--paper);
}

.sort-option input {
  accent-color: var(--black);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.category-results {
  position: relative;
  margin-top: 26px;
  transition: opacity .16s ease;
}

.is-filter-loading .category-results {
  opacity: .46;
  pointer-events: none;
}

.is-filter-loading .listing-filter-panel {
  cursor: progress;
}

.shop-listing .prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  border: 0;
  background: transparent;
}

.related-products .prod-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  border: 0;
  background: transparent;
}

.shop-listing .prod-card {
  border: 0;
  background: transparent;
}

.related-products .prod-card {
  border: 0;
  background: transparent;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: .86rem;
  font-weight: 800;
}

.pagination a.active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.account-page {
  width: min(520px, calc(100% - 48px));
  margin: 60px auto 90px;
}

.account-card,
.checkout-form-card,
.checkout-order-summary,
.cart-summary,
.order-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(17, 16, 14, .08);
}

.account-card {
  padding: 32px;
}

.account-card h1,
.account-card h2 {
  margin: 0 0 6px;
  font-size: 2rem;
}

.subtitle,
.auth-link {
  color: var(--muted);
}

.auth-link {
  margin: 20px 0 0;
  text-align: center;
}

.auth-link a {
  color: var(--ink);
  font-weight: 900;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.form-input,
select.form-input,
textarea.form-input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
}

textarea.form-input {
  min-height: 120px;
  padding-top: 12px;
}

.form-input:focus {
  border-color: rgba(5, 5, 5, .55);
  box-shadow: 0 0 0 4px rgba(5, 5, 5, .08);
}

.form-input.is-invalid {
  border-color: rgba(220, 38, 38, .85);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .10);
}

.form-input.is-invalid:focus {
  border-color: rgba(220, 38, 38, .95);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, .16);
}

.form-error {
  margin-top: 5px;
  color: #a22a22;
  font-size: .82rem;
  font-weight: 700;
}

.form-error:empty {
  display: none;
}

.form-success {
  margin-top: 5px;
  color: #1f7a54;
  font-size: .82rem;
  font-weight: 700;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* ——— Product Page ——— */
.ppage {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
  background: var(--white);
  padding: 32px 34px 64px;
  overflow-x: hidden;
}

.ppage-grid {
  max-width: 1396px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, clamp(360px, 28vw, 460px));
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}

.ppage-grid > * {
  min-width: 0;
}

.pgl {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  min-width: 0;
  overflow: hidden;
}

.pgl-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #f6f6f4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pgl-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  transition: opacity .18s;
}

.pgl-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 400px;
}

.pgl-placeholder svg {
  width: 70px;
  opacity: .18;
}

.pgl-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.pgl-thumb {
  width: 72px;
  height: 72px;
  background: var(--panel);
  border: 2px solid transparent;
  padding: 3px;
  cursor: pointer;
  transition: border-color .14s;
  flex-shrink: 0;
  overflow: hidden;
}

.pgl-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pgl-thumb.active,
.pgl-thumb:hover {
  border-color: var(--black);
}

/* Buy Box */
.pnl {
  padding-top: 4px;
}

.pnl-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.pnl-cat {
  color: var(--muted);
  transition: color .14s;
}

.pnl-cat:hover {
  color: var(--black);
}

.pnl-sep {
  color: var(--muted);
}

.pnl-stock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #1a7a50;
}

.pnl-stock.oos {
  color: #c0392b;
}

.pnl-stock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.pnl-title {
  margin: 0;
  font-size: clamp(1.12rem, 1.45vw, 1.52rem);
  line-height: 1.28;
  letter-spacing: -.006em;
  font-weight: 700;
  max-width: 32ch;
}

.pnl-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 18px 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pnl-price {
  font-family: var(--font);
  font-size: clamp(1.4rem, 1.8vw, 1.68rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: var(--black);
}

.pnl-compare {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
}

.pnl-tax {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-left: auto;
}

.pnl-desc {
  font-size: .9rem;
  line-height: 1.78;
  color: #555;
  margin: 20px 0 24px;
}

.pnl-mobile-preview {
  display: none;
}

.pnl-variant-group {
  margin-bottom: 20px;
}

.pnl-size-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.pnl-size-head .pnl-variant-label {
  margin-bottom: 0;
}

.pnl-variant-label {
  font-size: .66rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
  color: var(--ink);
}

.fit-trigger {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--ink);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fit-finder {
  margin: 0 0 12px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fafafa;
}

.fit-finder [hidden] {
  display: none !important;
}

.fit-unit-row {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  background: var(--white);
}

.fit-unit-btn {
  min-height: 32px;
  padding: 0 12px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.fit-unit-btn:last-child {
  border-right: 0;
}

.fit-unit-btn.is-active {
  background: var(--black);
  color: var(--white);
}

.fit-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.fit-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.fit-field span {
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #555;
}

.fit-field input,
.fit-field select {
  width: 100%;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0 10px;
  font-size: .8rem;
  font-weight: 700;
  outline: 0;
}

.fit-split-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.fit-field input:focus,
.fit-field select:focus {
  border-color: var(--black);
}

.fit-result {
  min-height: 20px;
  margin-top: 10px;
  color: #444;
  font-size: .78rem;
  font-weight: 700;
}

.fit-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.fit-apply,
.fit-clear {
  height: 38px;
  padding: 0 14px;
  border: 1.5px solid var(--black);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.fit-apply {
  background: var(--black);
  color: var(--white);
}

.fit-apply:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.fit-clear {
  background: var(--white);
  color: var(--ink);
}

/* ── Fit Finder Wizard Styles ── */
.fit-finder-wizard {
  padding: 0;
}

.fit-wizard-progress {
  display: none;
}

.fit-wizard-step {
  display: none;
}

.fit-wizard-step.is-active {
  display: block;
}

.fit-wizard-step h3 {
  font-size: .72rem;
  font-weight: 900;
  color: var(--muted);
  margin: 0 0 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.fit-wizard-step > p {
  color: var(--muted);
  font-size: .76rem;
  margin: 0 0 18px;
  line-height: 1.4;
}

/* ── Measure row with inline toggle (Hugo-style) ── */
.fit-measure-group {
  margin-bottom: 20px;
}

.fit-measure-label {
  display: block;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.fit-measure-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fit-input-inner {
  flex: 1;
  position: relative;
}

.fit-input-inner input {
  width: 100%;
  height: 44px;
  border: 1.5px solid var(--line);
  padding: 0 45px 0 12px;
  font-size: .86rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--white);
  transition: border-color .15s;
}

.fit-input-inner input:focus {
  outline: none;
  border-color: var(--black);
}

.fit-input-inner input::placeholder {
  color: var(--muted);
  opacity: .5;
}

.fit-unit-badge {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .7rem;
  font-weight: 800;
  color: var(--muted);
  pointer-events: none;
  letter-spacing: .04em;
}

.fit-inline-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.fit-toggle-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .02em;
  min-width: 20px;
  text-align: center;
  transition: color .15s;
  user-select: none;
}

.fit-toggle-label.is-active {
  color: var(--ink);
  font-weight: 900;
}

.fit-toggle-pill {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--black);
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background .15s;
}

.fit-toggle-knob {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background: var(--white);
  transition: transform .2s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}

.fit-toggle-pill[aria-pressed="true"] .fit-toggle-knob {
  transform: translateX(20px);
}

.fit-body-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.fit-body-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0 14px;
  border: 1.5px solid var(--line);
  background: var(--white);
  cursor: pointer;
  transition: border-color .15s;
}

.fit-body-card:hover {
  border-color: var(--black);
}

.fit-body-icon {
  width: 100%;
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.fit-body-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.fit-body-card strong {
  font-size: .72rem;
  font-weight: 800;
  color: var(--ink);
  text-align: center;
  letter-spacing: .06em;
  margin-top: 10px;
  flex-shrink: 0;
}

.fit-info-box {
  background: var(--panel);
  border: 1.5px solid var(--line);
  padding: 12px 14px;
  margin: 16px 0;
}

.fit-info-box p {
  margin: 0;
  font-size: .7rem;
  color: var(--muted);
  line-height: 1.5;
}

.fit-age-stage {
  display: flex;
  justify-content: center;
  margin: 24px 0 18px;
}

.fit-age-card {
  width: min(100%, 320px);
  padding: 18px 20px 16px;
  border: 1.5px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(244, 245, 247, .86));
  display: grid;
  gap: 10px;
  cursor: text;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.fit-age-card:focus-within {
  border-color: var(--black);
  box-shadow: 0 10px 28px rgba(5, 5, 5, .08);
  transform: translateY(-1px);
}

.fit-age-label {
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.fit-age-input-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 0 4px 0 0;
  border-top: 1px solid rgba(5, 5, 5, .08);
  border-bottom: 1px solid rgba(5, 5, 5, .08);
}

.fit-age-input-wrap input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
  text-align: center;
  outline: none;
  -moz-appearance: textfield;
}

.fit-age-input-wrap input::-webkit-inner-spin-button,
.fit-age-input-wrap input::-webkit-outer-spin-button {
  opacity: 1;
  height: 52px;
}

.fit-age-input-wrap input::placeholder {
  color: rgba(8, 8, 8, .28);
}

.fit-age-unit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(5, 5, 5, .1);
  background: rgba(255, 255, 255, .76);
  color: var(--muted);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.fit-age-hint {
  font-size: .68rem;
  color: var(--muted);
  line-height: 1.45;
}

.fit-preference-slider {
  margin: 20px 0;
}

.fit-preference-slider input[type="range"] {
  width: 100%;
  height: 2px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--line);
  outline: none;
  cursor: pointer;
}

.fit-preference-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--black);
  border: 2px solid var(--white);
  cursor: pointer;
  box-shadow: 0 0 0 1px var(--line);
}

.fit-preference-slider input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--black);
  border: 2px solid var(--white);
  cursor: pointer;
  box-shadow: 0 0 0 1px var(--line);
}

.fit-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: .66rem;
  color: var(--muted);
  letter-spacing: .04em;
}

.fit-slider-labels span:nth-child(2) {
  font-weight: 800;
  color: var(--ink);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.fit-recommendation {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border: 1.5px solid var(--line);
  margin-bottom: 18px;
}

.fit-rec-size {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: -.02em;
}

.fit-rec-confidence {
  margin-bottom: 14px;
}

.fit-rec-bar {
  display: none;
}

.fit-rec-percent {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: .02em;
}

.fit-rec-note {
  font-size: .7rem;
  color: var(--muted);
  margin: 12px 0;
  line-height: 1.5;
}

.fit-rec-confidence-text {
  background: var(--panel);
  border: 0;
  border-top: 1px solid var(--line);
  padding: 14px;
  font-size: .72rem;
  color: var(--muted);
  line-height: 1.6;
}

.fit-rec-confidence-text strong {
  color: var(--ink);
  font-weight: 800;
}

.fit-wizard-next,
.fit-wizard-back {
  display: block;
  width: 100%;
  height: 44px;
  margin-top: 16px;
  border: 1.5px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s;
}

.fit-wizard-next:hover {
  background: #1f1f1f;
}

.fit-wizard-back {
  background: transparent;
  color: var(--muted);
  border-color: var(--line);
  height: 44px;
  font-size: .68rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.fit-wizard-back:hover {
  background: var(--panel);
  color: var(--ink);
}

.fit-wizard-back svg {
  flex-shrink: 0;
}

.fit-actions .fit-apply {
  width: 100%;
  height: 44px;
  background: var(--black);
  color: var(--white);
  border: 0;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s;
}

.fit-actions .fit-apply:hover {
  background: #1f1f1f;
}

.fit-wizard-step[data-step="6"] .fit-wizard-back {
  margin-top: 0;
}

.fit-wizard-step[data-step="6"] .fit-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.fit-wizard-step[data-step="6"] .fit-actions .fit-apply,
.fit-wizard-step[data-step="6"] .fit-actions .fit-wizard-back {
  width: 100%;
  margin-top: 0;
}

@media (max-width: 600px) {
  .fit-body-options {
    grid-template-columns: 1fr;
  }

  .fit-age-stage {
    margin-top: 18px;
  }

  .fit-age-card {
    width: 100%;
    padding: 16px;
  }

  .fit-age-input-wrap {
    min-height: 66px;
    gap: 10px;
  }

  .fit-age-input-wrap input {
    font-size: 2rem;
  }

  .fit-wizard-step[data-step="6"] .fit-actions {
    gap: 10px;
  }
  
  .fit-rec-size {
    font-size: 2rem;
  }
}

.pnl-variant-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pnl-variant-wrap {
  position: relative;
}

.pnl-variant-wrap input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pnl-variant-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 42px;
  padding: 0 18px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
  transition: border-color .14s, background .14s, color .14s;
}

.pnl-variant-wrap input:checked + .pnl-variant-btn,
.pnl-variant-btn.sel {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.pnl-color-dot {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, .22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
  flex-shrink: 0;
  margin-right: 7px;
  vertical-align: middle;
}

.pnl-variant-btn.sel .pnl-color-dot {
  border-color: rgba(255, 255, 255, .45);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .28);
}

.pnl-variant-btn.oos,
.pnl-variant-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.pnl-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.pnl-qty {
  display: inline-flex;
  align-items: center;
  height: 52px;
  border: 1.5px solid var(--line);
  background: var(--white);
  flex-shrink: 0;
}

.pnl-qty-btn {
  width: 44px;
  height: 52px;
  border: 0;
  background: transparent;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
  transition: background .12s;
}

.pnl-qty-btn:hover {
  background: var(--panel);
}

.pnl-qty-input {
  width: 46px;
  background: transparent;
  border: 0;
  text-align: center;
  font-size: .95rem;
  font-weight: 700;
  outline: 0;
  color: var(--ink);
  -moz-appearance: textfield;
}

.pnl-qty-input::-webkit-inner-spin-button,
.pnl-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.pnl-add-btn {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 24px;
  background: var(--black);
  color: var(--white);
  border: 0;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .18s;
}

.pnl-add-btn:hover {
  background: #1f1f1f;
}

.pnl-add-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.pnl-add-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pnl-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.pnl-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
}

.pnl-trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--muted);
}

.pnl-trust-item span {
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
}

.pnl-info {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.pnl-info details {
  border-bottom: 1px solid var(--line);
}

.pnl-info summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
  color: var(--ink);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pnl-info summary::-webkit-details-marker {
  display: none;
}

.pnl-info summary::after {
  content: "+";
  font-size: 1rem;
  line-height: 1;
}

.pnl-info details[open] summary::after {
  content: "−";
}

.pnl-info p {
  margin: -2px 0 18px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.72;
}

.pnl-size-guide-content {
  margin: -2px 0 18px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.72;
}

.pnl-size-guide-content p {
  margin: 0 0 12px;
}

.pnl-size-guide-content h2,
.pnl-size-guide-content h3,
.pnl-size-guide-content h4 {
  margin: 14px 0 8px;
  color: var(--ink);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pnl-size-guide-content h2:first-child,
.pnl-size-guide-content h3:first-child,
.pnl-size-guide-content h4:first-child {
  margin-top: 0;
}

.pnl-size-guide-content table {
  width: 100%;
  margin: 8px 0 14px;
  border-collapse: collapse;
  color: var(--ink);
  font-size: .78rem;
}

.pnl-size-guide-content th,
.pnl-size-guide-content td {
  padding: 9px 10px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.pnl-size-guide-content th {
  background: var(--panel);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pnl-size-guide-content ul,
.pnl-size-guide-content ol {
  margin: 0 0 14px;
  padding-left: 18px;
}

.sg-modal-open {
  overflow: hidden;
}

.sg-modal {
  position: fixed;
  inset: 0;
  z-index: 9600;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.sg-modal.is-open {
  display: flex;
}

.sg-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
}

.sg-modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.sg-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0;
  z-index: 2;
}

.sg-modal-close:hover {
  background: var(--panel);
}

.sg-modal-head {
  padding: 28px 28px 0;
  border-bottom: 1px solid var(--line);
}

.sg-modal-head h2 {
  margin: 0 44px 20px 0;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

.sg-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
}

.sg-tab {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sg-tab.is-active {
  border-bottom-color: var(--black);
  color: var(--ink);
}

.sg-modal-body {
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px 28px 28px;
}

.sg-panel {
  display: none;
}

.sg-panel.is-active {
  display: block;
}

.sg-modal .pnl-size-guide-content {
  margin: 0;
}

.sg-modal .fit-finder {
  margin: 0;
}

.sg-measurements {
  margin-bottom: 26px;
}

.sg-measurements h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.sg-measurements p {
  margin: 0 0 12px;
  color: #666;
  font-size: .88rem;
  line-height: 1.62;
}

.sg-measurement-card {
  margin: 26px 0 26px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(260px, 1.1fr);
  gap: 28px;
  align-items: center;
  background: #f6f6f6;
  max-width: 100%;
  overflow: hidden;
}

.sg-shirt-diagram {
  width: 100%;
  max-width: 330px;
  margin-inline: auto;
}

.sg-shirt-img {
  width: 100%;
  height: auto;
  display: block;
}

.sg-measurement-copy strong {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 900;
}

.sg-measurement-copy p {
  margin-bottom: 20px;
}

.sg-measurement-copy p:last-child {
  margin-bottom: 0;
}

.sg-find-heading {
  margin-top: 0 !important;
}

.sg-empty {
  padding: 28px 0;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 700;
}

@media (max-width: 620px) {
  .sg-modal {
    align-items: stretch;
    padding: 0;
  }

  .sg-modal-panel {
    width: 100%;
    max-height: 100vh;
    min-height: 100vh;
  }

  .sg-modal-head {
    padding: 22px 18px 0;
  }

  .sg-modal-body {
    padding: 20px 18px 24px;
  }

  .sg-measurement-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .sg-shirt-diagram {
    max-width: 300px;
  }
}

@media (max-width: 1180px) {
  .ppage-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pgl {
    position: static;
  }
}

.related-products {
  max-width: 1396px;
  margin: 64px auto 0;
}

.related-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.related-head .arrivals-title {
  margin: 0;
}

/* ── Quick-view modal ── */
.qv-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, .52);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  animation: qvFadeIn .18s ease;
}

.qv-overlay[hidden] {
  display: none;
}

@keyframes qvFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.qv-panel {
  position: relative;
  width: min(540px, 100vw);
  height: 100vh;
  background: var(--white);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  animation: qvSlideIn .22s cubic-bezier(.4, 0, .2, 1);
}

@keyframes qvSlideIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

.qv-close {
  position: sticky;
  top: 0;
  z-index: 2;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
  color: var(--ink);
  flex-shrink: 0;
  align-self: flex-start;
}

.qv-close:hover {
  background: var(--panel);
}

.qv-close svg {
  width: 18px;
  height: 18px;
}

.qv-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 28px 32px;
}

.qv-gallery {
  margin-bottom: 20px;
}

.qv-main-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f6f6f6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qv-main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.qv-thumbs {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.qv-thumb {
  width: 64px;
  height: 64px;
  background: #f6f6f6;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  padding: 0;
}

.qv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
  display: block;
}

.qv-thumb.active,
.qv-thumb:hover {
  border-color: var(--black);
}

.qv-category {
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin: 0 0 8px;
}

.qv-title {
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.15;
}

.qv-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}

.qv-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.qv-compare {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 400;
}

.qv-compare:empty {
  display: none;
}

.qv-desc {
  font-size: .84rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 18px;
}

.qv-variant-label {
  font-size: .62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
  color: var(--ink);
}

.qv-variant-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.qv-variant-btn {
  min-width: 52px;
  height: 40px;
  padding: 0 16px;
  border: 1.5px solid #c8c8c8;
  background: var(--white);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
  transition: border-color .12s, background .12s, color .12s;
}

.qv-variant-btn.sel,
.qv-variant-btn:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.qv-color-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, .18);
  flex-shrink: 0;
  margin-right: 6px;
  vertical-align: middle;
}

.qv-variant-btn.sel .qv-color-dot {
  border-color: rgba(255, 255, 255, .35);
}

.qv-variant-btn.oos,
.qv-variant-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
  text-decoration: line-through;
  pointer-events: none;
}

.qv-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.qv-btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  background: var(--black);
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .15s;
}

.qv-btn-cart:hover {
  background: #222;
}

.qv-btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  border: 1.5px solid var(--black);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .14s, color .14s;
}

.qv-btn-checkout:hover {
  background: var(--black);
  color: var(--white);
}

.qv-btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border: 1.5px solid var(--black);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  transition: background .14s;
}

.qv-btn-link:hover {
  background: var(--panel);
}

.qv-loading {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.qv-loading[hidden] {
  display: none;
}

.qv-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid var(--line);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: qvSpin .7s linear infinite;
}

@keyframes qvSpin {
  to { transform: rotate(360deg); }
}

.cart-page,
.checkout-page,
.orders-page {
  padding: 42px 0 88px;
}

.orders-account-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(17, 16, 14, .08);
}

.orders-account-main {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.orders-account-avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.orders-account-eyebrow {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.orders-account-hero h1 {
  margin: 0;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.05;
}

.orders-account-email {
  margin-top: 6px;
  color: var(--muted);
  font-size: .9rem;
  word-break: break-word;
}

.orders-account-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.orders-account-meta-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.orders-account-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.orders-account-pill.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.orders-account-pill.is-verified {
  border-color: rgba(22, 101, 52, .16);
  background: #dcfce7;
  color: #166534;
}

.orders-account-pill.is-unverified {
  border-color: rgba(146, 64, 14, .18);
  background: #fef3c7;
  color: #92400e;
}

.orders-signout-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid rgba(220, 38, 38, .18);
  border-radius: 999px;
  color: #dc2626;
  font-size: .76rem;
  font-weight: 900;
  text-decoration: none;
}

.orders-signout-link:hover {
  background: #fff1f2;
  color: #b91c1c;
}

.account-address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.account-address-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.account-address-card h2 {
  margin: 0 0 18px;
  font-size: 1rem;
  letter-spacing: .02em;
}

.account-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.account-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.account-form-field.is-full {
  grid-column: 1 / -1;
}

.account-form-field label {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.account-form-field input,
.account-form-field select {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  font: inherit;
  outline: none;
}

.account-form-field input:focus,
.account-form-field select:focus {
  border-color: var(--black);
}

.account-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .9rem;
}

.account-checkbox-row input {
  accent-color: var(--black);
}

.account-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.account-billing-fields[hidden] {
  display: none !important;
}

@media (max-width: 760px) {
  .account-address-grid,
  .account-form-grid {
    grid-template-columns: 1fr;
  }
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.qty-row {
  gap: 12px;
}

.cart-item-img {
  width: 110px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
}

.cart-item-info {
  min-width: 0;
}

.cart-item-remove {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.cart-summary,
.checkout-order-summary {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  padding: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  color: var(--muted);
}

.summary-row.total {
  margin-top: 8px;
  padding-top: 18px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 1.2rem;
  font-weight: 900;
}

.btn-checkout {
  width: 100%;
  margin-top: 18px;
}

.checkout-form-card {
  padding: 24px;
}

.checkout-section-title {
  margin-bottom: 18px;
  font-size: 1.2rem;
  font-weight: 900;
}

.order-card {
  margin-bottom: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.order-date {
  color: var(--muted);
  font-size: .9rem;
}

.vo-art {
  --tone: var(--blue);
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 160px;
  overflow: hidden;
  isolation: isolate;
}

.tone-blue { --tone: var(--blue); }
.tone-red { --tone: var(--red); }
.tone-magenta { --tone: var(--magenta); }
.tone-green { --tone: var(--green); }
.tone-brown { --tone: var(--brown); }
.tone-mono { --tone: #6d747d; }

.vo-art.dark {
  background: #050505;
}

.art-sun,
.art-grid,
.art-dot,
.art-line,
.art-brush,
.art-bust,
.tee-body,
.tee-neck {
  position: absolute;
  display: block;
}

.art-sun {
  width: 38%;
  aspect-ratio: 1;
  top: 7%;
  left: 45%;
  border-radius: 50%;
  background: var(--tone);
  z-index: 1;
}

.art-grid {
  inset: 0;
  background:
    radial-gradient(circle, rgba(5, 5, 5, .27) 1.2px, transparent 1.2px) 0 0 / 26px 26px,
    linear-gradient(90deg, transparent 0 calc(100% - 1px), rgba(5, 5, 5, .14) calc(100% - 1px)),
    linear-gradient(0deg, transparent 0 calc(100% - 1px), rgba(5, 5, 5, .08) calc(100% - 1px));
  opacity: .42;
  z-index: 0;
}

.art-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--black);
  z-index: 5;
}

.dot-one {
  left: 12%;
  bottom: 22%;
}

.dot-two {
  right: 16%;
  top: 40%;
  background: var(--tone);
}

.art-line {
  width: 1px;
  background: rgba(5, 5, 5, .28);
  z-index: 1;
}

.line-one {
  top: 6%;
  bottom: 12%;
  left: 27%;
}

.line-two {
  top: 0;
  bottom: 22%;
  right: 14%;
  border-right: 1px dashed rgba(5, 5, 5, .32);
  background: transparent;
}

.art-brush {
  width: 58%;
  height: 15%;
  right: 4%;
  bottom: 17%;
  background: var(--black);
  transform: rotate(-9deg) skewX(-18deg);
  clip-path: polygon(0 24%, 90% 0, 100% 50%, 88% 100%, 7% 78%);
  z-index: 6;
}

.art-bust {
  width: 72%;
  height: 88%;
  right: 10%;
  bottom: 2%;
  z-index: 4;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, .18));
}

.bust-body,
.bust-face {
  fill: #d9dadc;
  stroke: #050505;
  stroke-width: 4;
  stroke-linejoin: round;
}

.bust-shadow {
  fill: #8e9299;
}

.bust-hair {
  fill: #171717;
  stroke: #050505;
  stroke-width: 4;
}

.bust-line {
  fill: none;
  stroke: #4a4d52;
  stroke-width: 4;
  stroke-linecap: round;
}

.tee .art-sun {
  width: 35%;
  top: 22%;
  left: 44%;
}

.tee .art-bust {
  width: 42%;
  height: 66%;
  left: 29%;
  right: auto;
  bottom: 15%;
}

.tee .art-brush {
  width: 42%;
  right: 24%;
  bottom: 24%;
  height: 11%;
}

.tee-body {
  width: 68%;
  height: 78%;
  left: 16%;
  bottom: 1%;
  background: #f8f8f8;
  clip-path: polygon(25% 0, 38% 8%, 62% 8%, 75% 0, 98% 16%, 83% 40%, 76% 34%, 76% 100%, 24% 100%, 24% 34%, 17% 40%, 2% 16%);
  border: 1px solid rgba(5, 5, 5, .08);
  z-index: 2;
}

.tee.dark .tee-body {
  background: #0b0b0b;
}

.tee-neck {
  width: 18%;
  height: 10%;
  left: 41%;
  top: 8%;
  border-radius: 0 0 50% 50%;
  background: var(--panel);
  z-index: 3;
}

.tee.dark .tee-neck {
  background: #242424;
}

.hero-statue {
  min-height: 560px;
}

.hero-statue .art-sun {
  width: 26%;
  top: 4%;
  left: 25%;
}

.hero-statue .art-bust {
  width: 72%;
  height: 103%;
  right: 2%;
  bottom: -13%;
}

.hero-statue .art-brush {
  width: 70%;
  right: -2%;
  bottom: 19%;
  height: 16%;
}

.about-statue {
  min-height: 320px;
}

.about-statue .art-sun {
  width: 24%;
  left: 70%;
  top: 38%;
}

.about-statue .art-bust {
  width: 74%;
  right: 5%;
  bottom: -8%;
}

.about-statue .art-brush {
  width: 70%;
  right: -2%;
  bottom: 14%;
}

@media (max-width: 1180px) {
  .hero-slide {
    grid-template-columns: minmax(310px, .8fr) minmax(420px, 1fr);
  }

  .hero-left {
    padding-left: 46px;
  }

  .hero-left::before {
    display: none;
  }

  .collections-track {
    gap: 24px;
  }

  .prod-card {
    flex: 0 0 33.333%;
  }

  .arrivals-section .prod-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


@media (max-width: 860px) {
  body {
    background: var(--paper);
  }

  .navbar,
  .home-shell,
  .site-footer {
    width: 100%;
    max-width: none;
  }

  .navbar {
    top: 0;
    margin-top: 0;
  }

  .nav-inner {
    min-height: 66px;
    padding: 0 20px;
  }

  .announcement-bar {
    min-height: 50px;
    padding: 10px 46px 10px 12px;
  }

  .announcement-copy {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    font-size: .68rem;
    line-height: 1.25;
  }

  .announcement-row-shipping,
  .announcement-row-coupon {
    width: 100%;
  }

  .announcement-bar strong {
    min-height: 20px;
    padding: 0 8px;
    white-space: nowrap;
  }

  .announcement-close {
    right: 10px;
    width: 24px;
    height: 24px;
    font-size: .86rem;
  }

  .nav-logo {
    font-size: 1.55rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }

  .brand-logo-nav {
    height: 24px;
    max-height: 24px;
  }

  .nav-links,
  .nav-icon-btn[title="Sign In"] {
    display: none;
  }

  .nav-hamburger {
    display: inline-flex;
    position: absolute;
    left: 18px;
    top: 17px;
  }

  .nav-actions {
    margin-left: auto;
    gap: 14px;
  }

  #search-trigger {
    position: absolute;
    left: 58px;
    top: 19px;
    width: 28px;
    height: 28px;
  }

  @media (max-width: 420px) {
    .nav-inner {
      padding: 0 16px;
    }

    .brand-logo-nav {
      height: 22px;
      max-height: 22px;
    }

    .nav-actions {
      gap: 10px;
    }

    .nav-hamburger {
      left: 14px;
    }

    #search-trigger {
      left: 50px;
    }
  }

  .nav-mobile.open {
    display: grid;
    gap: 2px;
    padding: 8px 20px 20px 58px;
    background: var(--paper);
    border-top: 1px solid var(--line);
  }

  .nav-mobile a {
    padding: 10px 0;
    font-weight: 800;
    text-transform: uppercase;
    font-size: .76rem;
  }

  .nav-mobile a.nav-mobile-sublink {
    padding: 7px 0 7px 16px;
    font-weight: 600;
    font-size: .7rem;
    color: var(--muted);
  }

  .nav-mobile a.nav-mobile-sublink.active {
    color: var(--black);
  }

  .hero-slide {
    min-height: unset;
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }

  .hero-layout-background .hero-bg {
    display: none;
  }

  .hero-layout-background .hero-right {
    display: block;
  }

  .hero {
    min-height: 0;
    height: auto;
  }

  .hero-slides {
    min-height: 0;
    height: auto;
  }

  .hero-right {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-left {
    padding: 18px 24px 56px;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 3rem);
    line-height: 1.12;
  }

  .hero-sub {
    font-size: .96rem;
    margin-bottom: 24px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-controls {
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
  }

  .btn-primary-dark,
  .btn-outline-dark,
  .btn-white,
  .btn,
  .btn-add,
  .btn-add-to-cart,
  .btn-checkout,
  .newsletter-form button {
    min-height: 38px;
    padding-inline: 16px;
    font-size: .64rem;
  }

  .hero-right,
  .hero-statue {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .hero-right > img,
  .hero-right-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-slide .hero-right > img {
    object-fit: cover;
    object-position: var(--hero-mobile-x, 50%) var(--hero-mobile-y, 50%);
    transform: scale(var(--hero-mobile-zoom, 1));
    transform-origin: var(--hero-mobile-x, 50%) var(--hero-mobile-y, 50%);
    background: var(--hero-bg, var(--paper));
  }

  .hero-meta {
    display: none;
  }

  .trust-inner {
    width: calc(100% - 32px);
    grid-template-columns: repeat(4, 1fr);
    padding: 18px 0 14px;
  }

  .trust-item {
    padding: 0 4px;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    border-right: 0;
  }

  .trust-icon {
    width: 34px;
    height: 34px;
  }

  .trust-icon svg {
    width: 26px;
    height: 26px;
  }

  .trust-label {
    font-size: .62rem;
    line-height: 1.1;
  }

  .trust-sub {
    display: none;
  }

  .section,
  .collections-inner,
  .newsletter,
  .stats-row,
  .gender-shop,
  .featured-drop,
  .about-story,
  .about-values,
  .about-manifesto,
  .about-timeline,
  .about-cta,
  .contact-grid,
  .contact-form-wrap,
  .product-detail,
  .cart-page,
  .checkout-page,
  .orders-page {
    width: calc(100% - 28px);
  }

  .collections-inner {
    padding-top: 28px;
  }

  .arrivals-section::before,
  .collections-inner::before,
  .featured-drop::before {
    margin-bottom: 24px;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .section-title::after {
    width: 22px;
    margin-top: 8px;
  }

  .section-link {
    font-size: .62rem;
    gap: 10px;
  }

  .arrivals-section {
    padding-top: 34px;
  }

  .arrivals-header {
    margin-bottom: 18px;
  }

  .arrivals-title,
  .arrivals-view {
    font-size: .62rem;
  }

  .arrivals-title {
    font-size: 1.25rem;
  }

  .arrivals-title::after {
    width: 22px;
    margin-top: 8px;
  }

  .arrivals-view {
    gap: 10px;
  }

  .arrivals-section .prod-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .collections-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .collections-track > .col-card:nth-child(n + 3) {
    display: none;
  }

  .col-card-body {
    bottom: 30px;
    padding: 0 24px;
  }

  .col-card-name {
    font-size: 1.16rem;
    letter-spacing: .24em;
    text-indent: .24em;
  }

  .col-card-count {
    margin-top: 24px;
    padding: 15px 30px;
  }

  .gender-shop,
  .featured-drop {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .featured-drop {
    margin-top: 34px;
  }

  .drop-header {
    margin-bottom: 12px;
  }

  .about-page {
    width: min(calc(100% - 20px), 680px);
  }

  .contact-page {
    width: 100%;
    max-width: none;
  }

  .contact-about-page {
    width: min(calc(100% - 20px), 680px);
    max-width: 680px;
  }

  .about-hero {
    min-height: unset;
    grid-template-columns: 1fr;
  }

  .about-hero-copy {
    padding: 38px 28px 34px;
    align-items: flex-start;
  }

  .about-kicker {
    margin-bottom: 12px;
  }

  .about-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.8rem);
  }

  .about-hero p {
    font-size: .96rem;
  }

  .about-hero-art {
    min-height: 340px;
  }

  .contact-hero-art {
    min-height: 300px;
    padding: 22px;
  }

  .contact-hero-panel {
    padding: 24px;
  }

  .about-story {
    margin-block: 28px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-story-image {
    min-height: 240px;
  }

  .about-story-copy {
    padding: 0;
  }

  .about-story-copy h2 {
    font-size: 1.8rem;
  }

  .about-values {
    margin-bottom: 28px;
    grid-template-columns: 1fr;
  }

  .about-values > div {
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-values > div:last-child {
    border-bottom: 0;
  }

  .about-manifesto,
  .about-cta {
    margin-bottom: 28px;
    padding: 24px;
  }

  .about-timeline {
    margin-bottom: 28px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-timeline article {
    padding: 20px;
  }

  .contact-hero {
    margin-top: 12px;
    padding: 34px 24px;
  }

  .contact-hero h1 {
    font-size: clamp(2rem, 10vw, 3.6rem);
  }

  .contact-hero p {
    font-size: .95rem;
  }

  .contact-grid {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-card,
  .contact-card-wide {
    min-height: unset;
    grid-column: auto;
  }

  .contact-card {
    padding: 22px;
  }

  .contact-form-wrap {
    margin-top: 18px;
  }

  .contact-form-card {
    padding: 22px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .gender-card {
    min-height: 300px;
  }

  .drop-hero {
    min-height: 340px;
  }

  .gender-copy,
  .drop-copy {
    padding: 26px;
  }

  .gender-copy h2,
  .drop-copy h2 {
    font-size: 2.45rem;
  }

  .gender-copy p,
  .drop-copy p {
    margin: 14px 0 22px;
    font-size: .86rem;
  }

  .drop-products {
    grid-template-rows: none;
    height: auto;
  }

  .drop-slide,
  .drop-slide.active {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .drop-header-right {
    width: auto;
    margin-left: auto;
    justify-content: flex-end;
  }

  .drop-product {
    grid-template-columns: 86px minmax(0, 1fr);
    padding: 12px;
  }

  .prod-card {
    flex: 0 0 50%;
  }

  .arrivals-section .prod-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .newsletter {
    border-radius: 12px 12px 0 0;
    background: #07090d;
    border: 1px solid rgba(255, 255, 255, .16);
    border-bottom: 0;
  }

  .newsletter-inner {
    min-height: 112px;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .newsletter h2,
  .newsletter p {
    text-align: center;
    margin-inline: auto;
  }

  .newsletter h2 {
    font-size: 1rem;
  }

  .newsletter p {
    font-size: .68rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 0 0 12px 12px;
  }

  .stat-item {
    min-height: 88px;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .stat-num {
    font-size: 1.45rem;
  }

  .footer-inner {
    padding: 28px 20px 18px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-inner > div:first-child {
    grid-column: 1 / -1;
    padding: 20px;
    border: 1px solid var(--line);
    background: #fff;
  }

  .footer-inner > div:first-child .footer-logo {
    margin-bottom: 10px;
  }

  .footer-inner > div:first-child .brand-logo-footer {
    max-width: 210px;
  }

  .footer-inner > div:first-child .footer-tagline {
    max-width: none;
    margin: 0;
    font-size: .68rem;
    line-height: 1.55;
  }

  /* ── Mobile footer accordion ── */
  .footer-col {
    gap: 0;
    border-bottom: 0;
    border-top: 1px solid var(--line);
    /* background: #fff; */
  }

  .footer-col:last-of-type {
    border-bottom: 1px solid var(--line);
  }

  .footer-col-title {
    margin-bottom: 0;
    min-height: 54px;
    padding: 0 2px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    font-size: .72rem;
    letter-spacing: .08em;
  }

  .footer-col-title:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: -2px;
  }

  .footer-col-caret {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
  }

  .footer-col.is-open .footer-col-caret {
    transform: rotate(180deg);
  }

  .footer-col-links {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease;
  }

  .footer-col.is-open .footer-col-links {
    grid-template-rows: 1fr;
  }

  .footer-col-links-inner {
    display: grid;
    gap: 0;
    overflow: hidden;
    min-height: 0;
    padding: 0;
  }

  .footer-col-links-inner a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
    padding: 0 2px;
    border-top: 1px solid rgba(17, 17, 17, .08);
    font-size: .9rem;
    font-weight: 600;
  }

  .footer-col.is-open .footer-col-links-inner {
    padding-bottom: 12px;
  }

  .footer-col-links-inner a::after {
    content: "→";
    color: var(--muted);
    font-size: .9rem;
  }

  .footer-bottom {
    padding: 12px 20px 24px;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    border-top: 0;
  }

  .footer-copy,
  .footer-credit {
    margin: 0;
    width: 100%;
  }

  .footer-copy {
    order: 1;
  }

  .footer-credit {
    order: 2;
  }

  .footer-payments {
    width: 100%;
    order: 3;
  }

  .payment-methods {
    justify-content: center;
    gap: 6px;
    row-gap: 6px;
  }

  .payment-logo {
    height: 20px;
  }

  .payment-logo-applepay,
  .payment-logo-googlepay,
  .payment-logo-discover {
    height: 19px;
  }

  .payment-logo-cashapp {
    height: 17px;
  }

  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .category-layout {
    gap: 22px;
  }

  .listing-head {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .listing-filter-panel {
    margin-bottom: 16px;
  }

  .pf-bar {
    top: calc(var(--nav-height) + 10px);
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .pf-actions {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .shop-listing .prod-grid,
  .related-products .prod-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ppage {
    width: calc(100% - 20px);
    padding: 18px 16px 34px;
  }

  .ppage-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ppage-grid > * {
    min-width: 0;
  }

  .pgl {
    position: static;
  }

  .pgl-main {
    aspect-ratio: 4 / 5;
  }

  .pgl-main img {
    padding: 14px;
    object-fit: contain;
  }

  .pgl-thumbs {
    margin-top: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .pgl-thumb {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
  }

  .pnl-meta {
    margin-bottom: 10px;
    font-size: .64rem;
    letter-spacing: .08em;
  }

  .pnl-title {
    font-size: clamp(1.08rem, 5.1vw, 1.42rem);
    line-height: 1.3;
    max-width: none;
    width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .pnl-price-row {
    margin-top: 12px;
    padding: 14px 0;
    gap: 6px 10px;
  }

  .pnl-price {
    font-size: clamp(1.28rem, 6.1vw, 1.58rem);
  }

  .pnl-tax {
    width: 100%;
    margin-left: 0;
    margin-top: 2px;
    font-size: .58rem;
  }

  .pnl-desc {
    margin: 14px 0 18px;
    font-size: .84rem;
    line-height: 1.62;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .pnl-mobile-preview {
    position: sticky;
    top: 74px;
    z-index: 20;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 24px rgba(17, 17, 17, .08);
    backdrop-filter: blur(10px);
  }

  .pnl-mobile-preview img {
    width: 76px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: var(--panel);
    display: block;
  }

  .pnl-mobile-preview span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .pnl-mobile-preview strong {
    display: block;
    color: var(--ink);
    font-size: .86rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .pnl-info p {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .pnl-variant-group {
    margin-bottom: 14px;
  }

  .fit-fields {
    grid-template-columns: 1fr;
  }

  .fit-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .pnl-variant-btn {
    min-width: 46px;
    height: 36px;
    padding: 0 12px;
    font-size: .72rem;
  }

  .pnl-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-bottom: 18px;
    padding-top: 16px;
  }

  .related-products {
    margin-top: 42px;
  }

  .related-products .prod-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 12px;
  }

  .related-products .prod-card {
    width: 100%;
    max-width: none;
    margin-inline: auto;
  }

  .pnl-qty {
    min-width: 0;
    width: 100%;
    height: 46px;
  }

  .pnl-qty-btn {
    width: 40px;
    height: 46px;
  }

  .pnl-qty-input {
    width: 100%;
    height: 46px;
  }

  .pnl-add-btn {
    grid-column: 1 / -1;
    order: 3;
    height: 46px;
    padding: 0 16px;
    font-size: .66rem;
    letter-spacing: .08em;
  }

  .pnl-heart-btn {
    width: 46px;
    height: 46px;
  }

  .pnl-trust {
    gap: 8px;
    padding-top: 16px;
  }

  .pnl-trust-item span {
    font-size: .56rem;
    letter-spacing: .05em;
  }

  .cart-summary,
  .checkout-order-summary {
    position: static;
  }
}

@media (max-width: 480px) {
  .announcement-bar {
    min-height: 48px;
    padding: 9px 42px 9px 10px;
  }

  .announcement-copy {
    font-size: .64rem;
    gap: 5px;
  }

  .announcement-bar strong {
    padding: 0 7px;
    font-size: .62rem;
  }

  .announcement-close {
    right: 8px;
    width: 22px;
    height: 22px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .navbar,
  .home-shell,
  .about-page,
  .contact-page,
  .site-footer {
    width: 100%;
    max-width: none;
  }

  .hero-right,
  .hero-statue {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .hero-slides {
    min-height: 0;
  }

  .hero-left {
    align-items: center;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .shop-listing {
    width: calc(100% - 16px);
  }

  .category-results {
    margin-top: 18px;
  }

  .pf-bar {
    width: 100%;
    min-height: 0;
    gap: 0;
  }

  .pf-btn {
    min-height: 50px;
    padding: 0 14px;
    font-size: .82rem;
  }

  .pf-btn svg {
    width: 16px;
    height: 16px;
  }

  .pf-btn-value {
    font-size: .9rem;
  }

  .pf-total {
    display: none;
  }

  .pf-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pf-btn-filter,
  .pf-btn-sort {
    min-width: 0;
  }

  .pf-dropdown {
    min-width: 0;
  }

  .shop-listing .prod-grid,
  .related-products .prod-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ppage {
    width: 100%;
    max-width: 100%;
    padding: 12px 0 24px;
    overflow-x: hidden;
  }

  .pgl-main {
    width: 100%;
    height: min(78vw, 340px);
    aspect-ratio: auto;
  }

  .pgl-main img {
    padding: 8px;
    object-fit: contain;
  }

  .pgl-thumbs {
    padding-inline: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  .pgl-thumb {
    scroll-snap-align: start;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
  }

  .pnl {
    padding-inline: 12px;
    overflow-x: hidden;
  }

  .pnl-title,
  .pnl-desc,
  .pnl-info p {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .pnl-variant-opts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .pnl-size-head {
    align-items: flex-start;
  }

  .fit-trigger {
    line-height: 1.2;
    text-align: right;
  }

  .pnl-actions {
    grid-template-columns: 1fr 46px;
    align-items: stretch;
  }

  .pnl-qty,
  .pnl-add-btn,
  .pnl-heart-btn {
    width: 100%;
    max-width: 100%;
  }

  .related-products {
    padding-inline: 12px;
  }

  .related-head {
    align-items: center;
  }

  .related-head .arrivals-view {
    white-space: nowrap;
  }

  .related-products .prod-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: stretch;
    gap: 12px;
  }

  .related-products .prod-card {
    width: 100%;
    max-width: none;
    margin-inline: auto;
  }

  .pnl-meta {
    font-size: .6rem;
  }

  .pnl-title {
    font-size: clamp(1rem, 5.4vw, 1.24rem);
    line-height: 1.32;
  }

  .pnl-price {
    font-size: clamp(1.2rem, 6.8vw, 1.45rem);
  }

  .pnl-tax {
    font-size: .55rem;
    letter-spacing: .09em;
  }

  .pnl-desc {
    font-size: .8rem;
    line-height: 1.58;
  }

  .pnl-variant-btn {
    min-width: 42px;
    height: 34px;
    padding: 0 10px;
    font-size: .68rem;
  }

  .pnl-trust {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--line);
  }

  .pnl-trust-item {
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
    text-align: left;
  }

  .pnl-trust-item svg {
    width: 16px;
    height: 16px;
  }

  .pnl-trust-item span {
    font-size: .58rem;
  }

  .hero-statue .art-bust {
    width: 78%;
    right: -8%;
  }

  .hero-statue .art-sun {
    width: 34%;
    left: 25%;
    top: 6%;
  }

  .trust-inner {
    width: calc(100% - 24px);
  }

  .trust-label {
    font-size: .56rem;
  }

  .collections-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .collections-track > .col-card:nth-child(n + 3) {
    display: none;
  }

  .col-card {
    min-height: 360px;
  }

  .prod-img { aspect-ratio: 4 / 5; }

  .prod-badge {
    left: 8px;
    bottom: 8px;
    min-width: 48px;
    min-height: 28px;
    padding: 0 8px;
    font-size: .68rem;
    letter-spacing: .1em;
  }

  .prod-actions {
    right: 8px;
    bottom: 8px;
    gap: 4px;
  }

  .prod-icon {
    width: 32px;
    height: 28px;
  }

  .prod-icon svg {
    width: 15px;
    height: 15px;
  }

  .prod-body {
    padding: 10px 0 6px;
  }

  .prod-name {
    margin-top: 6px;
    font-size: .82rem;
    line-height: 1.3;
  }

  .prod-price-line {
    gap: 6px;
  }

  .prod-price {
    font-size: .9rem;
  }

  .prod-compare {
    font-size: .74rem;
  }

  .prod-swatches {
    gap: 4px;
  }

  .prod-swatch {
    width: 12px;
    height: 12px;
  }

  .cart-item {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .cart-item-img {
    width: 84px;
  }

  .cart-item-price,
  .cart-item-remove {
    grid-column: 2;
  }

  .cart-item-remove {
    justify-self: start;
  }

  .order-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .orders-account-hero {
    align-items: center;
    flex-direction: column;
    padding: 18px;
    text-align: center;
  }

  .orders-account-main {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .orders-account-meta {
    align-items: center;
    width: 100%;
  }

  .orders-account-meta-row {
    justify-content: center;
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Auth — Google button, OTP, dividers, order-complete
   ═══════════════════════════════════════════════════════════════ */

/* Card tweaks for auth pages */
.auth-card {
  max-width: 440px;
}

.auth-brand h1 {
  margin: 0 0 4px;
  font-size: 1.6rem;
  font-weight: 900;
}

.auth-brand .subtitle {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: .9375rem;
}

/* Google OAuth button */
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 16px;
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, box-shadow .15s;
}

.btn-google:hover {
  background: #f8f9fa;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.btn-google svg {
  flex-shrink: 0;
}

/* Auth divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  color: var(--muted);
  font-size: .8125rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Tabs */
.auth-tabs {
  display: flex;
  border-bottom: 2px solid var(--line);
  margin-bottom: 20px;
  gap: 0;
}

.auth-tab {
  flex: 1;
  padding: 10px 12px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: color .15s, border-color .15s;
}

.auth-tab.active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.auth-tab-panel {
  display: none;
}

.auth-tab-panel.active {
  display: block;
}

.auth-tab-hint {
  font-size: .875rem;
  color: var(--muted);
  margin: 0 0 16px;
}

/* Full-width submit button in auth cards */
.auth-submit {
  width: 100%;
  padding: 12px;
  margin-top: 4px;
  font-size: 1rem;
  border-radius: 8px;
}

/* OTP code input — large, centred digits */
.otp-code-input {
  font-size: 1.75rem;
  letter-spacing: 6px;
  text-align: center;
  font-weight: 700;
  padding: 12px 16px;
}

/* OTP sent message */
.otp-sent-msg {
  font-size: .9rem;
  color: var(--muted);
  margin: 0 0 16px;
  padding: 10px 14px;
  background: var(--panel);
  border-radius: 8px;
}

/* Resend area */
.otp-resend-wrap {
  margin-top: 14px;
  font-size: .875rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.otp-timer {
  color: var(--muted);
}

.otp-resend-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  text-decoration: underline;
}

.otp-resend-btn:hover {
  color: var(--blue);
}

/* Back link in auth flow */
.auth-back-btn {
  display: inline-block;
  margin-top: 10px;
  font-size: .8125rem;
  color: var(--muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-back-btn:hover {
  color: var(--ink);
}

/* Error message below field */
.auth-field-error {
  color: #dc2626;
  font-size: .8125rem;
  margin-top: 6px;
}

/* Footer links row */
.auth-footer-links {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: .875rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.auth-footer-links a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Notice inside checkout */
.checkout-guest-notice {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: .875rem;
  color: #1e40af;
}

.checkout-guest-notice a {
  font-weight: 700;
  text-decoration: underline;
  color: #1e40af;
}

/* Auth notice (e.g. Google not configured) */
.auth-notice {
  font-size: .875rem;
  color: var(--muted);
  padding: 10px 14px;
  background: var(--panel);
  border-radius: 8px;
  text-align: center;
}

/* Password hint text */
.form-hint {
  font-size: .8125rem;
  color: var(--muted);
  font-weight: 400;
}

/* ── Order Complete Page ─────────────────────────────────────────────── */

.order-complete-page {
  max-width: 680px;
  margin: 48px auto 80px;
  padding: 0 20px;
}

.order-complete-hero {
  text-align: center;
  padding: 40px 24px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 24px;
}

.order-complete-check {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.order-complete-hero h1 {
  font-size: 1.75rem;
  font-weight: 900;
  margin: 0 0 10px;
}

.order-complete-hero p {
  font-size: .9375rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  max-width: 460px;
  margin-inline: auto;
}

.order-complete-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.order-complete-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}

.order-complete-card h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--soft-line);
}

.order-account-prompt {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-color: #bfdbfe;
  background: #eff6ff;
}

.order-account-prompt h2 {
  border-bottom-color: #bfdbfe;
  color: #1e3a5f;
}

.order-account-prompt p {
  font-size: .9375rem;
  color: #374151;
  margin: 0;
  line-height: 1.6;
}

.order-account-prompt-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 479px) {
  .order-account-prompt {
    flex-direction: column;
  }

  .otp-code-input {
    font-size: 1.4rem;
    letter-spacing: 4px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PHASE 2 — v64
   1. Hero right-side dark bleed gradient
   2. Stronger navbar scrolled-state distinction
   3. Newsletter CTA visibility on mobile
   4. Ticker hover-pause interaction
   5. Footer brand tagline
   ═══════════════════════════════════════════════════════════════════════════ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   2. NAVBAR SCROLLED — STRONGER ELEVATION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#main-nav.navbar--scrolled {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.10),
    0 2px 0 rgba(0, 0, 0, 0.04),
    0 10px 40px rgba(0, 0, 0, 0.14);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   3. NEWSLETTER CTA — MOBILE VISIBILITY
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 600px) {
  .newsletter .newsletter-form button {
    color: var(--black);
    border-bottom: 0;
    width: 54px;
    flex: 0 0 54px;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   4. TRUST TICKER — HOVER PAUSE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.trust-ticker {
  cursor: default;
}

.trust-ticker:hover .trust-ticker-track {
  animation-play-state: paused;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   5. FOOTER — BRAND TAGLINE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.32);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LUXURY SHOPPING BAG & CHECKOUT
   Inspired by premium fashion editorial design
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Shared Page Wrapper ───────────────────────────────────────────────── */
.lux-page {
  background: #fafafa;
  min-height: 60vh;
  padding-bottom: 100px;
}

.lux-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Steps/Breadcrumb bar ─────────────────────────────────────────────── */
.lux-steps {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 0 40px;
}

.lux-steps-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  height: 52px;
}

.lux-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #bbb;
  text-decoration: none;
}

.lux-step.active {
  color: #1a1a1a;
}

.lux-step.done {
  color: #555;
}

.lux-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 800;
  flex-shrink: 0;
}

.lux-step.active .lux-step-num {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

.lux-step-sep {
  width: 36px;
  height: 1px;
  background: #ddd;
  flex-shrink: 0;
  margin: 0 4px;
}

/* ── Page heading ─────────────────────────────────────────────────────── */
.lux-page-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 40px 0 0;
  margin-bottom: 32px;
  color: #1a1a1a;
}

/* ── Bag Layout ───────────────────────────────────────────────────────── */
.bag-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}

/* Column header — just a border line, no text */
.bag-col-header {
  border-bottom: 1px solid #1a1a1a;
  margin-bottom: 0;
}

/* ── Bag Item ─────────────────────────────────────────────────────────── */
.bag-item {
  display: grid;
  grid-template-columns: 130px 1fr 80px;
  gap: 24px;
  align-items: stretch;
  padding: 24px 0;
  border-bottom: 1px solid #e8e8e8;
}

.bag-item-img {
  width: 130px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f2f2f2;
  align-self: start;
}

.bag-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Body column: brand, name, attrs, qty */
.bag-item-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.bag-item-brand {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 5px;
}

.bag-item-name {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1.35;
  margin-bottom: 8px;
}

/* Color / Size attribute rows */
.bag-item-attr {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.85;
}

.bag-attr-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999;
  margin-right: 6px;
}

/* Qty stepper */
.bag-qty-form { margin-top: 14px; }

.bag-qty-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #1a1a1a;
  width: fit-content;
}

.bag-qty-btn {
  width: 30px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.bag-qty-btn:hover { background: #f5f5f5; }

.bag-qty-input {
  width: 38px;
  height: 32px;
  border: none;
  border-left: 1px solid #1a1a1a;
  border-right: 1px solid #1a1a1a;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  background: #fff;
  -moz-appearance: textfield;
}
.bag-qty-input::-webkit-inner-spin-button,
.bag-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Right column: icons at top, price at bottom */
.bag-item-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

/* Action icon buttons — horizontal row, right-aligned */
.bag-item-actions {
  display: flex;
  align-items: center;
  gap: 2px;
}

.bag-action-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: #bbb;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s;
  line-height: 1;
}
.bag-action-btn:hover { color: #1a1a1a; }

/* Tooltip */
.bag-action-btn[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  font-family: var(--font);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 8px 4px;
  white-space: nowrap;
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .14s;
  z-index: 50;
}
.bag-action-btn[data-tip]:hover::after { opacity: 1; }

.bag-wish-saved svg { fill: #1a1a1a; stroke: #1a1a1a; }
.bag-wish-saved { color: #1a1a1a; }

/* Price — bottom of right column */
.bag-item-price {
  font-size: 0.875rem;
  font-weight: 700;
  text-align: right;
  letter-spacing: 0.02em;
}

/* ── Bag Summary (right panel) ────────────────────────────────────────── */
.bag-summary-panel {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  background: #fff;
  border: 1px solid #e8e8e8;
}

.bag-summary-head {
  padding: 20px 24px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid #1a1a1a;
}

.bag-summary-body {
  padding: 0 24px 24px;
}

.bag-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.8125rem;
  color: #555;
}

.bag-summary-row:last-of-type {
  border-bottom: none;
}

.bag-summary-row .label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
}

.bag-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  margin-top: 4px;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.bag-summary-total .label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bag-summary-total .amount {
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.bag-estimated-note {
  margin: 8px 0 18px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #888;
}

/* Promo code input */
.bag-promo-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0;
  border: 1px solid #ddd;
  margin: 20px 0;
  width: 100%;
  min-width: 0;
}

.bag-promo-input {
  min-width: 0;
  width: 100%;
  border: none;
  padding: 11px 14px;
  font-size: 0.8125rem;
  background: #fafafa;
  outline: none;
}

.bag-promo-input::placeholder { color: #bbb; font-size: 0.75rem; letter-spacing: 0.05em; }

.bag-promo-btn {
  min-width: 78px;
  padding: 0 14px;
  background: none;
  border: none;
  border-left: 1px solid #ddd;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  color: #1a1a1a;
  transition: background 0.15s;
  white-space: nowrap;
}

.bag-promo-btn:hover { background: #f5f5f5; }

.bag-promo-input:disabled {
  color: #555;
  background: #f3f4f6;
  cursor: not-allowed;
}

.bag-promo-btn:disabled {
  color: #aaa;
  cursor: not-allowed;
}

.bag-promo-remove-btn {
  min-width: 88px;
  padding: 0 12px;
  background: #fff;
  border: none;
  border-left: 1px solid #ddd;
  color: #8a1f17;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.bag-promo-remove-btn:hover {
  background: #fff5f5;
}

/* CTA Buttons */
.lux-btn-black {
  display: block;
  width: 100%;
  padding: 16px 20px;
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.lux-btn-black:hover { background: #333; color: #fff; }

.lux-btn-outline {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  color: #1a1a1a;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid #1a1a1a;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  margin-top: 10px;
}

.lux-btn-outline:hover { background: #1a1a1a; color: #fff; }

.bag-continue-link {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bag-continue-link:hover { color: #1a1a1a; }

/* ── Summary rows block ───────────────────────────────────────────────── */
.bag-sr-block {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 4px;
}

/* ── Promo code accordion ─────────────────────────────────────────────── */
.bag-promo-accordion {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  margin: 4px 0;
}

.bag-promo-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #555;
  text-align: left;
}

.bag-promo-toggle:hover { color: #1a1a1a; }

.bag-promo-chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.bag-promo-accordion.open .bag-promo-chevron {
  transform: rotate(180deg);
}

.bag-promo-body {
  display: none;
  padding-bottom: 14px;
}

.bag-promo-accordion.open .bag-promo-body {
  display: block;
}

/* ── Free shipping bar ────────────────────────────────────────────────── */
.bag-free-ship-bar {
  padding: 14px 0 4px;
  border-bottom: 1px solid #f0f0f0;
}

.bag-free-ship-label {
  font-size: 0.75rem;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.4;
}

.bag-free-ship-track {
  height: 4px;
  background: #eee;
  overflow: hidden;
}

.bag-free-ship-fill {
  height: 100%;
  background: #1a1a1a;
  transition: width 0.5s ease;
}

/* ── Card checkout block ──────────────────────────────────────────────── */
.bag-card-checkout {
  margin-bottom: 4px;
}

.bag-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 20px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: background 0.2s;
  -webkit-appearance: none;
}
.bag-checkout-btn:hover { background: #333; color: #fff; }

.bag-cards-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 9px;
  min-height: 28px;
}

.bag-cards-label {
  font-size: 0.595rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #aaa;
  white-space: nowrap;
  line-height: 1;
}

.bag-cards-logos {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.bag-cards-logos svg {
  display: block;
  border-radius: 3px;
  flex-shrink: 0;
}

.bag-pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 8px;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  background: #fff;
  color: #111;
  font-size: .58rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Stripe Payment Request Button (Apple Pay / Google Pay) ────────── */
.bag-pr-btn-wrap {
  margin-bottom: 8px;
}

.bag-pr-btn-wrap iframe {
  border-radius: 6px;
  overflow: hidden;
}

.bag-pr-error {
  font-size: 0.75rem;
  color: #c0392b;
  text-align: center;
  margin: 6px 0 0;
  padding: 0;
  line-height: 1.4;
}

/* ── Or divider ───────────────────────────────────────────────────────── */
.bag-or-divider {
  position: relative;
  text-align: center;
  margin: 16px 0;
  color: #bbb;
}

.bag-or-divider::before,
.bag-or-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 22px);
  height: 1px;
  background: #e8e8e8;
}

.bag-or-divider::before { left: 0; }
.bag-or-divider::after  { right: 0; }

.bag-or-divider span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 0 8px;
  background: #fff;
}

/* ── PayPal button (cart) ─────────────────────────────────────────────── */
.bag-paypal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
  cursor: pointer;
}

.bag-paypal-btn:hover {
  border-color: #1a1a1a;
  background: #fafafa;
}

/* ── Help text ────────────────────────────────────────────────────────── */
.bag-help-text {
  font-size: 0.6875rem;
  color: #aaa;
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

.bag-help-text a {
  color: #555;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bag-help-text a:hover { color: #1a1a1a; }

/* Shipping note (legacy) */
.bag-shipping-note {
  font-size: 0.6875rem;
  color: #999;
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 14px;
  line-height: 1.6;
}

/* ── Empty Bag ────────────────────────────────────────────────────────── */
.bag-empty-state {
  text-align: center;
  padding: 80px 40px;
  background: #fff;
  border: 1px solid #e8e8e8;
}

.bag-empty-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  color: #ccc;
}

.bag-empty-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.bag-empty-text {
  font-size: 0.875rem;
  color: #767676;
  margin-bottom: 32px;
}

/* ── Checkout Layout ──────────────────────────────────────────────────── */
.co-lux-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
  padding-top: 40px;
}

/* ── Checkout Form Section ────────────────────────────────────────────── */
.co-lux-section {
  border: 1px solid #e8e8e8;
  background: #fff;
  margin-bottom: 16px;
}

.co-lux-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid #e8e8e8;
}

.co-lux-section-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.co-lux-section-title {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.co-lux-section-body {
  padding: 24px;
}

/* ── Checkout Form Fields ─────────────────────────────────────────────── */
.co-field-group {
  margin-bottom: 20px;
}

.co-field-group:last-child {
  margin-bottom: 0;
}

.co-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.co-field-row:last-child {
  margin-bottom: 0;
}

.co-label {
  display: block;
  font-size: 0.5875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
}

.co-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  background: #fafafa;
  font-size: 0.875rem;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  border-radius: 0;
  -webkit-appearance: none;
}

.co-input:focus {
  border-color: #1a1a1a;
  background: #fff;
}

.co-input::placeholder { color: #ccc; }

.co-input[readonly] {
  background: #f5f5f5;
  color: #555;
  cursor: default;
}

/* ── Shipping Method Cards ────────────────────────────────────────────── */
.co-sm-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid #ddd;
  background: #fafafa;
  cursor: pointer;
  margin-bottom: 10px;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}

.co-sm-option:last-child { margin-bottom: 0; }

.co-sm-option.selected,
.co-sm-option:has(input:checked) {
  border-color: #1a1a1a;
  background: #fff;
}

.co-sm-option input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #1a1a1a;
  flex-shrink: 0;
  margin: 0;
}

.co-sm-body { flex: 1; min-width: 0; }

.co-sm-name {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1a1a1a;
}

.co-sm-desc {
  font-size: 0.75rem;
  color: #999;
  margin-top: 2px;
}

.co-sm-price {
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  padding-left: 12px;
}

.co-free-badge {
  font-size: 0.5875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #f0faf5;
  color: #15803d;
  padding: 2px 8px;
  margin-left: 6px;
}

/* ── Payment buttons ──────────────────────────────────────────────────── */
.co-paypal-btn {
  width: 100%;
  padding: 16px 20px;
  background: #ffc439;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: filter 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 16px rgba(255, 196, 57, 0.4);
}

.co-paypal-btn:hover {
  filter: brightness(0.94);
  box-shadow: 0 4px 22px rgba(255, 196, 57, 0.55);
}

.co-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
}

.co-divider-line {
  flex: 1;
  height: 1px;
  background: #e8e8e8;
}

.co-divider-text {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bbb;
}

.co-cod-btn {
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  border: 1px solid #ddd;
  cursor: pointer;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #767676;
  transition: border-color 0.15s, color 0.15s;
}

.co-cod-btn:hover {
  border-color: #999;
  color: #1a1a1a;
}

/* ── Trust badges ─────────────────────────────────────────────────────── */
.co-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.co-trust-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
}

/* ── Checkout Order Summary (right panel) ─────────────────────────────── */
.co-order-panel {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  background: #fff;
  border: 1px solid #e8e8e8;
}

.co-order-panel-head {
  padding: 18px 24px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.co-order-items {
  border-bottom: 1px solid #e8e8e8;
  max-height: 300px;
  overflow-y: auto;
}

.co-order-item {
  display: flex;
  gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px solid #f5f5f5;
}

.co-order-item:last-child { border-bottom: none; }

.co-order-item-img {
  width: 56px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f2f2f2;
}

.co-order-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.co-order-item-info {
  flex: 1;
  min-width: 0;
}

.co-order-item-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 4px;
}

.co-order-item-meta {
  font-size: 0.6875rem;
  color: #999;
}

.co-order-item-price {
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
  align-self: flex-start;
  padding-top: 2px;
}

.co-order-totals {
  padding: 0 24px;
}

.co-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 0.8125rem;
  color: #555;
}

.co-total-row .t-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
}

.co-total-grand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-top: 1px solid #1a1a1a;
}

.co-total-grand .g-label {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.co-total-grand .g-amount {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* Free-shipping progress bar */
.co-progress-wrap {
  padding: 14px 24px;
  border-top: 1px solid #f5f5f5;
}

.co-progress-label {
  font-size: 0.6875rem;
  color: #999;
  margin-bottom: 7px;
}

.co-progress-bar {
  height: 3px;
  background: #eee;
  overflow: hidden;
}

.co-progress-fill {
  height: 100%;
  background: #1a1a1a;
  transition: width 0.4s;
}

/* ── Guest notice ─────────────────────────────────────────────────────── */
.co-guest-notice {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  padding: 14px 20px;
  margin-bottom: 16px;
  font-size: 0.8125rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
}

.co-guest-notice a {
  color: #1a1a1a;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Terms text ───────────────────────────────────────────────────────── */
.co-terms-text {
  font-size: 0.6875rem;
  color: #aaa;
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

.co-terms-text a { color: #767676; text-decoration: underline; }

/* ── Error alert ──────────────────────────────────────────────────────── */
.co-errors {
  border: 1px solid #d00;
  background: #fff5f5;
  padding: 14px 20px;
  margin-bottom: 20px;
  font-size: 0.8125rem;
  color: #c00;
}

.co-errors li {
  list-style: none;
  padding: 2px 0;
}

.co-errors li::before {
  content: '— ';
}

/* ── Responsive Luxury ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lux-inner { padding: 0 24px; }
  .lux-steps { padding: 0 24px; }
  .bag-layout { grid-template-columns: 1fr 320px; gap: 40px; }
  .co-lux-layout { grid-template-columns: 1fr 360px; gap: 40px; }
}

@media (max-width: 768px) {
  .lux-inner { padding: 0 20px; }
  .lux-steps { padding: 0 20px; }

  .bag-layout { grid-template-columns: 1fr; gap: 32px; }

  .bag-col-header { display: none; }

  .bag-item {
    grid-template-columns: 90px 1fr;
    grid-template-rows: auto auto;
    gap: 12px 16px;
    align-items: start;
  }

  .bag-item-img { width: 90px; }

  .bag-item-body { grid-column: 2; }

  .bag-item-right {
    grid-column: 2;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
  }

  .bag-summary-panel { position: static; }

  .co-lux-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .co-order-panel {
    position: static;
    order: -1;
  }

  .co-field-row { grid-template-columns: 1fr; gap: 0; }

  .co-field-row .co-field-group { margin-bottom: 20px; }
}

@media (max-width: 480px) {
  .lux-page-title { padding-top: 28px; margin-bottom: 24px; }
  .lux-step-label { display: none; }
  .lux-step-sep { width: 20px; }

  .bag-cards-row {
    gap: 6px;
    justify-content: center;
  }

  .bag-cards-label {
    width: 100%;
    text-align: center;
  }

  .bag-cards-logos {
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   WISHLIST / FAVORITES
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Nav wishlist icon (inherits .nav-icon-btn sizing) ── */
.btn-wishlist {
  position: relative;
}
.btn-wishlist svg {
  width: 22px;
  height: 22px;
  transition: fill 0.2s, transform 0.2s;
}
.btn-wishlist:hover svg {
  transform: scale(1.15);
}

/* ── Heart button on product cards ── */
.prod-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.18s, transform 0.2s, box-shadow 0.18s;
  box-shadow: 0 1px 6px rgba(0,0,0,.12);
}
.prod-heart:hover {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 2px 10px rgba(0,0,0,.16);
}
.prod-heart svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #444;
  stroke-width: 1.75px;
  transition: fill 0.2s, stroke 0.2s;
}
.prod-heart.is-saved svg {
  fill: #d92d20;
  stroke: #d92d20;
}
.prod-heart.wl-btn-loading {
  opacity: 0.55;
  pointer-events: none;
}
/* Pop animation when toggled */
@keyframes wl-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
.prod-heart.wl-heart-pop {
  animation: wl-pop 0.38s ease forwards;
}

/* ── Heart button on product detail page ── */
.pnl-heart-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid #d0d0d0;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.pnl-heart-btn.prod-heart {
  position: static;
  top: auto;
  right: auto;
  z-index: auto;
}
.pnl-heart-btn:hover {
  border-color: #d92d20;
  background: #fff8f7;
  transform: scale(1.07);
}
.pnl-heart-btn svg {
  fill: none;
  stroke: #555;
  stroke-width: 1.75px;
  transition: fill 0.2s, stroke 0.2s;
}
.pnl-heart-btn.is-saved {
  border-color: #d92d20;
  background: #fff0ef;
}
.pnl-heart-btn.is-saved svg {
  fill: #d92d20;
  stroke: #d92d20;
}

/* ── Wishlist page ─────────────────────────────────────────────────────────── */
.wl-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 24px 100px;
}

/* Breadcrumb */
.wl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
}
.wl-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.wl-breadcrumb a:hover { color: var(--ink); }
.wl-breadcrumb-sep { opacity: 0.45; font-size: 0.65rem; }

/* Page hero */
.wl-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.wl-heading {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.08;
}
.wl-subline {
  font-family: Georgia, serif;
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--muted);
  margin: 0;
}
.wl-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  padding-bottom: 4px;
}
.wl-count-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.wl-clear-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.wl-clear-btn:hover { color: var(--ink); }

.wl-clear-pill {
  cursor: pointer;
  font-family: inherit;
}

.wl-clear-pill:hover {
  border-color: rgba(5, 5, 5, .28);
  color: var(--ink);
}

.wl-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0 0 36px;
}

/* Guest sign-in banner */
.wl-guest-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  margin-bottom: 40px;
}
.wl-guest-banner-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.wl-guest-banner-text { flex: 1; min-width: 0; }
.wl-guest-banner-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.wl-guest-banner-text p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.45;
}
.wl-guest-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.wl-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--ink);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.wl-btn-outline:hover { background: var(--ink); color: #fff; }
.wl-btn-dark {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ink);
  border: 1.5px solid var(--ink);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.wl-btn-dark:hover { background: #2a2a2a; border-color: #2a2a2a; }

/* Products grid */
.wl-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 20px;
}
.wl-card {
  display: flex;
  flex-direction: column;
}
.wl-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px 0 0;
}
.wl-card-cat {
  display: block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.wl-card-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 8px;
}
.wl-card-name:hover { text-decoration: underline; text-underline-offset: 2px; }
.wl-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}
.wl-card-price {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--ink);
}
.wl-card-compare {
  font-size: 0.8125rem;
  color: var(--muted);
  text-decoration: line-through;
}
.wl-card-cta {
  display: block;
  width: 100%;
  padding: 11px 0;
  background: var(--ink);
  color: #fff;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  margin-top: auto;
  transition: background 0.15s;
}
.wl-card-cta:hover { background: #2a2a2a; }

/* Empty state */
.wl-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
  max-width: 420px;
  margin: 0 auto;
}
.wl-empty-icon {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d8d8d8;
  margin-bottom: 28px;
}
.wl-empty-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 12px;
}
.wl-empty-sub {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 36px;
}
.wl-browse-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--ink);
  color: #fff;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s;
}
.wl-browse-btn:hover { background: #2a2a2a; }

/* Responsive */
@media (max-width: 1100px) {
  .wl-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .wl-guest-banner { flex-wrap: wrap; }
  .wl-guest-banner-actions { flex-wrap: wrap; }
}
@media (max-width: 680px) {
  .wl-page { padding: 28px 16px 64px; }
  .wl-hero { flex-direction: column; align-items: flex-start; }
  .wl-heading { font-size: 1.85rem; }
  .wl-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 12px; }
  .pnl-heart-btn { width: 44px; height: 44px; }
}
@media (max-width: 380px) {
  .wl-grid { grid-template-columns: 1fr; }
}

/* ── Nav account hover dropdown ─────────────────────────────────────────────── */
.nav-account-wrap {
  display: inline-flex;
  align-items: center;
  overflow: visible;
}
/* Dropdown is a child of .navbar (position:sticky), so top:100% = bottom of navbar */
.nav-account-dropdown {
  position: absolute;
  top: 100%;
  right: 34px;          /* matches nav-inner right padding */
  width: 320px;
  background: var(--white);
  border-top: 2px solid var(--ink);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.15);
  padding: 24px 24px 22px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 100;
}
/* Opened via JS class */
.nav-account-dropdown.ndd-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.ndd-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}
.ndd-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--ink);
}
.ndd-register {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.15s;
}
.ndd-register:hover { opacity: 1; }
.ndd-form { margin: 0; }
.ndd-field { margin-bottom: 9px; }
.ndd-input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #ccc;
  background: #fff;
  font-family: var(--font);
  font-size: 0.8rem;
  color: var(--ink);
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s;
  border-radius: 0;
}
.ndd-input::placeholder {
  color: #aaa;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}
.ndd-input:focus { border-color: var(--ink); }
.ndd-row-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.ndd-forgot {
  font-size: 0.72rem;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ndd-forgot:hover { opacity: 0.65; }
.ndd-required {
  font-size: 0.65rem;
  color: #bbb;
  font-style: italic;
}
.ndd-error {
  font-size: 0.78rem;
  color: var(--red);
  line-height: 1.4;
  margin-bottom: 10px;
}
.ndd-submit {
  display: block;
  width: 100%;
  padding: 13px 0;
  background: var(--ink);
  color: #fff;
  border: none;
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
  border-radius: 0;
}
.ndd-submit:hover   { background: #2a2a2a; }
.ndd-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.ndd-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
  font-size: 0.7rem;
  color: #bbb;
  letter-spacing: 0.06em;
}
.ndd-divider::before,
.ndd-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.ndd-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px 0;
  border: 1px solid #d0d0d0;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.ndd-google:hover {
  border-color: #aaa;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.ndd-remember {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 14px;
  cursor: pointer;
}
.ndd-remember-chk {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  accent-color: var(--ink);
  cursor: pointer;
}
.ndd-remember span {
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--muted);
}
.ndd-welcome {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}
.ndd-links { display: flex; flex-direction: column; }
.ndd-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--soft-line);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.15s;
}
.ndd-link::after { content: '\2192'; font-size: 0.72rem; color: var(--muted); }
.ndd-link:hover { opacity: 0.6; }
.ndd-sep {
  border: none;
  border-top: 1px solid var(--line);
  margin: 16px 0;
}
.ndd-signout {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.ndd-signout:hover { color: var(--ink); }
@media (max-width: 768px) {
  .nav-account-dropdown { display: none !important; }
}

/* ── Auth page redesign (RL-style) ──────────────────────────────────────────── */
body.auth-body {
  background: #f2f2f2;
}
.auth-page {
  min-height: calc(100vh - var(--nav-height) - 44px);
  display: flex;
  align-items: stretch;
}
.auth-shell {
  display: flex;
  width: 100%;
}
/* Left form panel */
.auth-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 56px 48px 80px;
  background: #f2f2f2;
  overflow-y: auto;
}
.auth-panel-inner {
  width: 100%;
  max-width: 400px;
}
/* Tab nav */
.auth-tabs-rl {
  display: flex;
  border-bottom: 1px solid #d0d0d0;
  margin-bottom: 36px;
}
.auth-tab-rl {
  flex: 1;
  text-align: center;
  padding: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #aaa;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}
.auth-tab-rl.active {
  color: var(--ink);
  border-bottom-color: var(--ink);
  font-weight: 700;
}
.auth-tab-rl:hover:not(.active) { color: #666; }
/* RL inputs */
.rl-field { margin-bottom: 10px; }
.rl-input {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid #ccc;
  background: #fff;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  outline: none;
  box-sizing: border-box;
  border-radius: 0;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.rl-input::placeholder {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
}
.rl-input:focus { border-color: var(--ink); }
.rl-input:not([type=password]) { text-transform: none; }
.rl-input:not([type=password])::placeholder { text-transform: uppercase; }
.rl-input.is-invalid,
.gate-field input.is-invalid {
  border-color: #b91c1c;
  background: #fff7f7;
}
.rl-check-label.has-error .rl-check-input,
.gate-marketing-row.has-error .gate-checkbox {
  outline: 2px solid #b91c1c;
  outline-offset: 2px;
}
.register-client-errors {
  border: 1px solid #fecaca;
  background: #fff1f2;
  color: #991b1b;
  padding: 11px 13px;
  margin-bottom: 12px;
  font-size: 0.76rem;
  line-height: 1.45;
}
.register-client-errors strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}
.register-client-errors ul {
  margin: 0;
  padding-left: 18px;
}
.register-client-errors li + li {
  margin-top: 3px;
}
/* Row meta */
.rl-row-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.rl-forgot {
  font-size: 0.72rem;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.15s;
}
.rl-forgot:hover { opacity: 0.65; }
.rl-required { font-size: 0.65rem; color: #aaa; font-style: italic; }
.rl-required-note { font-size: 0.65rem; color: #aaa; font-style: italic; text-align: right; margin-bottom: 14px; }
/* Checkbox */
.rl-check-label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 14px;
  cursor: pointer;
}
.rl-check-input {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  accent-color: var(--ink);
  cursor: pointer;
  border-radius: 0;
}
.rl-check-label span {
  font-size: 0.72rem;
  line-height: 1.5;
  color: #555;
}
/* Submit */
.rl-submit {
  display: block;
  width: 100%;
  padding: 15px 0;
  background: #0c1e3c;
  color: #fff;
  border: none;
  font-family: var(--font);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
  border-radius: 0;
  margin-bottom: 0;
}
.rl-submit:hover { background: #172d56; }
.rl-submit:disabled { opacity: 0.6; cursor: not-allowed; }
/* OR divider */
.rl-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
}
.rl-divider::before,
.rl-divider::after { content: ''; flex: 1; height: 1px; background: #d8d8d8; }
/* Social */
.rl-social-row { display: flex; justify-content: center; gap: 32px; }
.rl-social-btn { display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; }
.rl-social-icon {
  width: 54px;
  height: 54px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.rl-social-btn:hover .rl-social-icon { border-color: #aaa; box-shadow: 0 2px 10px rgba(0,0,0,0.09); }
.rl-social-label {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555;
}
/* Alt link */
.rl-alt-link { font-size: 0.78rem; color: #888; text-align: center; margin: 18px 0 0; }
.rl-alt-link a { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.rl-text-btn {
  background: none; border: none; padding: 0; cursor: pointer;
  font-size: 0.78rem; color: var(--ink); text-decoration: underline;
  text-underline-offset: 2px; font-family: var(--font);
}
/* Error alert */
.rl-alert-error {
  background: #fff5f5;
  border-left: 3px solid var(--red);
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.8125rem;
  color: #c0392b;
  line-height: 1.5;
}
.rl-alert-error a { color: var(--blue); }
/* Right promo panel */
.auth-promo {
  width: 420px;
  flex-shrink: 0;
  background: #0c1e3c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 52px;
  position: relative;
  overflow: hidden;
}
.auth-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0c1e3c 0%, #1a3560 60%, #0c2a50 100%);
  opacity: 0.9;
}
.auth-promo-inner { position: relative; z-index: 1; }
.auth-promo-eyebrow {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 20px;
}
.auth-promo-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 36px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.auth-promo-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.auth-promo-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.78);
}
.auth-promo-list li::before {
  content: '';
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
/* Responsive */
@media (max-width: 900px) {
  .auth-promo { width: 320px; padding: 48px 36px; }
}
@media (max-width: 700px) {
  .auth-shell { flex-direction: column; }
  .auth-promo { display: none; }
  .auth-panel { padding: 36px 20px 60px; }
  .auth-panel-inner { max-width: 100%; }
}

/* ── Privacy Policy page ──────────────────────────────────── */
.pp-page {
  min-height: 60vh;
  background: var(--paper, #faf9f7);
}
.pp-hero {
  background: #101114;
  padding: 72px 48px 60px;
  text-align: center;
}
.pp-eyebrow {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 16px;
}
.pp-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}
.pp-subtitle {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  letter-spacing: 0.08em;
}
.pp-shell {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 40px 96px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

/* Side nav */
.pp-nav {
  position: sticky;
  top: calc(var(--nav-height, 74px) + 24px);
  padding: 0;
}
.pp-nav-label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted, #888);
  margin: 0 0 14px;
}
.pp-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 1px solid var(--line, #e0ddd8);
}
.pp-nav ul li { margin: 0; }
.pp-nav ul li a {
  display: block;
  padding: 7px 0 7px 16px;
  font-size: 0.78rem;
  color: var(--muted, #888);
  text-decoration: none;
  line-height: 1.4;
  transition: color .15s, border-color .15s;
  border-left: 2px solid transparent;
  margin-left: -1px;
}
.pp-nav ul li a:hover {
  color: var(--ink, #1a1a1a);
  border-left-color: #1a1a1a;
}

/* Article body */
.pp-body { min-width: 0; }
.pp-intro {
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--line, #e0ddd8);
  border-left: 4px solid #1a1a1a;
  margin-bottom: 48px;
}
.pp-intro p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink, #1a1a1a);
  margin: 0 0 12px;
}
.pp-intro p:last-child { margin: 0; }

.pp-section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--soft-line, #ece9e4);
}
.pp-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.pp-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink, #1a1a1a);
  margin: 0 0 20px;
  letter-spacing: 0.01em;
}
.pp-section h3 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted, #888);
  margin: 24px 0 10px;
}
.pp-section p {
  font-size: 0.92rem;
  line-height: 1.78;
  color: #3a3732;
  margin: 0 0 16px;
}
.pp-section p:last-child { margin-bottom: 0; }
.pp-section ul {
  padding-left: 0;
  list-style: none;
  margin: 0 0 16px;
}
.pp-section ul li {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #3a3732;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.pp-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1px;
  background: #1a1a1a;
}
.pp-section a {
  color: #1a1a1a;
  text-decoration: underline;
  text-decoration-color: rgba(26,26,26,.28);
  text-underline-offset: 2px;
  transition: text-decoration-color .15s;
}
.pp-section a:hover { text-decoration-color: #1a1a1a; }
.pp-section code {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.82em;
  background: #f0ede8;
  padding: 1px 5px;
  border-radius: 3px;
  color: #2c1a6e;
}

/* Table */
.pp-table-wrap {
  overflow-x: auto;
  margin: 16px 0 24px;
}
.pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.pp-table th {
  text-align: left;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted, #888);
  padding: 10px 16px;
  border-bottom: 2px solid var(--line, #e0ddd8);
  white-space: nowrap;
}
.pp-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--soft-line, #ece9e4);
  color: #3a3732;
  line-height: 1.55;
  vertical-align: top;
}
.pp-table tr:last-child td { border-bottom: none; }

/* Contact card */
.pp-contact-card {
  background: #fff;
  border: 1px solid var(--line, #e0ddd8);
  border-radius: 2px;
  overflow: hidden;
  margin: 20px 0 24px;
}
.pp-contact-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--soft-line, #ece9e4);
}
.pp-contact-row:last-child { border-bottom: none; }
.pp-contact-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted, #888);
  min-width: 72px;
}
.pp-contact-row a {
  font-size: 0.9rem;
  color: #1a1a1a;
  text-decoration: underline;
  text-decoration-color: rgba(26,26,26,.28);
  text-underline-offset: 2px;
}
.pp-contact-row a:hover { text-decoration-color: #1a1a1a; }

.pp-legal-note {
  font-size: 0.82rem !important;
  color: var(--muted, #888) !important;
  font-style: italic;
}

/* Register link */
.rl-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.35);
  text-underline-offset: 2px;
  transition: text-decoration-color .15s;
}
.rl-link:hover { text-decoration-color: currentColor; }

/* Responsive */
@media (max-width: 900px) {
  .pp-shell {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 24px 72px;
  }
  .pp-nav {
    position: static;
    display: none;
  }
  .pp-hero { padding: 52px 24px 44px; }
}
@media (max-width: 600px) {
  .pp-table th, .pp-table td { padding: 10px 10px; }
  .pp-intro { padding: 20px; }
}

/* ── CMS page renderer (shop/page.php) ────────────────────────── */
.cms-page {
  min-height: 60vh;
  background: var(--paper, #faf9f7);
}
.cms-hero {
  background: #101114;
  padding: 72px 48px 60px;
  text-align: center;
}
.cms-eyebrow {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin: 0 0 16px;
}
.cms-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: .02em;
}
.cms-meta {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin: 0;
  letter-spacing: .06em;
}
.cms-shell {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 40px 96px;
}
/* Typography for Quill-generated HTML */
.cms-body h1, .cms-body h2, .cms-body h3,
.cms-body h4, .cms-body h5, .cms-body h6 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: var(--ink, #1a1a1a);
  margin: 2em 0 .6em;
  line-height: 1.25;
  letter-spacing: .01em;
}
.cms-body h2 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); padding-bottom: 10px; border-bottom: 1px solid var(--soft-line, #ece9e4); }
.cms-body h3 { font-size: 1rem; font-family: inherit; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted, #888); }
.cms-body h4 { font-size: .95rem; font-family: inherit; font-weight: 700; }
.cms-body p  {
  font-size: .93rem;
  line-height: 1.8;
  color: #3a3732;
  margin: 0 0 1em;
}
.cms-body ul, .cms-body ol {
  padding-left: 0;
  list-style: none;
  margin: 0 0 1em;
}
.cms-body ul li, .cms-body ol li {
  font-size: .93rem;
  line-height: 1.7;
  color: #3a3732;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}
.cms-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 8px;
  height: 1px;
  background: #1a1a1a;
}
.cms-body ol { counter-reset: cms-ol; }
.cms-body ol li::before {
  content: counter(cms-ol) '.';
  counter-increment: cms-ol;
  position: absolute;
  left: 0;
  top: 0;
  font-size: .78rem;
  font-weight: 700;
  color: #1a1a1a;
}
.cms-body a {
  color: #1a1a1a;
  text-decoration: underline;
  text-decoration-color: rgba(26,26,26,.28);
  text-underline-offset: 2px;
  transition: text-decoration-color .15s;
}
.cms-body a:hover { text-decoration-color: #1a1a1a; }
.cms-body strong { font-weight: 700; color: var(--ink, #1a1a1a); }
.cms-body em     { font-style: italic; }
.cms-body code {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .82em;
  background: #f0ede8;
  padding: 1px 5px;
  border-radius: 3px;
  color: #2c1a6e;
}
.cms-body pre {
  background: #f0ede8;
  padding: 16px 20px;
  border-radius: 4px;
  overflow-x: auto;
  margin: 0 0 1em;
}
.cms-body pre code { background: none; padding: 0; color: inherit; }
.cms-body blockquote {
  border-left: 3px solid #1a1a1a;
  margin: 0 0 1em;
  padding: 12px 20px;
  background: rgba(26,26,26,.04);
  color: #555;
}
.cms-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  margin: 0 0 1.5em;
}
.cms-body table th {
  text-align: left;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted, #888);
  padding: 10px 14px;
  border-bottom: 2px solid var(--line, #e0ddd8);
}
.cms-body table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--soft-line, #ece9e4);
  color: #3a3732;
  line-height: 1.55;
  vertical-align: top;
}
.cms-body table tr:last-child td { border-bottom: none; }
.cms-body hr {
  border: none;
  border-top: 1px solid var(--soft-line, #ece9e4);
  margin: 2em 0;
}
@media (max-width: 700px) {
  .cms-hero { padding: 52px 24px 44px; }
  .cms-shell { padding: 40px 20px 72px; }
  .cms-body table { display: block; overflow-x: auto; }
}

/* ── Quill class-based format fallbacks ─────────────────────────────── */
.cms-body .ql-align-center  { text-align: center; }
.cms-body .ql-align-right   { text-align: right; }
.cms-body .ql-align-justify { text-align: justify; }
.cms-body .ql-indent-1 { padding-left: 2em; }
.cms-body .ql-indent-2 { padding-left: 4em; }
.cms-body .ql-indent-3 { padding-left: 6em; }
.cms-body .ql-indent-4 { padding-left: 8em; }
.cms-body .ql-size-small { font-size: 0.78em; }
.cms-body .ql-size-large { font-size: 1.25em; }
.cms-body .ql-size-huge  { font-size: 1.75em; }
.cms-body [style*="font-family: serif"],
.cms-body [style*="font-family:serif"]   { font-family: Georgia, "Times New Roman", serif !important; }
.cms-body [style*="font-family: monospace"],
.cms-body [style*="font-family:monospace"] { font-family: "SFMono-Regular", Consolas, monospace !important; }

/* ═══ Search Overlay ═════════════════════════════════════════════════════════
   Full-bleed search panel inspired by premium brand search UX.
   ═══════════════════════════════════════════════════════════════════════════ */

/* Body lock when overlay is open */
.so-body-lock { overflow: hidden; }

/* Overlay root — below navbar (z-index 9000 < navbar 9200) */
.so-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  --so-nav-offset: 74px; /* fallback; JS sets correct value on open */
}

/* Backdrop covers full viewport — navbar paints on top (higher z-index) */
.so-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  opacity: 0;
  transition: opacity .28s ease;
}

/* Panel — pushed below the navbar via CSS custom property set by JS */
.so-panel {
  position: relative;
  margin-top: var(--so-nav-offset);
  background: #fff;
  width: 100%;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), opacity .3s ease;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .14);
  max-height: calc(90vh - var(--so-nav-offset));
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* Open state */
.so-overlay.so-open {
  pointer-events: auto;
}
.so-overlay.so-open .so-backdrop {
  opacity: 1;
}
.so-overlay.so-open .so-panel {
  transform: translateY(0);
  opacity: 1;
}

/* ── Search bar ─────────────────────────────────────────────────────────── */
.so-bar-wrap {
  border-bottom: 1px solid var(--line);
  padding: 0 24px;
}
.so-bar {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 14px;
  height: 70px;
}
.so-bar-icon {
  width: 22px;
  height: 22px;
  color: var(--muted);
  flex-shrink: 0;
}
.so-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.05rem;
  font-family: var(--font);
  color: var(--ink);
  background: transparent;
  min-width: 0;
  -webkit-appearance: none;
}
.so-input::placeholder { color: var(--muted); }
.so-input::-webkit-search-decoration,
.so-input::-webkit-search-cancel-button { display: none; }
.so-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  flex-shrink: 0;
  transition: background .15s, color .15s;
}
.so-close svg { width: 18px; height: 18px; }
.so-close:hover { background: var(--panel); color: var(--ink); }

/* ── Default content (trending + categories) ─────────────────────────────── */
.so-default {
  padding: 32px 24px 40px;
}
.so-default-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.so-section-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}

/* Trending list */
.so-trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.so-trend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--ink);
  font-size: .9rem;
  transition: background .15s, color .15s;
}
.so-trend-item:hover {
  background: var(--panel);
  color: var(--black);
}
.so-trend-item svg {
  width: 14px;
  height: 14px;
  color: var(--muted);
  flex-shrink: 0;
}

/* Category grid */
.so-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.so-cat-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.so-cat-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.so-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.so-cat-card:hover .so-cat-img img { transform: scale(1.04); }
.so-cat-placeholder {
  font-size: 2rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}
.so-cat-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.so-cat-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
}
.so-cat-cta {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  transition: color .15s;
}
.so-cat-card:hover .so-cat-cta { color: var(--ink); }

/* ── Results state ───────────────────────────────────────────────────────── */
.so-results {
  padding: 16px 24px 32px;
}
.so-results-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.so-product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.so-product-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 10px;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  transition: background .15s;
}
.so-product-row:hover { background: var(--panel); }
.so-product-img {
  width: 52px;
  height: 52px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--panel);
}
.so-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.so-product-img-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
}
.so-product-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.so-product-name {
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.so-product-price {
  font-size: .82rem;
  color: var(--muted);
}
.so-product-price.so-sale { color: var(--red); }
.so-product-arrow {
  width: 16px;
  height: 16px;
  color: var(--muted);
  flex-shrink: 0;
}

/* View all button */
.so-view-all {
  padding: 12px 10px 0;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.so-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 0;
  transition: gap .2s;
}
.so-view-all-btn:hover { gap: 12px; }
.so-view-all-btn svg { width: 15px; height: 15px; }

/* No results */
.so-no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
  color: var(--muted);
  gap: 10px;
}
.so-no-results svg { width: 44px; height: 44px; opacity: .25; }
.so-no-results p { margin: 0; font-size: .95rem; color: var(--ink); }
.so-no-results strong { color: var(--black); }
.so-no-results span { font-size: .82rem; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .so-default-inner { grid-template-columns: 1fr; gap: 28px; }
  .so-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .so-bar { height: 58px; }
  .so-bar-wrap { padding: 0 16px; }
  .so-default { padding: 24px 16px 32px; }
  .so-results { padding: 12px 16px 28px; }
}
@media (max-width: 480px) {
  .so-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .so-input { font-size: .95rem; }
}

/* ═══ Cart Hover Dropdown ════════════════════════════════════════════════════ */
.nav-cart-wrap {
  display: inline-flex;
  align-items: center;
  overflow: visible;
  position: relative;
}

.nav-cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 360px;
  background: var(--white);
  border-top: 2px solid var(--ink);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease;
  z-index: 100;
}
.nav-cart-dropdown.ncd-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* Empty state */
.ncd-empty {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.ncd-empty svg { width: 40px; height: 40px; opacity: .25; }
.ncd-empty p { font-size: .88rem; color: var(--muted); margin: 0; }
.ncd-shop-link {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Items list */
.ncd-items {
  padding: 20px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-height: 300px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.ncd-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ncd-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: var(--panel);
  overflow: hidden;
}
.ncd-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ncd-img-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e8e8 0%, #d4d4d4 100%);
}
.ncd-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}
.ncd-name {
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.ncd-variant {
  font-size: .72rem;
  color: var(--muted);
  line-height: 1.3;
}
.ncd-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.ncd-qty { font-size: .72rem; color: var(--muted); }
.ncd-price { font-size: .78rem; font-weight: 600; color: var(--ink); }

/* Footer: subtotal + actions */
.ncd-footer {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ncd-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: .78rem;
}
.ncd-subtotal span { color: var(--muted); }
.ncd-subtotal strong { font-weight: 700; color: var(--ink); font-size: .85rem; }

.ncd-shipping-msg {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .7rem;
  color: var(--muted);
  text-align: center;
  justify-content: center;
  padding: 2px 0;
}
.ncd-shipping-msg svg { width: 14px; height: 14px; flex-shrink: 0; }

.ncd-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  background: var(--ink);
  color: var(--white);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-decoration: none;
  transition: background .18s;
  border: none;
  cursor: pointer;
}
.ncd-checkout-btn:hover { background: #222; }

.ncd-view-link {
  display: block;
  text-align: center;
  font-size: .7rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 2px 0;
  transition: color .15s;
}
.ncd-view-link:hover { color: var(--ink); }

@media (max-width: 768px) {
  .nav-cart-dropdown { display: none; }
}

/* ══ Cart Edit Modal (cem) ═══════════════════════════════════════════════════ */
.cem-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.cem-backdrop.cem-open { opacity: 1; pointer-events: all; }

.cem-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -47%);
  z-index: 10001;
  background: #fff;
  width: min(90vw, 680px);
  max-height: 82vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}
.cem-modal.cem-open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}

.cem-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s;
  z-index: 5;
  border-radius: 50%;
}
.cem-close:hover { color: #111; background: #f0f0f0; }

/* Two-column layout */
.cem-inner {
  display: grid;
  grid-template-columns: 34% 66%;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}

/* Left: image panel */
.cem-img-col {
  background: #f2f2f0;
  overflow: hidden;
  position: relative;
}

.cem-img-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cem-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: opacity .25s;
}

/* Right: info panel */
.cem-info-col {
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  gap: 0;
}

.cem-brand {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.cem-name {
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 10px;
}

.cem-price {
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--ink);
  margin-bottom: 14px;
}

.cem-details-link {
  display: inline-block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  margin-bottom: 0;
}
.cem-details-link:hover { opacity: .65; }

.cem-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 20px 0 16px;
}

.cem-section { margin-bottom: 18px; }

.cem-section-label {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}

.cem-section-value {
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: none;
}

/* Color swatches */
.cem-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.cem-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: box-shadow .15s, transform .1s;
  box-shadow: 0 0 0 2px transparent;
  outline: none;
}
.cem-swatch:hover { transform: scale(1.1); }
.cem-swatch-active {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #111;
}

/* Size buttons */
.cem-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.cem-size-btn {
  min-width: 46px;
  height: 38px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid #d0d0d0;
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .14s;
  text-align: center;
  white-space: nowrap;
}
.cem-size-btn:hover:not(:disabled) { border-color: var(--ink); }
.cem-size-active {
  border-color: var(--ink);
  border-bottom-width: 2px;
  font-weight: 800;
}
.cem-size-oos {
  color: #c0c0c0;
  border-color: #e8e8e8;
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: #bbb;
}

.cem-loading {
  font-size: .8rem;
  color: var(--muted);
  padding: 8px 0;
}

.cem-form { margin-top: auto; padding-top: 20px; }

.cem-update-btn {
  width: 100%;
  padding: 15px;
  background: #1a2744;
  color: #fff;
  border: none;
  font-family: var(--font);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s;
}
.cem-update-btn:hover { background: #0f1b33; }

@media (max-width: 620px) {
  .cem-inner { grid-template-columns: 1fr; grid-template-rows: 240px 1fr; }
  .cem-img-col { grid-row: 1; }
  .cem-info-col { grid-row: 2; padding: 24px 20px 20px; max-height: 55vh; }
  .cem-modal { max-height: 92vh; }
}

/* ── Added to Bag Panel ─────────────────────────────────────────────────────── */
.atb-overlay {
  position: fixed; inset: 0; z-index: 9500;
  visibility: hidden; pointer-events: none;
}
.atb-overlay.is-open { visibility: visible; pointer-events: auto; }

.atb-dim {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.48);
  opacity: 0; transition: opacity .35s ease;
  cursor: pointer;
}
.atb-overlay.is-open .atb-dim { opacity: 1; }

.atb-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(90vw, 860px);
  display: flex;
  background: #fff;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.4, 0, .2, 1);
  box-shadow: -4px 0 48px rgba(0,0,0,.15);
}
.atb-overlay.is-open .atb-panel { transform: translateX(0); }

/* Left: Complete the Look */
.atb-look {
  width: 240px; flex-shrink: 0;
  border-right: 1px solid #ebebeb;
  overflow-y: auto;
  padding: 44px 22px 32px;
  background: #f9f9f8;
}
.atb-look-head {
  font-size: .62rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: #1a1a1a; margin-bottom: 24px;
}
.atb-look-item {
  display: block; text-decoration: none; color: inherit;
  margin-bottom: 26px; transition: opacity .15s;
}
.atb-look-item:hover { opacity: .78; }
.atb-look-item img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  display: block; background: #eeecea; margin-bottom: 8px;
}
.atb-look-img-ph { width: 100%; aspect-ratio: 3/4; background: #e6e5e3; margin-bottom: 8px; }
.atb-look-item-name {
  font-size: .7rem; color: #1a1a1a; font-weight: 500;
  line-height: 1.35; margin-bottom: 2px;
}
.atb-look-item-price { font-size: .7rem; color: #777; }

/* Right: Item Added to Bag */
.atb-main {
  flex: 1; min-width: 0; overflow-y: auto;
  padding: 44px 40px 36px;
  display: flex; flex-direction: column;
  position: relative;
}
.atb-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  color: #b0b0b0; padding: 6px; line-height: 0;
  transition: color .15s; border-radius: 50%;
}
.atb-close:hover { color: #1a1a1a; background: #f2f2f0; }

.atb-success-bar {
  display: flex; align-items: center; gap: 13px;
  margin-bottom: 32px; padding-right: 36px;
}
.atb-check-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: #1a1a1a; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.atb-success-text {
  font-size: .78rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: #1a1a1a;
}

.atb-item {
  display: flex; gap: 22px;
  flex: 1; padding-bottom: 28px;
}
.atb-item-img-wrap {
  width: 130px; flex-shrink: 0;
  display: block; text-decoration: none;
  transition: opacity .15s;
}
.atb-item-img-wrap:hover { opacity: .82; }
.atb-item-img-el {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  display: block; background: #f2f2f0;
}
.atb-item-details { flex: 1; min-width: 0; }
.atb-item-brand {
  font-size: .54rem; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: #bbb; margin-bottom: 7px;
}
.atb-item-name {
  display: block;
  font-size: .82rem; font-weight: 600; color: #1a1a1a;
  line-height: 1.38; margin-bottom: 12px; text-decoration: none;
}
.atb-item-name:hover { text-decoration: underline; text-underline-offset: 3px; }
.atb-item-attr { font-size: .73rem; color: #666; line-height: 1.7; }
.atb-item-price {
  font-size: .92rem; font-weight: 500; color: #1a1a1a; margin-top: 13px;
}

.atb-btns { padding-top: 24px; }
.atb-checkout-btn {
  display: block; width: 100%; box-sizing: border-box;
  padding: 16px 20px; background: #111; color: #fff;
  text-align: center; font-size: .62rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  text-decoration: none; transition: background .2s; margin-bottom: 10px;
}
.atb-checkout-btn:hover { background: #333; color: #fff; }
.atb-continue-btn {
  display: block; width: 100%; box-sizing: border-box;
  padding: 14px 20px; background: #fff; color: #1a1a1a;
  border: 1px solid #ccc; text-align: center;
  font-family: var(--font); font-size: .62rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  cursor: pointer; transition: border-color .2s;
}
.atb-continue-btn:hover { border-color: #1a1a1a; }

@media (max-width: 660px) {
  .atb-look { display: none; }
  .atb-panel { width: 100vw; }
  .atb-main { padding: 44px 22px 28px; }
}

/* Order tracking */
.track-page {
  color: #111;
  min-height: 70vh;
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 24px 100px;
}
.track-hero {
  padding: 0 0 34px;
}
.track-kicker {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.track-hero h1 {
  margin: 0 0 24px;
  max-width: 680px;
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  line-height: 1.04;
  font-weight: 500;
}
.track-hero p:not(.track-kicker) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}
.track-shell {
  padding: 0;
}
.track-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  padding: 18px;
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(17, 17, 17, .07);
}
.track-form label {
  display: block;
  margin: 0 0 7px;
  color: #555;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}
.track-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d9d2c8;
  border-radius: 6px;
  padding: 0 13px;
  font: inherit;
  color: #111;
  background: #fff;
}
.track-form input:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, .08);
}
.track-form button {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 0 22px;
  background: #111;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.track-alert {
  margin-top: 14px;
  padding: 13px 15px;
  border: 1px solid #fecaca;
  border-radius: 7px;
  background: #fef2f2;
  color: #991b1b;
  font-weight: 700;
}
.track-result {
  margin-top: 18px;
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  overflow: hidden;
}
.track-result-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid #eee8df;
}
.track-result-head span,
.track-panel h3,
.track-items h3 {
  color: #6b7280;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.track-result-head h2 {
  margin: 5px 0;
  font-size: 1.75rem;
}
.track-result-head p {
  margin: 0;
  color: #6b7280;
}
.track-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
}
.track-badges span {
  border-radius: 999px;
  padding: 7px 10px;
  letter-spacing: 0;
}
.track-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 26px 24px;
  list-style: none;
  border-bottom: 1px solid #eee8df;
}
.track-timeline li {
  position: relative;
  color: #9ca3af;
  font-size: .83rem;
  font-weight: 800;
}
.track-timeline li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 18px;
  right: 0;
  height: 2px;
  background: #e5e7eb;
}
.track-timeline li:last-child::before {
  display: none;
}
.track-timeline span {
  position: relative;
  z-index: 1;
  display: block;
  width: 22px;
  height: 22px;
  margin-bottom: 9px;
  border: 2px solid #d1d5db;
  border-radius: 999px;
  background: #fff;
}
.track-timeline .is-done {
  color: #111;
}
.track-timeline .is-done span {
  border-color: #111;
  background: #111;
}
.track-timeline .is-done span::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 4px;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.track-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: 0;
  border-bottom: 1px solid #eee8df;
}
.track-panel {
  padding: 24px;
}
.track-panel + .track-panel {
  border-left: 1px solid #eee8df;
}
.track-panel h3,
.track-items h3 {
  margin: 0 0 12px;
}
.track-panel p {
  margin: 0 0 8px;
  color: #4b5563;
  line-height: 1.6;
}
.track-number {
  color: #111 !important;
  font-size: 1.2rem;
  font-weight: 900;
}
.track-carrier {
  color: #111 !important;
  font-weight: 800;
}
.track-panel a {
  display: inline-flex;
  margin-top: 8px;
  color: #111;
  font-weight: 900;
  text-decoration: underline;
}
.track-items {
  padding: 24px;
}
.track-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid #f0ebe5;
}
.track-item:first-of-type {
  border-top: 0;
}
.track-item img {
  width: 54px;
  height: 54px;
  border-radius: 7px;
  object-fit: cover;
  background: #f3f4f6;
}
.track-item strong,
.track-item span {
  display: block;
}
.track-item span {
  margin-top: 3px;
  color: #6b7280;
  font-size: .85rem;
}
.track-item em {
  color: #6b7280;
  font-style: normal;
  font-weight: 800;
}
@media (max-width: 820px) {
  .track-hero {
    padding-top: 0;
  }
  .track-kicker {
    margin-bottom: 12px;
  }
  .track-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.8rem);
  }
  .track-hero p:not(.track-kicker) {
    font-size: .96rem;
  }
  .track-form,
  .track-grid,
  .track-timeline {
    grid-template-columns: 1fr;
  }
  .track-form button {
    width: 100%;
  }
  .track-result-head {
    flex-direction: column;
  }
  .track-badges {
    justify-content: flex-start;
  }
  .track-timeline {
    gap: 16px;
  }
  .track-timeline li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
  }
  .track-timeline li::before {
    display: none;
  }
  .track-timeline span {
    margin-bottom: 0;
  }
  .track-panel + .track-panel {
    border-top: 1px solid #eee8df;
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .track-page {
    padding: 28px 16px 64px;
  }
}
