/* Vermalle — page-level styles */

/* ── shared ── */

.section-title {
  margin: 0 0 1.5rem;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  letter-spacing: -0.01em;
}

.link-cta {
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  display: inline-block;
}

/* ── hero ── */

.hero {
  padding: 4rem 0 3rem;
  max-width: 880px;
}

.hero--editorial {
  max-width: none;
  padding: 2rem 0 4rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    min-height: 70vh;
  }
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__visual {
  aspect-ratio: 4 / 5;
  background: var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── brand strip ── */

.brand-strip {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brand-strip__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.brand-strip__head .section-title {
  margin: 0;
}

.brand-strip__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

@media (min-width: 600px) {
  .brand-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .brand-strip__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .brand-strip__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.brand-strip__grid li {
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.brand-strip__grid li:nth-child(2n) {
  border-right: 0;
}

@media (min-width: 600px) {
  .brand-strip__grid li {
    border-right: 1px solid var(--border);
  }
  .brand-strip__grid li:nth-child(2n) {
    border-right: 1px solid var(--border);
  }
  .brand-strip__grid li:nth-child(3n) {
    border-right: 0;
  }
}

@media (min-width: 900px) {
  .brand-strip__grid li:nth-child(2n),
  .brand-strip__grid li:nth-child(3n) {
    border-right: 1px solid var(--border);
  }
  .brand-strip__grid li:nth-child(4n) {
    border-right: 0;
  }
}

@media (min-width: 1200px) {
  .brand-strip__grid li:nth-child(2n),
  .brand-strip__grid li:nth-child(3n),
  .brand-strip__grid li:nth-child(4n) {
    border-right: 1px solid var(--border);
  }
  .brand-strip__grid li:nth-child(6n) {
    border-right: 0;
  }
}

.brand-strip__grid a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 0.5rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  height: 100%;
  transition: background var(--transition-fast);
}

.brand-strip__grid a:hover {
  background: var(--bg);
  opacity: 1;
}

/* Underline expansion on hover — sits centred under the brand label. */
.brand-strip__grid a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1.05rem;
  width: 0;
  height: 1px;
  background: currentColor;
  transform: translateX(-50%);
  transition: width 180ms ease-out;
  pointer-events: none;
}
.brand-strip__grid a:hover::after,
.brand-strip__grid a:focus-visible::after {
  width: 60%;
}

/* ── horizontal product rail (latest drops, see-also) ── */

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 25%);
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 1rem;
  padding: 0.25rem 0 1rem;
  -webkit-overflow-scrolling: touch;
}
.rail > .product-card {
  scroll-snap-align: start;
}
.rail::-webkit-scrollbar {
  height: 6px;
}
.rail::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 3px;
}
@media (min-width: 900px) {
  .rail {
    grid-auto-columns: minmax(240px, calc((100% - 3rem) / 4));
  }
}

/* ── latest drops + editorial ── */

.latest {
  padding: 2rem 0 4rem;
}

.editorial {
  padding: 3rem 0 5rem;
  border-top: 1px solid var(--border);
}

.editorial__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .editorial__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.editorial__copy h2 {
  margin: 0 0 1rem;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.25rem);
  max-width: 22ch;
}

.editorial__copy p {
  max-width: 55ch;
  color: var(--ink);
}

.editorial__visual {
  aspect-ratio: 4 / 5;
  background: var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.editorial__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 1.4rem + 3.6vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.hero__lede {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 50ch;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0;
}

/* ── departments ── */

.departments {
  padding: 1rem 0 3rem;
}

.department-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .department-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.department-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--ink);
  opacity: 1;
  transition: transform var(--transition);
}

.department-card:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.department-card__image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--border);
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.department-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.department-card:hover .department-card__image img {
  transform: scale(1.03);
}

.department-card__meta h3 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
  font-weight: 500;
}

.department-card__meta p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

/* ── catalog ── */

.catalog {
  padding: 3rem 0 4rem;
}

.catalog__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 600px) {
  /* On phones, title sits on its own row; filters/sort live on a second
   * row stretched to full width so neither control feels pinched. */
  .catalog__head {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .catalog__head-right {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.6rem;
  }
  .catalog__head-right .catalog__count {
    order: -1;
    flex: 1 0 100%;
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin-bottom: 0.15rem;
  }
  .catalog__filter-toggle,
  .sort-bar {
    flex: 1 1 0;
    min-width: 0;
  }
  .sort-bar select {
    width: 100%;
  }
}

.catalog__title {
  margin: 0;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.25rem);
}

.catalog__count {
  margin: 0;
  font-size: 0.95rem;
}

.catalog__head-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sort-bar select {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: 0.9rem;
  cursor: pointer;
}

.catalog__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

@media (min-width: 900px) {
  .catalog__layout {
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
  .filters {
    position: sticky;
    top: 1rem;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    padding-right: 0.25rem;
  }
}

/* Mobile: filter sidebar is off-canvas. Toggle button in catalog__head
 * (visible only < 900px) opens it as a drawer; backdrop click or × closes. */
.catalog__filter-toggle {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}
@media (min-width: 900px) {
  .catalog__filter-toggle,
  .catalog__filter-backdrop,
  .filters__close {
    display: none !important;
  }
}
@media (max-width: 899px) {
  .filters {
    position: fixed;
    top: 0;
    left: 0;
    width: min(360px, 88vw);
    height: 100vh;
    height: 100dvh;
    z-index: 50;
    background: #fff;
    transform: translateX(-110%);
    transition: transform 220ms ease-out;
    box-shadow: 2px 0 14px rgba(0, 0, 0, 0.12);
  }
  .filters > form {
    position: absolute;
    inset: 4rem 0 calc(3.5rem + env(safe-area-inset-bottom, 0)) 0;
    overflow-y: auto;
    padding: 0 1.25rem 1rem;
    -webkit-overflow-scrolling: touch;
  }
  body.catalog--filters-open .filters {
    transform: translateX(0);
  }
  .catalog__filter-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(0, 0, 0, 0.4);
    border: 0;
    padding: 0;
    cursor: pointer;
  }
  body.catalog--filters-open .catalog__filter-backdrop {
    display: block;
  }
  .filters__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: transparent;
    border: 0;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.5rem;
  }
  .filters__apply {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.7rem 1.25rem calc(0.7rem + env(safe-area-inset-bottom, 0));
    background: #fff;
    border-top: 1px solid var(--border);
  }
  .filters__apply .btn {
    width: 100%;
  }
}
@media (min-width: 900px) {
  .filters__apply { display: none; }
}

.filters {
  font-size: 0.92rem;
}

.filters__row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.filters__group {
  border: 0;
  padding: 0 0 1.25rem;
  margin: 0 0 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.filters__group:last-child {
  border-bottom: 0;
}

.filters__group--scroll {
  max-height: 220px;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.filters__group legend {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
  padding: 0;
}

.filters__group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.filters__group input[type="checkbox"],
.filters__group input[type="radio"] {
  width: auto;
  accent-color: var(--ink);
}

.filter-color__swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: inline-block;
  flex-shrink: 0;
}

.filters__price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.filters__price-row label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.filters__price-row input {
  width: 100%;
  padding: 0.5rem 0.6rem;
}

.catalog__sentinel {
  height: 1px;
  width: 100%;
  pointer-events: none;
  contain: strict;
}

.catalog__end {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 4rem 1rem 2.5rem;
  text-align: center;
}

.catalog__end-rule {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--ink-muted);
  opacity: 0.4;
}

.catalog__end-line {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.catalog__empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  padding: 5rem 1rem 6rem;
  max-width: 36rem;
  margin: 0 auto;
}

.catalog__empty-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.catalog__empty-title {
  margin: 0;
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.catalog__empty-active {
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}

.catalog__empty-active span {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.catalog__empty-sub {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  max-width: 28rem;
}

.catalog__empty .btn {
  margin-top: 0.5rem;
}

/* ── add-to-cart toast ── */

.cart-toast {
  position: fixed;
  top: 0;
  right: 1rem;
  z-index: 60;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  width: min(420px, calc(100vw - 2rem));
  padding: 0.75rem 0.85rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-120%);
  transition: transform 280ms ease-out, opacity 200ms ease-out;
  opacity: 0;
  pointer-events: none;
}
.cart-toast--in {
  transform: translateY(0.75rem);
  opacity: 1;
  pointer-events: auto;
}
.cart-toast__thumb {
  width: 48px;
  height: 60px;
  object-fit: contain;
  background: #f6f5f1;
  border-radius: 2px;
  flex-shrink: 0;
}
.cart-toast__copy { flex: 1; min-width: 0; }
.cart-toast__copy p { margin: 0; line-height: 1.25; }
.cart-toast__eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.cart-toast__name {
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 0.1rem !important;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.cart-toast__variant {
  font-size: 0.78rem;
  color: var(--ink-muted);
}
.cart-toast__cta {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-decoration: underline;
  flex-shrink: 0;
}
.cart-toast__close {
  background: transparent;
  border: 0;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.4rem;
  color: var(--ink-muted);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .cart-toast {
    right: 0.5rem;
    left: 0.5rem;
    width: auto;
  }
}

/* ── product detail ── */

.product {
  padding: 1.5rem 0 2rem;
}

.product__crumbs {
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.product__crumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.product__crumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.product__crumbs li + li::before {
  content: "/";
  color: var(--ink-muted);
  opacity: 0.6;
}

.product__crumbs a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.product__crumbs a:hover {
  color: var(--ink);
}

.product__crumbs [aria-current="page"] {
  color: var(--ink);
  font-weight: 500;
  max-width: 28ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .product__layout {
    grid-template-columns: minmax(0, auto) minmax(340px, 1fr);
    gap: 1.5rem;
    align-items: start;
  }
}
@media (min-width: 1280px) {
  .product__layout {
    grid-template-columns: minmax(0, auto) minmax(380px, 1fr);
    gap: 2rem;
  }
}

/* Gallery: vertical thumb rail on the left, main image fills the rest.
 * Mobile collapses to a single column with thumbs hidden (swipe nav takes over). */
.product__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 900px) {
  .product__gallery {
    grid-template-columns: 78px 1fr;
    gap: 0.85rem;
    align-items: start;
  }
}

.product__main-wrap { min-width: 0; }
.product__main {
  position: relative;
  aspect-ratio: 1 / 1;
  background: transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
@media (min-width: 900px) {
  .product__main {
    aspect-ratio: 4 / 5;
    width: clamp(420px, 46vw, 580px);
    max-height: calc(100vh - 8rem);
  }
}
.product__main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 180ms ease-out, opacity 280ms ease;
}
.product__main { cursor: zoom-in; }
.product__main--zoomed { cursor: zoom-out; }

.product__heart {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 140ms ease, transform 140ms ease;
}
.product__heart:hover { background: #fff; transform: scale(1.04); }
.product__heart.is-saved { color: #c41e3a; }
.product__heart.is-saved svg path { fill: currentColor; }

.product__gallery-count {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  margin: 0;
  padding: 0.25rem 0.55rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.product__thumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}
@media (min-width: 900px) {
  .product__thumbs {
    grid-template-columns: 1fr;
    grid-auto-rows: 92px;
    gap: 0.5rem;
  }
}
.product__thumbs button {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0;
  background: #f6f5f1;
  border: 1px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 160ms ease;
}
@media (min-width: 900px) {
  .product__thumbs button { aspect-ratio: auto; height: 100%; }
}
.product__thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product__thumbs button:hover { border-color: var(--ink-muted); }
.product__thumbs button.is-active { border-color: var(--ink); }

.product__meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product__brand {
  margin: 0 0 0.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.product__name {
  margin: 0;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.25rem);
}

.product__price {
  margin: 0;
  font-size: 1.1rem;
}

.product__description {
  margin: 0;
  color: var(--ink-muted);
  max-width: 50ch;
}

.product__field-label {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

.product__colors,
.product__sizes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product__colors button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 0;
  position: relative;
}

/* Expand the touch target around the visible swatch dot so a 28-px
 * circle still meets 44-px tap-target spec on mobile. */
.product__colors button::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
}

.product__colors button.is-active {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.product__sizes button {
  min-width: 44px;
  min-height: 44px;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition-fast),
    color var(--transition-fast);
}

.product__sizes button.is-active {
  background: var(--ink);
  color: var(--accent-contrast);
  border-color: var(--ink);
}

.product__sizes button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.product__size-error {
  color: var(--danger);
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
}

.product__actions {
  margin: 0.5rem 0 0;
}

.product__add {
  width: 100%;
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
}

/* Mobile: once the in-flow Add-to-cart button has scrolled past the
 * viewport, surface a sticky bottom bar with size dropdown + add button
 * so the buyer doesn't have to scroll back up. Driven by an
 * IntersectionObserver in product.js that toggles
 * .product--cart-out-of-view on <body>. */
@media (max-width: 800px) {
  .product__cart-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: flex;
    gap: 0.5rem;
    padding: 0.6rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom, 0));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    transform: translateY(110%);
    transition: transform 220ms ease-out;
  }
  body.product--cart-out-of-view .product__cart-bar {
    transform: translateY(0);
  }
  .product__cart-bar select {
    flex: 0 0 96px;
    padding: 0.7rem 0.5rem;
    font-size: 0.92rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
  }
  .product__cart-bar .btn {
    flex: 1;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }
}
@media (min-width: 801px) {
  .product__cart-bar {
    display: none;
  }
}

.product__feedback {
  margin: 0;
  padding: 0.5rem 0.75rem;
  background: var(--bg);
  border-left: 2px solid var(--ink);
  font-size: 0.9rem;
}

.product__details {
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.5rem 1rem;
  font-size: 0.92rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.product__details dt {
  color: var(--ink-muted);
}

.product__details dd {
  margin: 0;
}

.product__not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 5rem 1rem 6rem;
  max-width: 40rem;
  margin: 0 auto;
}

.product__not-found-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.product__not-found-title {
  margin: 0;
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.product__not-found-sub {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  max-width: 32rem;
}

.product__not-found-actions {
  margin: 0.75rem 0 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.related {
  padding: 1rem 0 4rem;
  border-top: 1px solid var(--border);
}

/* ── cart ── */

.cart {
  padding: 2rem 0 4rem;
}

.cart__title {
  margin: 0 0 1.5rem;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.25rem);
}

.cart__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .cart__layout {
    grid-template-columns: minmax(0, 1.6fr) 320px;
    align-items: start;
  }
}

.cart__empty {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  padding: 4.5rem 1rem 6rem;
  max-width: 38rem;
  margin: 0 auto;
}

.cart__empty-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.cart__empty-title {
  margin: 0;
  font-size: clamp(1.55rem, 1.2rem + 1.4vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.cart__empty-sub {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  max-width: 30rem;
}

.cart__empty-actions {
  margin: 0.75rem 0 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cart__empty-brands {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  justify-content: center;
  font-size: 0.85rem;
}

.cart__empty-brands a {
  color: var(--ink-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.cart__empty-brands a:hover,
.cart__empty-brands a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
}

.cart-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.cart-line {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
  .cart-line {
    /* On phones: thumb | body. Line total drops below the body so it
     * never gets crushed against the viewport edge by a long four-digit
     * price (€1,899 etc). */
    grid-template-columns: 80px 1fr;
    gap: 0.75rem;
  }
  .cart-line__thumb img {
    width: 80px;
  }
  .cart-line__total {
    grid-column: 2 / -1;
    text-align: left;
    padding-top: 0.5rem;
    border-top: 1px dashed var(--border);
    margin-top: 0.25rem;
  }
}

.cart-line:last-child {
  border-bottom: 1px solid var(--border);
}

.cart-line__thumb img {
  width: 96px;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #f6f5f1;
  border-radius: var(--radius-sm);
}

.cart-line__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cart-line__name {
  font-weight: 500;
  color: var(--ink);
}

.cart-line__variant,
.cart-line__price {
  margin: 0;
  font-size: 0.92rem;
}

.cart-line__controls {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.4rem;
}

.cart-line__qty select {
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: 0.9rem;
  cursor: pointer;
}

.qty-stepper {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
}
.qty-stepper__btn {
  background: transparent;
  border: 0;
  width: 32px;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  transition: background var(--transition-fast);
}
.qty-stepper__btn:hover:not(:disabled) { background: var(--bg); }
.qty-stepper__btn:disabled {
  color: var(--ink-muted);
  cursor: not-allowed;
  opacity: 0.5;
}
.qty-stepper__value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  padding: 0 0.4rem;
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.cart-line__remove {
  background: transparent;
  border: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  text-decoration: underline;
  cursor: pointer;
}

.cart-line__remove:hover {
  color: var(--ink);
}

.cart-line__total {
  align-self: start;
  font-weight: 500;
  white-space: nowrap;
}

.cart__summary {
  position: sticky;
  top: 96px;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.cart__summary-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.cart__totals {
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart__totals-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin: 0;
}

.cart__totals-row dt,
.cart__totals-row dd {
  margin: 0;
}

.cart__totals-row--total {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  font-weight: 500;
  font-size: 1.05rem;
}

.cart__cta {
  margin: 0 0 0.5rem;
}

.cart__cta .btn {
  width: 100%;
}

.cart__vat {
  margin: 0;
  font-size: 0.85rem;
}

.cart__promo {
  margin: 0 0 1.25rem;
}

.cart__promo-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

.cart__promo-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.cart__promo-row input {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart__promo-status {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
}

.cart__promo-status--ok {
  background: #eaf4ee;
  color: var(--success);
}

.cart__promo-status--err {
  background: #fbeceb;
  color: var(--danger);
}

.cart__shipping {
  border: 0;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart__shipping legend {
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

.cart__shipping-option {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.cart__shipping-option:has(input:checked) {
  border-color: var(--ink);
}

.cart__shipping-option input {
  width: auto;
  accent-color: var(--ink);
}

.cart__shipping-label {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.cart__totals-row--discount dd {
  color: var(--success);
}

/* ── checkout ── */

.checkout {
  padding: 2rem 0 4rem;
}

.checkout__title {
  margin: 0 0 0.75rem;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.25rem);
}

.checkout__notice {
  margin: 0 0 2rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  background: var(--surface);
}

.checkout__empty {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0;
  align-items: flex-start;
}

.checkout__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .checkout__layout {
    grid-template-columns: minmax(0, 1.5fr) 360px;
    align-items: start;
  }
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checkout-form__group {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkout-form__group legend {
  padding: 0 0 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--border);
  width: 100%;
  margin-bottom: 0.5rem;
}

.checkout-form__group label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.92rem;
}

.checkout-form__group label > span:first-child {
  color: var(--ink);
}

.checkout-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkout-form__error {
  font-size: 0.82rem;
  color: var(--danger);
  min-height: 1em;
}

.checkout-form__radio {
  flex-direction: row !important;
  align-items: center;
  gap: 0.5rem !important;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.checkout-form__radio input {
  width: auto;
  accent-color: var(--ink);
}

.checkout-form__radio:has(input:checked) {
  border-color: var(--ink);
}

.checkout-form__terms {
  display: flex !important;
  flex-direction: row !important;
  gap: 0.5rem !important;
  align-items: flex-start;
  font-size: 0.92rem;
}

.checkout-form__terms input {
  width: auto;
  margin-top: 0.2rem;
  accent-color: var(--ink);
}

.checkout-form__submit {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.checkout-form__submit .btn {
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
}

.checkout-form__hint {
  margin: 0;
  font-size: 0.85rem;
}

.checkout__summary {
  position: sticky;
  top: 96px;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.checkout__summary-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.checkout-lines {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkout-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  align-items: start;
}

.checkout-line__thumb {
  position: relative;
}

.checkout-line__thumb img {
  width: 64px;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #f6f5f1;
  border-radius: var(--radius-sm);
}

.checkout-line__qty {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--ink);
  color: var(--accent-contrast);
  font-size: 0.78rem;
  line-height: 22px;
  text-align: center;
  border-radius: 999px;
}

.checkout-line__name {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
}

.checkout-line__variant {
  margin: 0;
  font-size: 0.82rem;
}

.checkout-line__total {
  margin: 0;
  font-size: 0.92rem;
  white-space: nowrap;
  font-weight: 500;
}

.checkout-form__server-error {
  margin: 0 0 0.75rem;
  padding: 0.5rem 0.75rem;
  background: #fbeceb;
  color: var(--danger);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

/* ── checkout success ── */

.success {
  padding: 4rem 0;
  max-width: 720px;
}

.success__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--success);
}

.success__title {
  margin: 0 0 1rem;
  font-weight: 500;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
}

.success__lede {
  margin: 0 0 2rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
  max-width: 50ch;
}

.success__details {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.75rem 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.success__details dt {
  color: var(--ink-muted);
}

.success__details dd {
  margin: 0;
}

.success__details code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.95rem;
}

.success__actions {
  margin-top: 2rem;
}

/* ── contact ── */

.contact {
  padding: 2rem 0 4rem;
}

.contact__title {
  margin: 0 0 0.75rem;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.25rem);
}

.contact__lede {
  margin: 0 0 2rem;
  max-width: 60ch;
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact__layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 1fr);
    align-items: start;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.92rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__submit {
  margin: 0;
}

.contact-form__banner {
  margin: 0;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}

.contact-form__banner--ok {
  background: #eaf4ee;
  color: var(--success);
}

.contact-form__banner--err {
  background: #fbeceb;
  color: var(--danger);
}

.contact__sidebar {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.contact__sidebar-title {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  font-weight: 500;
}

.contact__sidebar p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

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

/* ── prose pages (about, legal) ── */

.prose {
  padding: 3rem 0 4rem;
  max-width: 720px;
}

.prose__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.prose h1 {
  margin: 0 0 1rem;
  font-weight: 500;
}

.prose__lede {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 55ch;
}

.prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.prose p {
  margin: 0 0 1rem;
  max-width: 65ch;
}

.prose a {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* ── 404 ── */

.not-found {
  padding: 5rem 1rem 6rem;
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
}

.not-found__code {
  margin: 0;
  font-size: clamp(3rem, 2rem + 4vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-muted);
}

.not-found__title {
  margin: 0;
  font-weight: 500;
  font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.5rem);
}

.not-found__lede {
  margin: 0;
  color: var(--ink-muted);
  max-width: 32rem;
  font-size: 0.95rem;
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  margin-top: 0.75rem;
}

/* ── featured + product grid ── */

.featured {
  padding: 2rem 0 4rem;
}

.featured__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.featured__head .section-title {
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  display: block;
}

.product-card__link {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--ink);
}

.product-card__link:hover {
  opacity: 1;
}

.product-card__image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #f6f5f1;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Quick swap on hover — SSENSE/Mytheresa style. 200 ms felt sluggish
 * while scanning a grid; 100 ms reads as an instant replace but stays
 * smooth on slower screens. */
.product-card__img--hover {
  opacity: 0;
  transition: opacity 100ms ease-out;
}

.product-card__image:hover .product-card__img--hover {
  opacity: 1;
}

/* Hide the primary while the hover is showing — otherwise, when the two
 * stills have different aspect ratios (Vetements cutouts especially), the
 * primary peeks through the letterbox of the hover, doubling the image. */
.product-card__image:hover .product-card__img:not(.product-card__img--hover) {
  opacity: 0;
}

.product-card__sizes {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.55rem 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 140ms ease-out, transform 140ms ease-out;
  pointer-events: none;
}

.product-card__sizes span {
  color: var(--ink);
  text-transform: uppercase;
}

.product-card__image:hover .product-card__sizes {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  /* Touch devices don't have a hover state; suppress to avoid a sticky
   * overlay after tapping. */
  .product-card__sizes {
    display: none;
  }
}

.product-card__image .product-card__img:not(.product-card__img--hover) {
  transition: opacity 100ms ease-out;
}

.product-card__brand {
  margin: 0 0 0.15rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

.product-card__name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  /* Cap at two lines so cards stay aligned regardless of name length. */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink-muted);
}

.product-card__colors {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-card__colors li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--border);
}

/* ===========================================================
 * Catalog: facet bar + popovers + active chips + breadcrumb
 * Replaces the previous left-sidebar filter pattern.
 * =========================================================== */

.breadcrumbs {
  margin: 0.25rem 0 1rem;
  font-size: 0.8rem;
  color: var(--ink-muted);
}
.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.4rem;
  color: var(--ink-muted);
  opacity: 0.5;
}
.breadcrumbs a {
  color: var(--ink-muted);
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs [aria-current="page"] { color: var(--ink); }

.catalog__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin: 0 0 1.25rem;
  padding-bottom: 0.25rem;
  border-bottom: 0;
  flex-wrap: wrap;
}
.catalog__head-text { max-width: 720px; }
.catalog__sub {
  margin: 0.5rem 0 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 56ch;
}
.catalog__count {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ── facet bar (horizontal pill row) ── */
.facet-bar {
  position: sticky;
  top: 0;
  z-index: 35;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.85rem 0;
  margin: 0 0 0.75rem;
  background: var(--bg, #fafaf7);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.facet-bar::-webkit-scrollbar { display: none; }
.facet-bar__spacer { flex: 1 1 auto; min-width: 0.5rem; }

.facet-pill {
  appearance: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}
.facet-pill:hover { border-color: var(--ink); }
.facet-pill:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.facet-pill[aria-expanded="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.facet-pill--active { border-color: var(--ink); background: #1a1a1a; color: #fff; }
.facet-pill--active:hover { background: #000; }
.facet-pill--all { font-weight: 600; }
.facet-pill__caret { opacity: 0.5; font-size: 0.7rem; }
.facet-pill--sort { background: transparent; border-color: transparent; padding-right: 0.4rem; }
.facet-pill--sort:hover { border-color: var(--border); }
.facet-pill--sort[aria-expanded="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ── popover panels ── */
.facet-pop {
  position: absolute;
  z-index: 40;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  min-width: 260px;
  max-width: min(92vw, 380px);
  max-height: min(560px, 80vh);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 140ms ease, transform 140ms ease;
}
.facet-pop--open { opacity: 1; transform: translateY(0); }
.facet-pop--wide { min-width: 320px; max-width: min(92vw, 460px); }

.facet-pop__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem 0.5rem;
  border-bottom: 1px solid var(--border);
}
.facet-pop__head h3, .facet-pop__head h4 {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-muted);
}
.facet-pop__close {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  color: var(--ink);
}

.facet-pop__search { padding: 0.6rem 1rem 0; }
.facet-pop__search input {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font: inherit;
  font-size: 0.9rem;
}

.facet-pop__body {
  padding: 0.6rem 1rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  overflow-y: auto;
}
.facet-pop__body--scroll { max-height: 320px; }
.facet-pop__body label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  cursor: pointer;
  padding: 0.2rem 0;
}
.facet-pop input[type="checkbox"],
.facet-pop input[type="radio"] {
  accent-color: var(--ink);
  width: 16px;
  flex: 0 0 auto;
  padding: 0;
  margin: 0;
  border: 0;
}
.facet-pop label { width: auto; min-width: 0; }
.facet-pop label > span { flex: 0 1 auto; }

.facet-pop__body--grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}
.facet-pop__body--grid label {
  border: 1px solid var(--border);
  padding: 0.45rem 0.5rem;
  border-radius: 6px;
  justify-content: center;
  font-size: 0.85rem;
  text-align: center;
}
.facet-pop__body--grid label:has(input:checked) {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.facet-pop__body--grid input { position: absolute; opacity: 0; }

.facet-pop__body--colors {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 1rem;
}
.facet-pop__body--colors label.filter-color {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.facet-pop__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}
.facet-pop__chips button {
  appearance: none;
  background: #f6f5f1;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}
.facet-pop__chips button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.facet-pop__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  background: #fff;
  border-radius: 0 0 10px 10px;
}
.facet-pop__foot .btn { padding: 0.55rem 1rem; font-size: 0.85rem; }

.facet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: transparent;
}

/* ── "All filters" drawer (desktop: right side; mobile: full sheet) ── */
.facet-pop--drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100vh;
  height: 100dvh;
  max-width: none;
  max-height: none;
  border-radius: 0;
  border: 0;
  border-left: 1px solid var(--border);
  z-index: 60;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
}
.facet-pop__drawer-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 1rem 1.25rem 1.25rem;
}
.facet-pop__drawer-body section { padding: 1rem 0; border-bottom: 1px solid var(--border); }
.facet-pop__drawer-body section:last-child { border-bottom: 0; }
.facet-pop__drawer-body h4 {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}
.facet-pop__drawer-body label {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  font-size: 0.92rem;
  padding: 0.22rem 0;
  cursor: pointer;
}
.facet-pop__drawer-body [data-all-body="brand"] { max-height: 220px; overflow-y: auto; padding-right: 0.25rem; }

/* Mobile: any facet-pop renders as a bottom sheet (more thumb-friendly) */
@media (max-width: 760px) {
  .facet-pop:not(.facet-pop--drawer) {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    max-width: none;
    max-height: 80vh;
    border-radius: 14px 14px 0 0;
    transform: translateY(100%);
  }
  .facet-pop--open:not(.facet-pop--drawer) { transform: translateY(0); }
  .facet-backdrop {
    background: rgba(0, 0, 0, 0.4);
  }
}

/* ── active filter chips row (above grid) ── */
.active-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1rem;
  align-items: center;
}
.chip {
  appearance: none;
  background: #f0eee7;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.35rem 0.4rem 0.35rem 0.75rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--ink);
  transition: background 140ms ease;
}
.chip:hover { background: #e6e3da; }
.chip__x {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  font-size: 0.85rem;
  line-height: 1;
}
.active-chips__clear {
  appearance: none;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  color: var(--ink-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.2rem 0.4rem;
  margin-left: 0.25rem;
}
.active-chips__clear:hover { color: var(--ink); }

body.facet-pop-open { overflow: hidden; }
@media (min-width: 761px) {
  body.facet-pop-open { overflow: auto; }
  body.facet-pop-open:has(.facet-pop--drawer.facet-pop--open) { overflow: hidden; }
}

/* ===========================================================
 * Home: category mosaic, editorial row, designer tiles
 * =========================================================== */

.section-head {
  margin: 0 0 1.5rem;
}
.section-head--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.section-head .section-title {
  margin: 0;
  font-size: clamp(1.5rem, 1.1rem + 1.3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* category mosaic — full-bleed image tiles with text overlay */
.category-mosaic {
  padding: 3.5rem 0 1rem;
}
.category-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 900px) {
  .category-mosaic__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cat-tile {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #ece9e0;
  color: var(--ink);
  isolation: isolate;
}
.cat-tile__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cat-tile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.cat-tile:hover .cat-tile__image img,
.cat-tile:focus-visible .cat-tile__image img {
  transform: scale(1.04);
}
.cat-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.cat-tile__overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #fff;
}
.cat-tile__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
}
.cat-tile__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.2rem, 0.9rem + 0.9vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.cat-tile__cta {
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.95;
}

/* editorial row — 3 large story cards */
.editorial-row {
  padding: 3.5rem 0;
}
.editorial-row__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 760px) {
  .editorial-row__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.edit-card {
  position: relative;
  display: block;
  aspect-ratio: 5 / 6;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #ece9e0;
  color: var(--ink);
  isolation: isolate;
}
.edit-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.edit-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.edit-card:hover .edit-card__image img { transform: scale(1.04); }
.edit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}
.edit-card__overlay {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.edit-card__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}
.edit-card__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.4rem, 1rem + 1.4vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.edit-card__sub {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  opacity: 0.9;
}
.edit-card__cta {
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* designer tiles — 8 cards in a grid (mid-step between brand strip and full index) */
.designers-strip {
  padding: 2rem 0 3rem;
}
.designers-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .designers-strip__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .designers-strip__grid { grid-template-columns: repeat(8, 1fr); }
}
.designer-tile {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--ink);
}
.designer-tile__image {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #f6f5f1;
}
.designer-tile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.designer-tile:hover .designer-tile__image img { transform: scale(1.06); }
.designer-tile__meta h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.designer-tile__meta p { margin: 0; font-size: 0.78rem; }

/* ===========================================================
 * Product card: wishlist heart, NEW badge, hover image-scale
 * =========================================================== */

.product-card { position: relative; }
.product-card__heart {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 3;
  appearance: none;
  background: rgba(255, 255, 255, 0.85);
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 140ms ease, transform 140ms ease;
}
.product-card__heart:hover { background: #fff; transform: scale(1.05); }
.product-card__heart.is-saved { color: #c41e3a; }
.product-card__heart.is-saved svg path { fill: currentColor; }
.product-card__heart.is-pulsing { animation: heart-pulse 360ms ease; }
@keyframes heart-pulse {
  0% { transform: scale(1); }
  35% { transform: scale(1.22); }
  60% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

.product-card__new {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 2;
  background: #fff;
  color: var(--ink);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 2px;
  font-weight: 600;
}

.product-card__image img {
  transition: transform 450ms ease;
}
.product-card:hover .product-card__img--hover {
  opacity: 1;
}
.product-card:hover .product-card__img:not(.product-card__img--hover) {
  transform: scale(1.02);
}

/* ===========================================================
 * Designers index page
 * =========================================================== */

.designers-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 2rem;
  padding: 0.7rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.designers-jump a,
.designers-jump span {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 0.4rem;
  border-radius: 4px;
  color: var(--ink);
  text-decoration: none;
}
.designers-jump a:hover { background: var(--ink); color: #fff; }
.designers-jump span[aria-disabled="true"] {
  color: var(--ink-muted);
  opacity: 0.35;
  pointer-events: none;
}

.designers-page__group {
  margin: 0 0 3rem;
  scroll-margin-top: 6rem;
}
.designers-page__letter {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}
.designers-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 0.85rem;
}
@media (min-width: 640px) { .designers-page__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .designers-page__grid { grid-template-columns: repeat(4, 1fr); } }

.designer-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--ink);
}
.designer-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #f6f5f1;
}
.designer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.designer-card:hover .designer-card__image img { transform: scale(1.05); }
.designer-card__meta h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}
.designer-card__meta p { margin: 0; font-size: 0.78rem; }

/* ===========================================================
 * Card fade-in + cross-doc View Transition support
 * =========================================================== */

@media (prefers-reduced-motion: no-preference) {
  .product-card {
    animation: card-in 320ms ease both;
  }
  .rail .product-card,
  .product-grid .product-card {
    animation-delay: var(--card-delay, 0ms);
  }
}
@keyframes card-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* View Transitions API: cross-fade between same-origin pages.
 * Header/footer are tagged so they don't fade with the body, giving a
 * Vogue-style "shell stays, content cross-fades" feel. */
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 240ms;
  animation-timing-function: ease;
}
::view-transition-old(root) { animation-name: vt-fade-out; }
::view-transition-new(root) { animation-name: vt-fade-in; }
@keyframes vt-fade-out { to { opacity: 0; } }
@keyframes vt-fade-in  { from { opacity: 0; } }

/* Suppress the main fade-in when view-transitions are handling it,
 * otherwise we get a double-fade. */
html.vt-active main#main { animation: none; }

/* ===========================================================
 * PDP — sticky details column, accordion, big add-to-cart
 * =========================================================== */

@media (min-width: 900px) {
  .product__meta {
    position: sticky;
    top: 6rem;
    align-self: start;
  }
}

.product__meta-head { display: flex; flex-direction: column; gap: 0.25rem; }
.product__brand {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}
.product__brand a { color: inherit; text-decoration: none; }
.product__brand a:hover { color: var(--ink); }
.product__name {
  margin: 0.25rem 0 0.5rem;
  font-weight: 500;
  font-size: clamp(1.4rem, 1rem + 1.1vw, 1.95rem);
  letter-spacing: -0.01em;
  line-height: 1.18;
}
.product__price {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.product__size-guide {
  float: right;
  font-size: 0.78rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--ink-muted);
}
.product__size-guide:hover { color: var(--ink); }

.btn--lg {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.product__add { width: 100%; }

/* Accordion (collapsible sections) */
.product__accordion {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
}
.product__accordion > li { border-bottom: 1px solid var(--border); }
.product__accordion details > summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.product__accordion details > summary::-webkit-details-marker { display: none; }
.product__accordion-icon {
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 200ms ease;
  display: inline-block;
}
.product__accordion details[open] .product__accordion-icon { transform: rotate(45deg); }
.product__accordion-body {
  padding: 0 0 1rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.product__accordion-body p { margin: 0 0 0.6rem; }
.product__accordion-body p:last-child { margin-bottom: 0; }

/* ===========================================================
 * Motion pack — scroll reveal, badge pop, button success,
 * underline expand, size-button press
 * =========================================================== */

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }
  [data-reveal].is-revealed {
    opacity: 1;
    transform: none;
  }
}

.cart-badge.is-pop {
  animation: badge-pop 380ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes badge-pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.btn.is-added {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
  pointer-events: none;
}
.btn.is-added::before {
  content: "✓ ";
  display: inline-block;
  margin-right: 0.35rem;
  animation: check-in 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes check-in {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.site-header__nav a {
  position: relative;
}
.site-header__nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--ink);
  transition: right 240ms cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header__nav > a:hover::after { right: 0; }
.site-header__nav > a[aria-current="page"]::after { right: 0; }

.product__sizes button {
  transition: background 140ms ease, color 140ms ease,
              border-color 140ms ease, transform 140ms ease;
}
.product__sizes button:active { transform: scale(0.94); }
.product__sizes button.is-active {
  animation: size-pop 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes size-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.product__heart.is-pulsing {
  animation: heart-pulse 380ms ease;
}
.product__heart.is-saved { color: #c41e3a; }
.product__heart.is-saved svg path { fill: currentColor; }

.icon-btn { transition: background 140ms ease, transform 140ms ease; }
.icon-btn:active { transform: scale(0.92); }

.section-title {
  position: relative;
  padding-bottom: 0.4rem;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 1px;
  background: var(--ink);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1) 120ms;
}
[data-reveal].is-revealed .section-title::after,
.section-title.is-revealed::after {
  transform: scaleX(1);
}

/* ═══════════════════════════════════════════════════════════════════
   MARKETING / CONVERSION LAYER
   Stars, sale badges, social proof, free-ship bar, exit-intent modal,
   trust strips, card checkout, PDP countdown/shipping badge.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Star rating (product cards + PDP) ─────────────────────────────── */
.stars {
  display: inline-flex;
  gap: 1px;
  vertical-align: middle;
}
.star {
  --sz: 12px;
  --fill: 0%;
  display: inline-block;
  width: var(--sz);
  height: var(--sz);
  background: linear-gradient(90deg, #d4a24a var(--fill), #d9d5c9 var(--fill));
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2.5l2.9 6.6 7.1.6-5.4 4.7 1.7 7-6.3-3.8L5.7 21.4l1.7-7L2 9.7l7.1-.6z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2.5l2.9 6.6 7.1.6-5.4 4.7 1.7 7-6.3-3.8L5.7 21.4l1.7-7L2 9.7l7.1-.6z'/></svg>") center / contain no-repeat;
}

/* ── Product card price / rating extras ────────────────────────────── */
.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.9rem;
}
.product-card__price .price-was {
  color: #9a9a94;
  text-decoration: line-through;
  font-weight: 400;
  font-size: 0.82rem;
}
.product-card__price .price-now {
  color: var(--ink);
  font-weight: 500;
}
.product-card__price--sale .price-now {
  color: #a8312a;
}
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.2rem 0 0;
  font-size: 0.76rem;
  color: #6f6d66;
}
.product-card__rating-num {
  font-weight: 500;
  color: var(--ink);
}
.product-card__rating-count {
  color: #9a9a94;
}
.product-card__sale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #a8312a;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 7px;
  border-radius: 3px;
  z-index: 3;
}
.product-card__new + .product-card__sale {
  top: 40px;
}

/* ── PDP price block ────────────────────────────────────────────────── */
.product__price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin: 0.3rem 0 0.1rem;
}
.product__price .price-was {
  color: #9a9a94;
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 400;
}
.product__price .price-now {
  font-size: 1.35rem;
  font-weight: 500;
}
.product__price--sale .price-now {
  color: #a8312a;
}
.price-badge {
  background: #a8312a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}
.product__price-note {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
}

/* ── PDP rating row ─────────────────────────────────────────────────── */
.product__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.35rem 0 0.7rem;
  font-size: 0.85rem;
  color: #6f6d66;
}
.product__rating-num {
  font-weight: 500;
  color: var(--ink);
}
.product__rating-link {
  color: #6f6d66;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── PDP social proof row ───────────────────────────────────────────── */
.product__social {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  font-size: 0.82rem;
  color: #4a4842;
}
.product__social li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.product__social strong { color: var(--ink); font-weight: 600; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dot--live {
  background: #2f9e5e;
  box-shadow: 0 0 0 0 rgba(47, 158, 94, 0.55);
  animation: dot-pulse 1.6s ease-out infinite;
}
@keyframes dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(47, 158, 94, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(47, 158, 94, 0);   }
  100% { box-shadow: 0 0 0 0 rgba(47, 158, 94, 0);     }
}

/* ── PDP country/shipping badge + countdown ─────────────────────────── */
.product__shipping-badge {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 0.55rem 0.7rem;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: #59564f;
}
.product__shipping-badge-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.product__shipping-badge-row .icon {
  color: #9a9892;
  font-size: 0.95em;
}
.product__shipping-badge strong { color: var(--ink); font-weight: 500; }
[data-countdown] {
  font-variant-numeric: tabular-nums;
  color: #4a4842;
}

/* ── PDP size flag "only N left" ─────────────────────────────────────── */
.product__sizes button { position: relative; }
.size-flag {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #a8312a;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 2px 5px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  pointer-events: none;
}
.product__stock-hint {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
}
.product__stock-hint--low {
  color: #a8312a;
  font-weight: 500;
}

/* ── Free shipping progress bar (cart) ──────────────────────────────── */
.freeship {
  margin: 0 0 1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 6px;
  background: #f4f2ec;
}
.freeship__text {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 500;
}
.freeship__bar {
  position: relative;
  height: 6px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  overflow: hidden;
}
.freeship__fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, #b8956b, #2f9e5e);
  transition: width 380ms cubic-bezier(0.16, 1, 0.3, 1);
}
.freeship--done .freeship__fill {
  background: #2f9e5e;
}
.freeship--done .freeship__text {
  color: #2f9e5e;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.freeship--done .freeship__text::before {
  content: "";
  width: 0.9em;
  height: 0.9em;
  flex: none;
  background: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9" fill="none" stroke="black" stroke-width="1.8"/><path d="M8 12.5 11 15.5 16.5 9" fill="none" stroke="black" stroke-width="1.8"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9" fill="none" stroke="black" stroke-width="1.8"/><path d="M8 12.5 11 15.5 16.5 9" fill="none" stroke="black" stroke-width="1.8"/></svg>') center / contain no-repeat;
}

/* ── Trust strip (cart / checkout) ──────────────────────────────────── */
.cart__trust,
.checkout__trust {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.75rem;
  font-size: 0.75rem;
  color: #4a4842;
}
.checkout__trust {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 0.5rem 0 1.5rem;
  padding: 0.75rem 0.9rem;
  background: #f7f5ef;
  border-radius: 6px;
}
.cart__trust li,
.checkout__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.checkout__split-notice {
  margin: 0.85rem 0 0;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  background: #f7f1e4;
  border: 1px solid #e6d8ba;
  font-size: 0.78rem;
  color: #6b5626;
  line-height: 1.4;
}

.split-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}
.split-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.split-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(2px);
}
.split-modal__panel {
  position: relative;
  background: #faf8f2;
  border-radius: 10px;
  padding: 2rem 1.8rem 1.8rem;
  width: min(440px, calc(100vw - 32px));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  transform: translateY(12px) scale(0.98);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.split-modal.is-open .split-modal__panel {
  transform: translateY(0) scale(1);
}
.split-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: 0;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  color: #7a7770;
  padding: 4px 8px;
}
.split-modal__close:hover { color: var(--ink); }
.split-modal__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a7770;
}
.split-modal__title {
  margin: 0.35rem 0 0.75rem;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 500;
}
.split-modal__body {
  margin: 0 0 1.4rem;
  font-size: 0.92rem;
  color: #4a4842;
  line-height: 1.45;
}
.split-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
}
@media (max-width: 480px) {
  .split-modal__actions { flex-direction: column-reverse; }
  .split-modal__actions .btn { width: 100%; }
}

/* ── Exit-intent / welcome modal ────────────────────────────────────── */
.welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}
.welcome-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.welcome-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(2px);
}
.welcome-modal__panel {
  position: relative;
  background: #faf8f2;
  border-radius: 10px;
  padding: 2rem 1.8rem 1.8rem;
  width: min(440px, calc(100vw - 32px));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  transform: translateY(12px) scale(0.98);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.welcome-modal.is-open .welcome-modal__panel {
  transform: translateY(0) scale(1);
}
.welcome-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: 0;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  color: #7a7770;
  padding: 4px 8px;
}
.welcome-modal__close:hover { color: var(--ink); }
.welcome-modal__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a7770;
}
.welcome-modal__title {
  margin: 0.35rem 0 0.75rem;
  font-size: 1.65rem;
  line-height: 1.15;
  font-weight: 500;
}
.welcome-modal__lede {
  margin: 0 0 1.2rem;
  font-size: 0.92rem;
  color: #4a4842;
  line-height: 1.4;
}
.welcome-modal__form {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
}
.welcome-modal__form input {
  flex: 1;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  font: inherit;
  background: #fff;
}
.welcome-modal__form input:focus {
  outline: 2px solid rgba(0, 0, 0, 0.35);
  outline-offset: 1px;
}
.welcome-modal__form .btn {
  white-space: nowrap;
}
.welcome-modal__code {
  margin: 0 0 0.5rem;
  padding: 0.7rem 0.85rem;
  background: #ecf5ee;
  border-radius: 5px;
  color: #2f6e46;
  font-size: 0.9rem;
}
.welcome-modal__code strong {
  font-weight: 700;
  letter-spacing: 0.05em;
}
.welcome-modal__terms {
  margin: 0;
  font-size: 0.72rem;
  color: #8a8880;
}
@media (max-width: 480px) {
  .welcome-modal__form { flex-direction: column; }
  .welcome-modal__title { font-size: 1.4rem; }
}

/* ── Recently viewed rail ──────────────────────────────────────────── */
[data-viewed-clear] {
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--ink);
  font: inherit;
}

/* Welcome modal — no-email variant */
.welcome-modal__code-large {
  margin: 0.4rem 0 1rem;
  padding: 0.75rem 1rem;
  border: 1.5px dashed rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink);
  background: #fff;
}
.welcome-modal__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0 0 0.85rem;
  flex-wrap: wrap;
}
.welcome-modal__actions .btn { flex: 1; min-width: 160px; }
.welcome-modal__actions .link-cta { white-space: nowrap; }

/* ═══════════════════════════════════════════════════════════════════
   CONVERSION LAYER 2 — mobile sticky cart, bundle, social toast
   ═══════════════════════════════════════════════════════════════════ */

/* ── Sticky mobile mini-cart ───────────────────────────────────────── */
.sticky-cart {
  position: fixed;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 90;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 240ms ease;
  pointer-events: none;
  display: none;
}
.sticky-cart.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cart__link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  color: inherit;
  text-decoration: none;
}
.sticky-cart__count {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0 8px;
}
.sticky-cart__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.15;
}
.sticky-cart__price {
  font-size: 0.98rem;
  font-weight: 600;
}
.sticky-cart__hint {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cart__hint.is-done { color: #7ce4a7; }
.sticky-cart__cta {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 0.9rem;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  white-space: nowrap;
}
.sticky-cart__bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  position: relative;
}
.sticky-cart__bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, #c8a35a, #7ce4a7);
  transition: width 380ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 760px) {
  .sticky-cart { display: block; }
  /* Reserve space so the sticky bar doesn't overlap the footer country
     picker on the last screen. */
  main { padding-bottom: 88px; }
}

/* ── Bundle "Complete the look" ─────────────────────────────────────── */
.bundle {
  padding: 2rem 1rem 2.5rem;
  background: #f4f2ec;
  margin: 2rem 0 0;
}
.bundle__head {
  max-width: 1200px;
  margin: 0 auto 1.2rem;
  padding: 0 0.5rem;
}
.bundle__eyebrow {
  margin: 0 0 0.15rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a7770;
}
.bundle__title {
  margin: 0 0 0.35rem;
  font-size: 1.6rem;
  font-weight: 500;
}
.bundle__sub { margin: 0; font-size: 0.9rem; }

.bundle__grid {
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.bundle__item {
  position: relative;
  background: #fff;
  padding: 0.85rem;
  border-radius: 6px;
  width: 180px;
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
}
.bundle__item--this { outline: 2px solid var(--ink); outline-offset: -2px; }
.bundle__thumb {
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: #f6f5f1;
  margin-bottom: 0.55rem;
}
.bundle__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bundle__brand {
  margin: 0;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a7770;
}
.bundle__name {
  margin: 0.15rem 0;
  color: var(--ink);
  line-height: 1.25;
  min-height: 2.4em;
}
.bundle__price { margin: 0.15rem 0 0; font-weight: 500; color: var(--ink); }
.bundle__tag {
  position: absolute;
  top: -8px;
  left: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 0.62rem;
  padding: 3px 7px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bundle__plus {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 300;
  color: #9a9892;
  padding: 0 0.3rem;
}
.bundle__cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.bundle__totals {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.bundle__was {
  color: #9a9a94;
  text-decoration: line-through;
  font-size: 1rem;
}
.bundle__now {
  font-size: 1.3rem;
  font-weight: 500;
  color: #a8312a;
}
.bundle__save {
  font-size: 0.82rem;
  color: #2f6e46;
  font-weight: 500;
}
.bundle__cta .btn.is-added { background: #2f9e5e; }
.bundle__size-select {
  margin-top: 0.5rem;
  width: 100%;
  font-size: 0.78rem;
  padding: 0.35rem 0.4rem;
  border: 1px solid #d8d6cf;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
}
.bundle__size-select.is-invalid { border-color: #a8312a; }
.bundle__size-error {
  margin: 0.25rem 0 0;
  font-size: 0.68rem;
  color: #a8312a;
}
.bundle__note {
  max-width: 1200px;
  margin: 0.9rem auto 0;
  padding: 0 0.5rem;
  font-size: 0.75rem;
}
@media (max-width: 640px) {
  .bundle__plus { display: none; }
  .bundle__item { width: 46%; }
  .bundle__cta { flex-direction: column; align-items: stretch; }
  .bundle__cta .btn { width: 100%; }
}

/* ── Just-bought social toast ───────────────────────────────────────── */
.social-toast {
  position: fixed;
  left: 12px;
  bottom: 12px;
  z-index: 80;
  width: 300px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 240ms ease;
  overflow: hidden;
}
.social-toast.is-in {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.social-toast__link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  padding: 0.7rem 2.2rem 0.7rem 0.7rem;
  color: inherit;
  text-decoration: none;
}
.social-toast__thumb {
  width: 44px;
  height: 55px;
  object-fit: cover;
  border-radius: 4px;
  background: #f4f2ec;
}
.social-toast__body { min-width: 0; }
.social-toast__eyebrow {
  margin: 0 0 2px;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #7a7770;
}
.social-toast__line {
  margin: 0 0 2px;
  font-size: 0.82rem;
  line-height: 1.22;
  color: var(--ink);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.social-toast__meta {
  margin: 0;
  font-size: 0.72rem;
  color: #7a7770;
}
.social-toast__close {
  position: absolute;
  top: 4px;
  right: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.2rem;
  color: #9a9892;
  padding: 4px 8px;
  line-height: 1;
}
.social-toast__close:hover { color: var(--ink); }
@media (max-width: 640px) {
  .social-toast {
    left: 8px;
    right: 8px;
    bottom: 88px; /* clear the sticky mini-cart */
    width: auto;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   CONVERSION LAYER 3 — CTA polish, perks, notify-me, desc lift
   ═══════════════════════════════════════════════════════════════════ */

/* ── PDP main CTA with price ────────────────────────────────────────── */
.product__add {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  width: 100%;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
}
.btn__price {
  font-weight: 500;
  opacity: 0.86;
  font-variant-numeric: tabular-nums;
}
.btn__sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.75;
  margin-top: 2px;
}
.product__add.is-added {
  background: #2f9e5e !important;
  color: #fff;
}
.product__add.is-added .btn__price { display: none; }

/* ── Wishlist secondary CTA below add ──────────────────────────────── */
.product__wishlist-cta {
  margin: 0.5rem 0 0.8rem;
  text-align: center;
}
.product__wishlist-cta .link-cta {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  color: #6f6d66;
  padding: 0.35rem 0;
}
.product__wishlist-cta .link-cta:hover { color: var(--ink); }

/* ── PDP perks row (fast delivery · returns · secure payment) ─────── */
.product__perks {
  list-style: none;
  padding: 0.7rem 0.85rem;
  margin: 0 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.4rem 0.75rem;
  font-size: 0.76rem;
  color: #4a4842;
  background: #f7f5ef;
  border-radius: 6px;
}
.product__perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ── PDP description lift (first paragraph above accordion) ───────── */
.product__desc-lift {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4a4842;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product__desc-lift:empty { display: none; }

/* ── Sold-out size + notify-me box ─────────────────────────────────── */
.product__sizes button.is-oos {
  color: #b0aea8;
  background: repeating-linear-gradient(-45deg, transparent, transparent 4px, rgba(0,0,0,0.05) 4px, rgba(0,0,0,0.05) 5px);
  cursor: pointer;
}
.size-flag--oos {
  background: #6a6862;
  color: #fff;
  font-size: 0.58rem;
}
.notify-me {
  margin: 0.7rem 0 0;
  padding: 0.75rem 0.85rem;
  background: #f4f2ec;
  border-radius: 6px;
}
.notify-me__title { margin: 0 0 0.15rem; font-size: 0.9rem; }
.notify-me__sub { margin: 0 0 0.6rem; font-size: 0.78rem; }
.notify-me__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.btn.btn--sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
}

/* ── Hero proof row ────────────────────────────────────────────────── */
.hero__proof {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #4a4842;
}
.hero__proof li { display: inline-flex; align-items: center; gap: 0.3rem; }

/* ── Cart empty wishlist prompt ────────────────────────────────────── */
.cart__empty-wish {
  margin: 0.8rem 0 1rem;
  font-size: 0.9rem;
  color: #4a4842;
}
.cart__empty-wish strong { color: var(--ink); font-weight: 600; }

/* ── Cookie / storage-notice banner ─────────────────────────────────── */
.disclosure-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background: var(--ink);
  color: #fff;
  transform: translateY(100%);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.disclosure-banner.is-visible { transform: translateY(0); }
.disclosure-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.disclosure-banner__body {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
}
.disclosure-banner__body strong { color: #fff; }
.disclosure-banner__body a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.disclosure-banner__actions { flex-shrink: 0; }
.disclosure-banner .btn.btn--sm {
  background: #fff;
  color: var(--ink);
}
@media (max-width: 640px) {
  .disclosure-banner__inner { flex-direction: column; align-items: stretch; text-align: left; }
  .disclosure-banner .btn.btn--sm { width: 100%; }
  /* Sticky mini-cart also lives at the bottom on mobile — keep them from
     overlapping by pushing the banner above it when a cart exists. */
}
