:root {
  --butter: #f4d870;
  --butter-soft: #f8e59a;
  --butter-deep: #e0bc4e;
  --cream: #fbf5e6;
  --bone: #fdf9ee;
  --blush: #f5c9cf;
  --blush-soft: #fce3e5;
  --blush-deep: #dc8a99;
  --sky: #cadbe7;
  --sky-soft: #e5eef4;
  --ink: #2a2218;
  --ink-2: #5a4f44;
  --mute: #847868;
  --hair: rgba(42, 34, 24, 0.12);
  --display: "Fraunces", Georgia, serif;
  --script: "Allura", cursive;
  --body: "DM Sans", system-ui, sans-serif;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
::selection {
  background: var(--butter);
  color: var(--ink);
}

nav.top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 56px;
  border-bottom: 1px solid var(--hair);
  position: sticky;
  top: 0;
  background: rgba(251, 245, 230, 0.92);
  backdrop-filter: blur(10px);
  z-index: 50;
}
.nav-left,
.nav-right {
  display: flex;
  gap: 32px;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-right {
  justify-content: flex-end;
}
.nav-left a:hover,
.nav-right a:hover {
  color: var(--blush-deep);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.nav-logo .word {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.34em;
  font-variation-settings: "opsz" 144;
}

.crumbs {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 56px 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.crumbs a:hover {
  color: var(--blush-deep);
}
.crumbs span {
  margin: 0 10px;
}

section.product-detail {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 56px 96px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  position: sticky;
  top: 100px;
}
.gallery-main {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--blush-soft);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-thumbs button {
  aspect-ratio: 1/1;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: var(--blush-soft);
  transition: border-color 0.25s;
}
.gallery-thumbs button.active {
  border-color: var(--blush-deep);
}
.gallery-thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info .badge {
  display: inline-block;
  background: var(--blush-soft);
  color: var(--ink);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 500;
  margin-bottom: 20px;
}
.info h1 {
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.018em;
  text-wrap: balance;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 30;
}
.info h1 em {
  font-style: italic;
  color: var(--blush-deep);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.info .price {
  font-family: var(--display);
  font-size: 24px;
  margin-top: 14px;
  color: var(--ink-2);
  font-variation-settings: "opsz" 144;
}
.info .desc {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-top: 28px;
  max-width: 46ch;
}
.info .desc + .desc {
  margin-top: 16px;
}

.opt-block {
  margin-top: 36px;
}
.opt-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}
.opt-label a {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.opt-label a:hover {
  color: var(--blush-deep);
  border-color: var(--blush-deep);
}
.colors {
  display: flex;
  gap: 12px;
}
.swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 2px;
  transition:
    border-color 0.25s,
    transform 0.25s;
  background-clip: content-box;
  background-origin: content-box;
}
.swatch.blush {
  background-color: #f5c9cf;
}
.swatch.white {
  background-color: #f8f0e5;
  box-shadow: inset 0 0 0 1px var(--hair);
}
.swatch.butter {
  background-color: #f4d870;
}
.swatch.sky {
  background-color: #c9dce7;
}
.swatch.navy {
  background-color: #1f3349;
}
.swatch.active {
  border-color: var(--ink);
  transform: scale(1.06);
}

.sizes-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.size-btn {
  min-width: 60px;
  padding: 14px 18px;
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: 999px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.size-btn:hover {
  border-color: var(--ink);
}
.size-btn.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.size-btn[disabled] {
  color: var(--mute);
  cursor: not-allowed;
  opacity: 0.5;
  text-decoration: line-through;
}
.size-btn.is-soldout {
  color: var(--mute);
  text-decoration: line-through;
  position: relative;
}
.size-btn.is-soldout::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blush-deep);
}
.size-btn.is-soldout.active {
  background: var(--blush-deep);
  color: var(--cream);
  border-color: var(--blush-deep);
  text-decoration: none;
}
.size-btn.is-soldout.active::after {
  background: var(--cream);
}

/* CTA notify-me state */
.add-cta.is-notify {
  background: var(--blush-deep);
}
.add-cta.is-notify:hover {
  background: var(--ink);
}

/* "ADD THE SET" combo button (BY pattern) — image + label + price.
   Now shows a 56px thumbnail of the partner product on the left so the
   user sees what they're adding (was text-only and felt vague). */
.add-combo-cta {
  width: 100%;
  background: var(--blush-soft);
  color: var(--ink);
  border: 1px solid var(--blush);
  padding: 8px 14px 8px 8px;
  margin-top: 12px;
  font-family: inherit;
  cursor: pointer;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}
.add-combo-cta:hover {
  background: var(--blush);
  border-color: var(--blush-deep);
}
.add-combo-cta.added {
  background: var(--blush-deep);
  color: var(--cream);
  border-color: var(--blush-deep);
}
.add-combo-cta .add-combo-thumb {
  flex: 0 0 auto;
  width: 56px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  display: block;
}
.add-combo-cta .add-combo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.add-combo-cta .add-combo-meta {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
  min-width: 0;
}
.add-combo-cta .add-combo-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.add-combo-cta .add-combo-label {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.add-combo-cta .add-combo-label strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 15px;
  color: var(--blush-deep);
  font-style: italic;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.add-combo-cta.added .add-combo-eyebrow,
.add-combo-cta.added .add-combo-label {
  color: var(--cream);
}
.add-combo-cta.added .add-combo-label strong {
  color: var(--cream);
}
.add-combo-cta .add-combo-amt {
  flex: 0 0 auto;
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
}

/* BNPL inline messaging (Klarna pattern) */
.bnpl-msg {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.bnpl-msg .bnpl-brand {
  display: inline-flex;
  align-items: center;
  background: #ffa8cd;
  color: #17120f;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 2px 7px;
  border-radius: 3px;
}

/* PRODUCT VIDEO IN PDP GALLERY — Alo pattern */
.gallery-thumbs .thumb-video {
  position: relative;
}
.gallery-thumbs .thumb-video img {
  filter: brightness(0.78);
}
.gallery-thumbs .thumb-video .thumb-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  pointer-events: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.gallery-thumbs .thumb-video::after {
  content: "VIDEO";
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(220, 138, 153, 0.92);
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.18em;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 2px;
  pointer-events: none;
}
.gallery-thumbs button.thumb-video.active {
  border-color: var(--blush-deep);
}
.gallery-main.is-video {
  background: var(--ink);
}
.gallery-main.is-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/5;
}

/* HOVER ZOOM — Desktop PDP gallery (BY pattern) */
.gallery-main.is-zoomable {
  cursor: zoom-in;
  --zx: 50%;
  --zy: 50%;
}
.gallery-main.is-zoomable img {
  transition: transform 0.2s ease-out;
  will-change: transform;
}
.gallery-main.is-zoomable:hover img {
  transform: scale(1.7);
  transform-origin: var(--zx) var(--zy);
}
.gallery-main.is-swipe.is-zoomable:hover img {
  transform: none;
}
@media (max-width: 860px) {
  .gallery-main.is-zoomable:hover img {
    transform: none;
  }
}

/* MOBILE GALLERY SWIPE CAROUSEL — BY pattern */
.gallery-main.is-swipe {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  aspect-ratio: auto;
  height: auto;
  background: transparent;
  scrollbar-width: none;
}
.gallery-main.is-swipe::-webkit-scrollbar {
  display: none;
}
.gallery-swipe-img {
  flex: 0 0 100%;
  aspect-ratio: 4/5;
  scroll-snap-align: start;
  background: var(--blush-soft);
  overflow: hidden;
  border-radius: 4px;
}
.gallery-swipe-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 12px 0 4px;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(42, 34, 24, 0.2);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}
.gallery-dot.is-active {
  background: var(--blush-deep);
  transform: scale(1.25);
}

/* Mobile swipe carousel — video slide with play overlay (Adanola pattern) */
.gallery-swipe-img.is-video-slide {
  position: relative;
  background: #1a1a1a;
}
.gallery-swipe-img.is-video-slide img {
  opacity: 0.85;
}
.gallery-swipe-img .swipe-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.18s ease;
}
.gallery-swipe-img .swipe-play:hover,
.gallery-swipe-img .swipe-play:active {
  transform: translate(-50%, -50%) scale(1.08);
}
.gallery-swipe-img.is-playing .swipe-play {
  display: none;
}
.gallery-swipe-img.is-playing img {
  display: none;
}
.gallery-swipe-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Swatch → "Shop [Color Variant] →" chip (Vuori "Pairs With" pattern).
   Appears under the color row when user previews a colorway that's actually
   a different SKU. Tells the truth: each S68 product comes in one color. */
.colors {
  flex-wrap: wrap;
  align-items: center;
}
.swatch-chip {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
  animation: swatchChipIn 0.3s ease both;
}
.swatch-chip:hover {
  background: var(--blush-deep);
  border-color: var(--blush-deep);
  transform: translateY(-1px);
}
.swatch-chip[hidden] {
  display: none;
}
@keyframes swatchChipIn {
  from {
    opacity: 0;
    transform: translateX(-4px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 600px) {
  .swatch-chip {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }
}

/* WISHLIST HEART BUTTONS — BY / Set Active pattern */
.product-wish-btn,
.pdp-wish-btn {
  position: absolute;
  background: rgba(253, 249, 238, 0.95);
  border: 1px solid var(--hair);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  padding: 0;
  z-index: 5;
  transition:
    transform 0.18s ease,
    color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}
.product-wish-btn {
  top: 12px;
  right: 12px;
}
.product-wish-btn:hover,
.pdp-wish-btn:hover {
  transform: scale(1.06);
  border-color: var(--blush-deep);
  color: var(--blush-deep);
  box-shadow: 0 6px 16px -8px rgba(220, 138, 153, 0.5);
}
.product-wish-btn.is-on,
.pdp-wish-btn.is-on {
  color: var(--blush-deep);
  background: var(--blush-soft);
  border-color: var(--blush-deep);
}
.product-wish-btn svg,
.pdp-wish-btn svg {
  width: 18px;
  height: 18px;
}
/* PDP heart sits inline below the qty-add row, full-width pill instead of corner badge */
.pdp-wish-btn {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 999px;
  padding: 12px 18px;
  margin: 12px 0 0;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
}
.pdp-wish-btn::after {
  content: "Save to wishlist";
  font-family: var(--body);
}
.pdp-wish-btn.is-on::after {
  content: "Saved to wishlist";
}

/* PDP SIZE GUIDE MODAL */
.pdp-size-guide {
  position: fixed;
  inset: 0;
  z-index: 92;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.pdp-size-guide.is-open {
  display: flex;
}
.pdp-size-guide-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 34, 24, 0.55);
  z-index: 1;
}
.pdp-size-guide-card {
  position: relative;
  z-index: 2;
  background: var(--cream);
  border-radius: 6px;
  width: min(720px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  padding: 32px 36px 36px;
  box-shadow: 0 32px 80px -32px rgba(42, 34, 24, 0.5);
}
.pdp-size-guide-head {
  position: relative;
  padding-right: 32px;
}
.pdp-size-guide-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blush-deep);
  font-weight: 500;
}
.pdp-size-guide-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin-top: 10px;
}
.pdp-size-guide-title em {
  font-style: italic;
  color: var(--blush-deep);
}
.pdp-size-guide-close {
  position: absolute;
  top: -6px;
  right: -8px;
  background: transparent;
  border: 0;
  font-size: 24px;
  color: var(--ink);
  cursor: pointer;
  padding: 4px 10px;
}
.pdp-size-guide-body {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
}
.pdp-size-guide-table-wrap {
  overflow-x: auto;
  margin: 22px 0 24px;
  border: 1px solid var(--hair);
  border-radius: 4px;
  background: var(--bone);
}
.pdp-size-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.pdp-size-guide-table th,
.pdp-size-guide-table td {
  padding: 12px 16px;
  text-align: center;
}
.pdp-size-guide-table thead th {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  background: rgba(42, 34, 24, 0.04);
  border-bottom: 1px solid var(--hair);
}
.pdp-size-guide-table tbody th {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  text-align: left;
  padding-left: 24px;
  background: rgba(244, 216, 112, 0.18);
}
.pdp-size-guide-table tbody td {
  color: var(--ink-2);
  border-top: 1px solid var(--hair);
}
.pdp-size-guide-tips {
  margin-bottom: 18px;
}
.pdp-size-guide-tips h3 {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blush-deep);
  font-weight: 500;
  margin-bottom: 10px;
}
.pdp-size-guide-tips ul {
  list-style: none;
  padding: 0;
}
.pdp-size-guide-tips li {
  padding: 4px 0 4px 20px;
  position: relative;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
}
.pdp-size-guide-tips li::before {
  content: "·";
  position: absolute;
  left: 4px;
  font-size: 22px;
  line-height: 1;
  color: var(--blush-deep);
}
.pdp-size-guide-foot {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.55;
  border-top: 1px solid var(--hair);
  padding-top: 16px;
}
.pdp-size-guide-foot a {
  color: var(--blush-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 720px) {
  .pdp-size-guide-card {
    padding: 24px 20px 28px;
  }
  .pdp-size-guide-table th,
  .pdp-size-guide-table td {
    padding: 10px 8px;
    font-size: 12.5px;
  }
}

/* PDP NOTIFY-ME PANEL (sold-out email capture) */
.pdp-notify-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.pdp-notify-panel.is-open {
  display: flex;
}
.pdp-notify-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 34, 24, 0.5);
  z-index: 1;
}
.pdp-notify-card {
  position: relative;
  z-index: 2;
  background: var(--cream);
  border-radius: 6px;
  width: min(440px, 100%);
  padding: 28px 32px 30px;
  box-shadow: 0 32px 80px -32px rgba(42, 34, 24, 0.5);
}
.pdp-notify-head {
  position: relative;
}
.pdp-notify-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blush-deep);
  font-weight: 500;
}
.pdp-notify-title {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin-top: 8px;
  padding-right: 32px;
}
.pdp-notify-close {
  position: absolute;
  top: -4px;
  right: -8px;
  background: transparent;
  border: 0;
  font-size: 24px;
  color: var(--ink);
  cursor: pointer;
  padding: 4px 8px;
}
.pdp-notify-body {
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
}
.pdp-notify-form {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.pdp-notify-form input {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 14px;
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: 2px;
  color: var(--ink);
}
.pdp-notify-form input:focus {
  outline: none;
  border-color: var(--ink-2);
}
.pdp-notify-submit {
  background: var(--ink);
  color: var(--cream);
  border: 0;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.18s ease;
}
.pdp-notify-submit:hover {
  background: var(--blush-deep);
}
.pdp-notify-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.pdp-notify-success {
  display: none;
  margin-top: 14px;
  font-family: var(--display);
  font-size: 18px;
  color: var(--ink);
}
.pdp-notify-success.is-on {
  display: block;
}
.pdp-notify-success strong {
  color: var(--blush-deep);
  font-style: italic;
}

/* ============ CART EXPRESS PAY (Vervaunt + Alo pattern) ============ */
.bag-express-pay {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-bottom: 8px;
}
.bag-express {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 9px 8px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 0;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    opacity 0.12s ease;
  min-height: 34px;
}
.bag-express:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px -8px rgba(42, 34, 24, 0.32);
}
/* Apple Pay button: black bg, white   Pay mark using inline SVG (the official
   Apple silhouette path), with the "Pay" text in San Francisco / system stack. */
.bag-express-apple {
  background: #000;
  color: #fff;
}
.bag-express-apple-svg {
  width: 18px;
  height: 18px;
  margin-right: 4px;
  flex: 0 0 18px;
}
.bag-express-paytxt {
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue",
    Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.2px;
}
/* TWINT: black bg, magenta wordmark — TWINT's official two-tone treatment. */
.bag-express-twint {
  background: #000;
}
.bag-express-twint-mark {
  color: #ff0066;
  font-family: "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
/* PayPal: yellow #FFC439 bg, two-tone PayPal lockup — "Pay" dark blue,
   "Pal" light blue, italic — matches PayPal's brand mark. */
.bag-express-paypal {
  background: #ffc439;
}
.bag-express-paypal-mark {
  font-family: "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.bag-express-paypal-mark .pp-pay {
  color: #003087;
}
.bag-express-paypal-mark .pp-pal {
  color: #009cde;
}
/* Legacy classes — kept hidden in case of cached HTML */
.bag-express-applemark,
.bag-express-glyph,
.bag-express-twint-dot,
.bag-express-paypal-glyph {
  display: none;
}
.bag-or-divider {
  position: relative;
  text-align: center;
  margin: 8px 0 12px;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.bag-or-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--hair);
  z-index: 0;
}
.bag-or-divider span {
  position: relative;
  z-index: 1;
  background: var(--cream);
  padding: 0 12px;
}

/* Empty-cart suggestions — Set Active pattern */
.bag-empty-suggest {
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--hair);
}
.bag-empty-suggest-h {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blush-deep);
  font-weight: 500;
  text-align: center;
  margin-bottom: 14px;
}
/* Empty bag — peek-carousel of suggestions (Adanola pattern).
   Replaces the previous 1:1 stacked grid that required lots of scrolling.
   Each card is vertical: thumb on top, name + price + big + button below. */
.bag-empty-suggest-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 64%;
  gap: 12px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 0 8px;
  margin: 0 -4px;
}
.bag-empty-suggest-grid::-webkit-scrollbar {
  display: none;
}
.bag-empty-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  min-width: 0;
}
.bag-empty-thumb {
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--blush-soft);
}
.bag-empty-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bag-empty-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px 12px;
  min-width: 0;
}
.bag-empty-meta > div:first-child {
  min-width: 0;
  flex: 1;
}
.bag-empty-name {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.005em;
  display: block;
  color: var(--ink);
  line-height: 1.2;
  font-variation-settings: "opsz" 144;
}
.bag-empty-price {
  font-size: 12px;
  color: var(--mute);
  margin-top: 4px;
}
/* Bigger + button — proper 44px tap target (Apple HIG / WCAG minimum) */
.bag-empty-add {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  border: 0;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bag-empty-add:hover,
.bag-empty-add:active {
  background: var(--blush-deep);
  transform: scale(1.06);
}

/* ============ CART PAYMENT TRUST STRIP (Adanola pattern, Swiss-friendly) ============ */
.bag-payment-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 0;
  border-top: 1px solid var(--hair);
  margin-top: 10px;
}
.bag-pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 7px;
  border-radius: 3px;
  background: #fff;
  border: 1px solid var(--hair);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--ink);
  cursor: default;
  user-select: none;
}
.bag-pay-visa {
  color: #1a1f71;
  font-style: italic;
  letter-spacing: 0.06em;
  font-weight: 800;
}
.bag-pay-mc {
  gap: 0;
  padding: 0 6px;
  position: relative;
}
.bag-pay-mc-a,
.bag-pay-mc-b {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.bag-pay-mc-a {
  background: #eb001b;
}
.bag-pay-mc-b {
  background: #f79e1b;
  margin-left: -5px;
  mix-blend-mode: multiply;
}
.bag-pay-apple {
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue",
    Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: -0.1px;
  background: #000;
  color: #fff;
  border-color: #000;
  gap: 2px;
  padding: 0 8px;
}
.bag-pay-apple-svg {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}
.bag-pay-apple-txt {
  font-size: 11.5px;
  line-height: 1;
}
.bag-pay-twint {
  background: #000;
  color: #ff0066;
  border-color: #000;
  font-family: "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.bag-pay-klarna {
  background: #ffa8cd;
  color: #17120f;
  border-color: #ffa8cd;
  font-family: "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.2px;
  font-size: 12px;
}
.bag-pay-klarna-dot {
  color: #17120f;
  font-weight: 700;
}

/* ============ PDP REVIEWS BLOCK ============ */
.pdp-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 13.5px;
}
.pdp-rating-stars {
  position: relative;
  font-size: 16px;
  letter-spacing: 1px;
  color: rgba(42, 34, 24, 0.18);
}
.pdp-rating-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--butter-deep);
}
.pdp-rating-num {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.pdp-rating-count {
  color: var(--blush-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 13px;
}

section.pdp-reviews {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 56px;
  border-top: 1px solid var(--hair);
}
.pdp-reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.pdp-reviews-head .eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blush-deep);
  font-weight: 500;
}
.pdp-reviews-head h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 8px;
}
.pdp-reviews-head h2 em {
  font-style: italic;
  color: var(--blush-deep);
}
.pdp-reviews-head h2 .rev-of {
  color: var(--mute);
  font-size: 0.55em;
  letter-spacing: 0.1em;
  vertical-align: middle;
  margin-left: 4px;
}
.pdp-reviews-write {
  border: 1px solid var(--ink);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  transition:
    background 0.2s,
    color 0.2s;
}
.pdp-reviews-write:hover {
  background: var(--ink);
  color: var(--cream);
}

/* Legacy 4-row chip filter — replaced by single .rev-filter row. Kept hidden
   in case of cached HTML so old markup never re-appears as bare buttons. */
.rev-chip-rows,
.rev-chip-row,
.rev-chip-label,
.rev-chip-list {
  display: none;
}
.rev-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 22px 0 24px;
}
.rev-chip {
  background: transparent;
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 7px 14px;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.06em;
  cursor: pointer;
  color: var(--ink-2);
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
}
.rev-chip:hover {
  border-color: var(--ink-2);
}
.rev-chip.is-active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.pdp-reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
}
.rev-card {
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: 4px;
  padding: 22px 22px 18px;
  transition: box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rev-card:hover {
  box-shadow: 0 8px 24px -16px rgba(42, 34, 24, 0.16);
}
.rev-card.has-photo {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 18px;
}
.rev-photo {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--blush-soft);
  align-self: start;
}
.rev-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.rev-photo:hover img {
  transform: scale(1.04);
}
.rev-card-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.rev-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.rev-head-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.rev-head-meta strong {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.rev-city {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.rev-stars {
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--butter-deep);
  flex: 0 0 auto;
}
.rev-title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  margin-top: 14px;
  letter-spacing: -0.008em;
  line-height: 1.25;
}
.rev-body {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.62;
}
.rev-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--hair);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--mute);
}
.rev-foot strong {
  color: var(--ink-2);
  font-weight: 500;
  margin-left: 4px;
}
.rev-foot .rev-verified {
  color: var(--blush-deep);
  font-weight: 500;
  margin-left: auto;
}
.pdp-reviews-empty {
  text-align: center;
  padding: 32px 20px;
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: 4px;
  color: var(--ink-2);
  font-size: 15px;
}
.pdp-reviews-empty .rev-clear {
  margin-left: 6px;
  background: transparent;
  border: 1px solid var(--ink);
  padding: 6px 14px;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
}

@media (max-width: 720px) {
  section.pdp-reviews {
    padding: 48px 24px;
  }
  .pdp-reviews-list {
    grid-template-columns: 1fr;
  }
  .rev-foot .rev-verified {
    margin-left: 0;
    flex-basis: 100%;
  }
  .rev-card.has-photo {
    grid-template-columns: 88px 1fr;
    gap: 14px;
    padding: 14px;
  }
}

/* Length axis (two-axis grid for leggings) — Adanola pattern */
.length-row {
  margin-top: 0;
}
.length-btn {
  min-width: 110px;
  padding: 12px 16px;
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: 999px;
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  letter-spacing: 0.02em;
}
.length-btn:hover {
  border-color: var(--ink);
}
.length-btn.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.length-btn[disabled] {
  color: var(--mute);
  cursor: not-allowed;
  opacity: 0.5;
}

.qty-add {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  margin-top: 36px;
}
.qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 0 14px;
}
.qty button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  width: 24px;
  height: 48px;
  color: var(--ink);
}
.qty span {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
}
.add-cta {
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  padding: 16px 28px;
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.25s;
}
.add-cta:hover {
  background: var(--blush-deep);
  transform: translateY(-1px);
}
.add-cta.added {
  background: var(--blush-deep);
}
.buy-now {
  grid-column: 1 / -1;
  background: var(--butter);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  padding: 16px;
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s;
}
.buy-now:hover {
  background: var(--butter-deep);
}

details {
  margin-top: 18px;
  border-bottom: 1px solid var(--hair);
  padding: 16px 0;
}
details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}
/* Wrap the summary text so the flex parent treats it as ONE item — without
   this, the text + <sup>™</sup> + " & care" become 3 separate flex items
   and space-between shoves them into wide columns (Buttersoft -- ™ -- & CARE). */
details summary > .summary-label {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}
details summary .summary-label sup {
  font-size: 0.6em;
  vertical-align: super;
  margin-right: 0.18em;
  letter-spacing: 0;
}
/* Brand-fit bullet icons (line-art, no AI slop) */
details ul {
  list-style: none;
  margin-top: 14px;
  padding-left: 0;
}
details ul li {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 10px;
  line-height: 1.55;
}
details ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 18px 18px;
  opacity: 0.85;
}
/* Composition (% recycled) — circular loop */
details ul li.li-recycle::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DC8A99' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M7 7.5l1.7-2.8A2 2 0 0 1 10.5 4h3a2 2 0 0 1 1.8 1l3 5.2'/><path d='M17 16.5L15.3 19.2A2 2 0 0 1 13.5 20h-3a2 2 0 0 1-1.8-1l-3-5.2'/><path d='M14 7.5l3 0 0 3'/><path d='M10 16.5l-3 0 0-3'/></svg>");
}
/* Four-way stretch — bidirectional arrows */
details ul li.li-stretch::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DC8A99' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M3 12h18'/><path d='M6 9l-3 3 3 3'/><path d='M18 9l3 3-3 3'/><path d='M12 3v18'/><path d='M9 6l3-3 3 3'/><path d='M9 18l3 3 3-3'/></svg>");
}
/* Cold wash — snowflake / temperature */
details ul li.li-cold::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DC8A99' stroke-width='1.6' stroke-linecap='round'><path d='M12 3v18'/><path d='M3 12h18'/><path d='M5.6 5.6l12.8 12.8'/><path d='M18.4 5.6L5.6 18.4'/></svg>");
}
/* Made in — pin / marker */
details ul li.li-origin::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DC8A99' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M12 21s7-7.5 7-12a7 7 0 0 0-14 0c0 4.5 7 12 7 12z'/><circle cx='12' cy='9' r='2.5'/></svg>");
}
details summary::-webkit-details-marker {
  display: none;
}
details summary::after {
  content: "+";
  font-family: var(--display);
  font-size: 20px;
  transition: transform 0.25s;
}
details[open] summary::after {
  transform: rotate(45deg);
}
details p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-top: 14px;
}
details ul {
  margin-top: 14px;
  padding-left: 20px;
}
details ul li {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 6px;
}

.delivery-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  padding: 18px;
  background: var(--bone);
  border-radius: 12px;
  border: 1px solid var(--hair);
}
.delivery-meta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.delivery-meta dt {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
}
.delivery-meta dd {
  font-family: var(--display);
  font-size: 14px;
  font-variation-settings: "opsz" 144;
}

section.related {
  max-width: 1400px;
  margin: 0 auto;
  padding: 96px 56px;
  border-top: 1px solid var(--hair);
}
.related h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 300;
  letter-spacing: -0.018em;
  margin-bottom: 56px;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 30;
}
.related h3 em {
  font-style: italic;
  color: var(--blush-deep);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.rel-product {
  cursor: pointer;
}
.rel-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  background: var(--blush-soft);
}
.rel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.rel-product:hover .rel-photo img {
  transform: scale(1.04);
}
.rel-meta {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: baseline;
}
.rel-name {
  font-family: var(--display);
  font-size: 17px;
  font-variation-settings: "opsz" 144;
}
.rel-price {
  font-size: 13px;
  font-weight: 500;
}

footer.bottom {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 56px 36px;
}
.footer-row {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-row img {
  width: 56px;
  height: 56px;
}
.footer-row .word {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.32em;
  color: var(--cream);
  font-variation-settings: "opsz" 144;
}
.footer-row p {
  font-size: 13px;
  color: rgba(251, 245, 230, 0.6);
  max-width: 36ch;
}
.footer-row a {
  color: var(--cream);
  border-bottom: 1px solid rgba(251, 245, 230, 0.3);
  padding-bottom: 3px;
  font-size: 13px;
}
.footer-row a:hover {
  color: var(--butter);
  border-color: var(--butter);
}

/* BAG DRAWER */
.bag-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(42, 34, 24, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 100;
}
.bag-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.bag-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  max-height: 100dvh;
  background: var(--cream);
  z-index: 101;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px -20px rgba(42, 34, 24, 0.3);
  overflow: hidden;
}
.bag-drawer.open {
  transform: translateX(0);
}
.bag-head {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--hair);
}
.bag-head h4 {
  font-family: var(--display);
  font-size: 22px;
  font-variation-settings: "opsz" 144;
}
.bag-head h4 em {
  font-style: italic;
  color: var(--blush-deep);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.bag-close {
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
}
.bag-items {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 28px;
}
/* ============ BAG · empty state ============ */
.bag-empty {
  padding: 88px 8px 48px;
  text-align: center;
  color: var(--ink-2);
}
.bag-empty-title {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 30;
}
.bag-empty-title em {
  font-style: italic;
  color: var(--blush-deep);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.bag-empty-sub {
  margin-top: 10px;
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--mute);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.bag-empty-cta {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 22px;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s;
}
.bag-empty-cta:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ============ BAG · line items ============ */
.bag-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(42, 34, 24, 0.08);
  align-items: stretch;
}
.bag-item:last-child {
  border-bottom: 0;
}
.bag-item-thumb {
  display: block;
  width: 88px;
  height: 110px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bone);
}
.bag-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bag-item-thumb:hover img {
  transform: scale(1.05);
}
.bag-item-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.bag-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.bag-item-name {
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-decoration: none;
  font-variation-settings: "opsz" 144;
  flex: 1;
  min-width: 0;
  text-wrap: balance;
}
.bag-item-name:hover {
  color: var(--blush-deep);
}
.bag-item-remove {
  background: transparent;
  border: 0;
  color: var(--mute);
  font-size: 22px;
  line-height: 1;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  cursor: pointer;
  flex: 0 0 auto;
  transition:
    background 0.2s,
    color 0.2s;
  margin-top: -4px;
}
.bag-item-remove:hover {
  background: rgba(42, 34, 24, 0.06);
  color: var(--ink);
}
.bag-item-meta {
  margin-top: 4px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.bag-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  gap: 12px;
}
.bag-item-price {
  font-family: var(--display);
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  font-variant-numeric: tabular-nums;
}

/* ============ BAG · stepper ============ */
.bag-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--hair);
  border-radius: 999px;
  padding: 2px;
  background: var(--bone);
}
.bag-stepper-btn {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.bag-stepper-btn:hover {
  background: var(--cream);
}
.bag-stepper-val {
  min-width: 24px;
  text-align: center;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

/* ============ BAG · footer / summary / checkout ============ */
.bag-foot {
  flex: 0 0 auto;
  padding: 14px 28px 18px;
  border-top: 1px solid var(--hair);
  background: var(--cream);
  max-height: 60vh;
  overflow-y: auto;
}
.bag-summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}
/* Single-row total: no need for the dashed divider line above */
.bag-summary--compact .bag-summary-total {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.bag-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}
.bag-summary-row > span:first-child {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 10.5px;
  color: var(--mute);
  font-weight: 500;
}
.bag-summary-ship .ship-free {
  color: var(--blush-deep);
  font-weight: 500;
}
.bag-summary-total {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px dashed var(--hair);
}
.bag-summary-total > span:first-child {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.bag-summary-total > span:last-child {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.bag-checkout {
  width: 100%;
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 13px 22px;
  font-family: var(--body);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition:
    background 0.25s,
    transform 0.15s;
}
.bag-checkout:hover {
  background: var(--blush-deep);
}
.bag-checkout:active {
  transform: scale(0.985);
}
.bag-checkout-label {
  letter-spacing: 0.24em;
}
.bag-checkout-amount {
  font-family: var(--display);
  font-size: 14.5px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  font-variant-numeric: tabular-nums;
}
.bag-fineprint {
  margin: 8px 0 0 0;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: var(--mute);
  font-weight: 500;
}
/* Legacy "or pay with card" divider removed from the rendered foot — kept
   hidden for cached HTML safety. */
.bag-or-divider {
  display: none;
}

.bag-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--blush-deep);
  color: var(--cream);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  margin-left: 6px;
}
.bag-count[data-count="0"] {
  display: none;
}

/* ============ BAG DRAWER · mobile responsive tightening ============
   Pre-fix: bag-foot grew to ~600px (cross-sell + progress + summary +
   express-pay + checkout + payment-trust + fineprint), squeezing items
   off-screen on 375×812 phones. Cross-sell is now in bag-items (scrolls
   with items). This block tightens what remains. */
@media (max-width: 540px) {
  .bag-head {
    padding: 18px 20px;
  }
  .bag-head h4 {
    font-size: 20px;
  }
  .bag-items {
    padding: 0 20px;
  }
  .bag-progress-host {
    padding: 12px 20px 14px;
  }
  .bag-foot {
    padding: 16px 20px 22px;
    max-height: 50vh;
  }
  .bag-progress {
    margin-bottom: 12px;
  }
  .bag-summary {
    margin-bottom: 14px;
    gap: 4px;
  }
  .bag-summary-total {
    margin-top: 4px;
    padding-top: 8px;
  }
  .bag-summary-total > span:first-child {
    font-size: 16px;
  }
  .bag-summary-total > span:last-child {
    font-size: 19px;
  }
  .bag-express-pay {
    gap: 6px;
    margin-bottom: 10px;
  }
  .bag-express {
    padding: 10px 6px;
    font-size: 11.5px;
    min-height: 36px;
  }
  .bag-or-divider {
    margin: 6px 0 10px;
    font-size: 10px;
  }
  .bag-checkout {
    padding: 14px 18px;
  }
  .bag-payment-trust {
    margin-top: 10px;
    gap: 6px;
  }
  .bag-payment-trust .bag-pay {
    font-size: 9.5px;
  }
  .bag-fineprint {
    font-size: 9.5px;
    margin-top: 10px;
  }
  /* Cross-sell in items area: tighten gap so it doesn't visually merge with last bag-item */
  .bag-items .bag-crosssell {
    margin-top: 16px;
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--hair);
    border-bottom: none;
    padding-bottom: 0;
  }
}
/* Override base .bag-crosssell when inside bag-items (any width) — top divider, no bottom */
.bag-items .bag-crosssell {
  border-bottom: none;
  padding-bottom: 0;
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px dashed var(--hair);
}

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 13px;
  z-index: 110;
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.3s;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1100px) {
  section.product-detail {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .gallery {
    position: static;
  }
}
@media (max-width: 640px) {
  nav.top {
    padding: 14px 20px;
    grid-template-columns: 1fr auto;
  }
  .nav-left,
  .nav-right a:not(.bag) {
    display: none;
  }
  .nav-logo .word {
    display: none;
  }
  section.product-detail,
  .crumbs,
  section.related {
    padding-left: 24px;
    padding-right: 24px;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .info h1 {
    font-size: 36px;
  }
  .qty-add {
    grid-template-columns: 1fr;
  }
  .delivery-meta {
    grid-template-columns: 1fr;
  }
}

/* ============ STUDIO STRIP (product page · IG content) ============ */
section.studio-strip {
  max-width: 1400px;
  margin: 0 auto;
  padding: 96px 56px 24px;
}
.studio-strip-head {
  margin-bottom: 36px;
  max-width: 720px;
}
.studio-strip-head .eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blush-deep);
  font-weight: 500;
}
.studio-strip-head h3 {
  margin-top: 12px;
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 30;
}
.studio-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.studio-strip-tile {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bone);
  text-decoration: none;
  color: var(--cream);
}
.studio-strip-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 34, 24, 0.42) 0%,
    rgba(42, 34, 24, 0.12) 30%,
    transparent 50%
  );
  pointer-events: none;
  z-index: 1;
}
.studio-strip-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.studio-strip-tile:hover .studio-strip-video {
  transform: scale(1.04);
}
.studio-strip-handle {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
/* Caption block — quote + handle on top of each tile */
.studio-strip-caption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 18px 16px 14px;
  background: linear-gradient(
    180deg,
    rgba(20, 14, 6, 0) 0%,
    rgba(20, 14, 6, 0.62) 60%,
    rgba(20, 14, 6, 0.85) 100%
  );
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.studio-strip-caption .studio-strip-handle {
  position: static;
  text-shadow: none;
  color: rgba(251, 245, 230, 0.78);
}
.studio-strip-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.3;
  color: var(--cream);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
  text-wrap: balance;
}
.studio-strip-sub {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-top: 8px;
  max-width: 56ch;
}
.studio-strip-cta {
  display: inline-block;
  margin-top: 28px;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: color 0.25s;
}
.studio-strip-cta em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 13px;
  color: var(--blush-deep);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.studio-strip-cta:hover {
  color: var(--blush-deep);
}

@media (max-width: 980px) {
  section.studio-strip {
    padding: 64px 32px 16px;
  }
  .studio-strip-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media (max-width: 540px) {
  section.studio-strip {
    padding: 48px 20px 12px;
  }
  .studio-strip-grid {
    grid-template-columns: 1fr 1fr;
  }
  .studio-strip-tile:last-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
}
@media (prefers-reduced-motion: reduce) {
  .studio-strip-video {
    transition: none;
  }
}

/* ============ STICKY BOTTOM ADD-TO-BAG (mobile PDP only) ============
   Two-row layout: top row is thumb + name/price + Add CTA;
   bottom row is a tiny trust microcopy strip (size, free-shipping,
   returns). Slides up from bottom when user scrolls past hero. */
.pdp-sticky-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(251, 245, 230, 0.97);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(42, 34, 24, 0.08);
  border-radius: 18px;
  box-shadow:
    0 18px 36px -8px rgba(42, 34, 24, 0.18),
    0 4px 12px -2px rgba(42, 34, 24, 0.08);
  transform: translateY(160%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pdp-sticky-bar.is-visible {
  transform: translateY(0);
}
@media (max-width: 860px) {
  .pdp-sticky-bar {
    display: flex;
  }
}
.pdp-sticky-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pdp-sticky-thumb {
  display: block;
  flex: 0 0 auto;
  width: 52px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bone);
  border: 1px solid var(--hair);
}
.pdp-sticky-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-sticky-meta {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pdp-sticky-name {
  font-family: var(--display);
  font-size: 14.5px;
  line-height: 1.15;
  font-weight: 500;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pdp-sticky-price {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  font-variation-settings: "opsz" 144;
  font-variant-numeric: tabular-nums;
}
.pdp-sticky-cta {
  flex: 0 0 auto;
  border: 0;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: var(--body);
  white-space: nowrap;
  transition:
    background 0.25s,
    transform 0.15s,
    box-shadow 0.25s;
  box-shadow: 0 4px 14px -4px rgba(42, 34, 24, 0.4);
}
.pdp-sticky-cta:hover {
  background: var(--blush-deep);
  box-shadow: 0 6px 18px -4px rgba(220, 138, 153, 0.5);
}
.pdp-sticky-cta:active {
  transform: scale(0.97);
}
.pdp-sticky-cta-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.pdp-sticky-cta-arrow {
  font-size: 14px;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pdp-sticky-cta:hover .pdp-sticky-cta-arrow {
  transform: translateX(3px);
}
/* Trust microcopy strip — tiny pills with dot separators */
.pdp-sticky-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  flex-wrap: wrap;
}
.pdp-sticky-trust-pill {
  white-space: nowrap;
}
.pdp-sticky-trust-pill strong {
  color: var(--ink);
  font-weight: 600;
}
.pdp-sticky-trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--mute);
  opacity: 0.5;
  flex: 0 0 auto;
}
.pdp-sticky-trust-ok {
  color: var(--blush-deep) !important;
  font-weight: 600;
}
@media (max-width: 380px) {
  .pdp-sticky-trust {
    font-size: 9px;
    gap: 6px;
  }
  .pdp-sticky-cta-label {
    font-size: 11px;
    letter-spacing: 0.16em;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pdp-sticky-bar {
    transition: opacity 0.2s;
  }
  .pdp-sticky-cta-arrow {
    transition: none;
  }
}

/* ============ CART · free-shipping progress bar ============ */
/* Top progress host — pinned right below .bag-head, above the scrollable
   .bag-items list. Keeps the free-shipping signal visible no matter how
   long the bag is. Hidden when bag is empty. */
.bag-progress-host {
  flex: 0 0 auto;
  padding: 14px 28px 16px;
  border-bottom: 1px solid var(--hair);
  background: var(--cream);
}
.bag-progress-host:empty {
  display: none;
}
.bag-progress-host .bag-progress {
  margin: 0;
}
.bag-progress {
  margin-bottom: 18px;
}
.bag-progress-track {
  position: relative;
  height: 4px;
  background: rgba(42, 34, 24, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.bag-progress-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--butter), var(--blush-deep));
  border-radius: 999px;
  width: 0%;
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bag-progress.is-unlocked .bag-progress-fill {
  background: linear-gradient(90deg, var(--butter), var(--butter-deep));
}
.bag-progress-note {
  margin: 8px 0 0 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.bag-progress.is-unlocked .bag-progress-note {
  color: var(--blush-deep);
  font-weight: 600;
}

/* ============ CART · "Goes with" cross-sell ============ */
.bag-crosssell {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--hair);
}
.bag-crosssell-h {
  margin: 0 0 10px 0;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: none;
  font-variation-settings: "opsz" 144;
}
.bag-crosssell-h em {
  font-style: italic;
  color: var(--blush-deep);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.bag-crosssell-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bag-crosssell-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px;
  background: var(--bone);
  border-radius: 10px;
  border: 1px solid rgba(42, 34, 24, 0.06);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.bag-crosssell-card:hover {
  border-color: var(--hair);
  background: var(--cream);
}
.bag-crosssell-thumb {
  display: block;
  width: 56px;
  height: 70px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--blush-soft);
}
.bag-crosssell-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bag-crosssell-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bag-crosssell-name {
  font-family: var(--display);
  font-size: 13.5px;
  line-height: 1.25;
  color: var(--ink);
  text-decoration: none;
  font-variation-settings: "opsz" 144;
  text-wrap: balance;
}
.bag-crosssell-name:hover {
  color: var(--blush-deep);
}
.bag-crosssell-price {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.bag-crosssell-add {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.bag-crosssell-add:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ============ PDP · "Complete the Set" module ============ */
section.pdp-complete-set {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 56px 32px;
}
.pdp-complete-set-head {
  margin-bottom: 36px;
  max-width: 720px;
}
.pdp-complete-set-head .eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blush-deep);
  font-weight: 500;
}
.pdp-complete-set-head h2 {
  margin-top: 12px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.014em;
  color: var(--ink);
  text-wrap: balance;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 30;
}
.pdp-complete-set-head h2 em {
  font-style: italic;
  color: var(--blush-deep);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.pdp-complete-set-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pdp-complete-set-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
  background: var(--bone);
  border-radius: 6px;
  border: 1px solid rgba(42, 34, 24, 0.06);
  transition:
    border-color 0.25s,
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.25s;
}
.pdp-complete-set-card:hover {
  border-color: var(--hair);
  transform: translateY(-3px);
  box-shadow: 0 18px 42px -18px rgba(42, 34, 24, 0.22);
}
.pdp-complete-set-photo {
  display: block;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--blush-soft);
}
.pdp-complete-set-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pdp-complete-set-card:hover .pdp-complete-set-photo img {
  transform: scale(1.05);
}
.pdp-complete-set-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-top: 2px;
}
.pdp-complete-set-name {
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.2;
  color: var(--ink);
  text-decoration: none;
  font-variation-settings: "opsz" 144;
  flex: 1;
  min-width: 0;
}
.pdp-complete-set-name:hover {
  color: var(--blush-deep);
}
.pdp-complete-set-price {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
}
.pdp-complete-set-add {
  width: 100%;
  margin-top: 4px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    background 0.25s,
    color 0.25s;
}
.pdp-complete-set-add:hover {
  background: var(--ink);
  color: var(--cream);
}
.pdp-complete-set-add.added {
  background: var(--blush-deep);
  color: var(--cream);
  border-color: var(--blush-deep);
}
.pdp-complete-set-arrow {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}
@media (max-width: 980px) {
  section.pdp-complete-set {
    padding: 56px 32px 24px;
  }
  .pdp-complete-set-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .pdp-complete-set-grid > .pdp-complete-set-card:nth-child(3) {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }
  .pdp-complete-set-grid
    > .pdp-complete-set-card:nth-child(3)
    .pdp-complete-set-photo {
    width: 100px;
    flex: 0 0 auto;
    aspect-ratio: 4/5;
  }
  .pdp-complete-set-grid
    > .pdp-complete-set-card:nth-child(3)
    .pdp-complete-set-meta,
  .pdp-complete-set-grid
    > .pdp-complete-set-card:nth-child(3)
    .pdp-complete-set-add {
    flex: 1 1 auto;
  }
}
@media (max-width: 540px) {
  section.pdp-complete-set {
    padding: 48px 20px 16px;
  }
  .pdp-complete-set-grid {
    grid-template-columns: 1fr;
  }
  .pdp-complete-set-grid > .pdp-complete-set-card:nth-child(3) {
    flex-direction: column;
    align-items: stretch;
  }
  .pdp-complete-set-grid
    > .pdp-complete-set-card:nth-child(3)
    .pdp-complete-set-photo {
    width: 100%;
  }
}

/* ============ BUTTERSOFT STRIP (PDP fabric callout) ============ */
.buttersoft-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 6px;
  padding: 14px 18px;
  background: linear-gradient(
    135deg,
    rgba(244, 216, 112, 0.18),
    rgba(245, 201, 207, 0.18)
  );
  border: 1px solid var(--hair);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.buttersoft-strip:hover {
  border-color: var(--blush-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -16px rgba(220, 138, 153, 0.32);
}
.buttersoft-strip-glyph {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: var(--butter);
  color: var(--ink);
  font-family: var(--display);
  font-size: 36px;
  font-weight: 600;
  line-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.04em;
}
.buttersoft-strip-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.buttersoft-strip-title {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-weight: 500;
}
.buttersoft-strip-title strong {
  font-family: var(--display);
  font-weight: 500;
}
.buttersoft-strip-title sup {
  font-size: 0.6em;
  vertical-align: super;
  color: var(--mute);
}
.buttersoft-strip-sub {
  font-size: 12.5px;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  margin-top: 2px;
}

/* Mobile-nav trigger fallback when shipped on pages that load shop.css */
.mobile-nav-trigger {
  display: none;
}
@media (max-width: 860px) {
  .mobile-nav-trigger {
    display: inline-flex;
  }
}

/* ============ HOMEPAGE BUTTERSOFT BAND ============ */
.home-buttersoft-band {
  max-width: 1280px;
  margin: 32px auto 0;
  padding: 28px 56px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(
    135deg,
    rgba(244, 216, 112, 0.22),
    rgba(245, 201, 207, 0.22)
  );
  border: 1px solid var(--hair);
  border-radius: 6px;
  flex-wrap: wrap;
}
.home-buttersoft-band .badge-coin {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 50%;
  background: var(--butter);
  color: var(--ink);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.04em;
}
.home-buttersoft-band .home-buttersoft-band-text {
  flex: 1;
  min-width: 240px;
}
.home-buttersoft-band .eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blush-deep);
  font-weight: 500;
}
.home-buttersoft-band h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  margin-top: 6px;
  letter-spacing: -0.012em;
  line-height: 1.25;
}
.home-buttersoft-band h3 em {
  font-style: italic;
  color: var(--blush-deep);
}
.home-buttersoft-band h3 sup {
  font-size: 0.45em;
  vertical-align: super;
  color: var(--mute);
}
.home-buttersoft-band p {
  margin-top: 4px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 56ch;
}
.home-buttersoft-band-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 14px 22px;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  flex: 0 0 auto;
  text-decoration: none;
  transition: background 0.18s ease;
}
.home-buttersoft-band-cta:hover {
  background: var(--blush-deep);
}
@media (max-width: 720px) {
  .home-buttersoft-band {
    padding: 20px 24px;
  }
}

/* ============ JOURNAL · INDEX + LONG-FORM POSTS ============
   Beyond Yoga TV / Outdoor Voices Recreationalist pattern: editorial
   publication living at /journal/. */
.journal-page {
  background: var(--cream);
}
.journal-index-hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 56px 24px;
  text-align: center;
  border-bottom: 1px solid var(--hair);
}
.journal-index-hero .eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blush-deep);
  font-weight: 500;
}
.journal-index-hero h1 {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 110px);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.022em;
  margin-top: 18px;
  text-wrap: balance;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 30;
}
.journal-index-hero h1 em {
  font-style: italic;
  color: var(--blush-deep);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.journal-index-hero p {
  margin: 22px auto 36px;
  max-width: 56ch;
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.65;
  text-wrap: pretty;
}
.journal-index-grid {
  max-width: 1280px;
  margin: 56px auto 0;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 32px;
}
.journal-index-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.journal-index-card .article-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--blush-soft);
}
.journal-index-card .article-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.journal-index-card:hover .article-photo img {
  transform: scale(1.04);
}
.journal-index-card .article-meta {
  margin-top: 20px;
}
.journal-index-card .article-tag {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blush-deep);
  font-weight: 500;
}
.journal-index-card h2 {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.12;
  font-weight: 400;
  margin-top: 8px;
  letter-spacing: -0.01em;
  text-wrap: balance;
  font-variation-settings: "opsz" 144;
}
.journal-index-card h2 em {
  font-style: italic;
  color: var(--blush-deep);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.journal-index-card .article-excerpt {
  font-size: 14.5px;
  color: var(--ink-2);
  margin-top: 12px;
  line-height: 1.6;
  text-wrap: pretty;
}
.journal-index-card .article-date {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 14px;
  font-weight: 500;
}
@media (max-width: 1100px) {
  .journal-index-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 32px;
  }
  .journal-index-hero {
    padding: 48px 32px 24px;
  }
}
@media (max-width: 720px) {
  .journal-index-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    padding: 0 24px;
  }
  .journal-index-hero {
    padding: 36px 24px 20px;
  }
}

/* ===== POST PAGE ===== */
article.journal-post {
  background: var(--cream);
}
.journal-post-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 56px 0;
}
.journal-post-hero .crumbs {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  padding: 0 0 24px;
}
.journal-post-hero .crumbs a {
  color: var(--mute);
  text-decoration: none;
}
.journal-post-hero .crumbs a:hover {
  color: var(--ink);
}
.journal-post-hero .crumbs span {
  margin: 0 10px;
}
.journal-post-hero .article-tag {
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blush-deep);
  font-weight: 500;
}
.journal-post-hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 5.6vw, 76px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.022em;
  margin-top: 14px;
  max-width: 22ch;
  text-wrap: balance;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 30;
}
.journal-post-hero h1 em {
  font-style: italic;
  color: var(--blush-deep);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.journal-post-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hair);
}
.journal-post-byline .author {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.journal-post-byline .dateline {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.journal-post-cover {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 56px 0;
}
.journal-post-cover img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
}
.journal-post-body {
  max-width: 680px;
  margin: 56px auto 0;
  padding: 0 32px;
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
}
.journal-post-body > p {
  margin: 0 0 24px;
  text-wrap: pretty;
}
.journal-post-body > p.lede {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-2);
  line-height: 1.5;
  margin-bottom: 36px;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.journal-post-body h2 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 56px 0 16px;
  font-variation-settings: "opsz" 144;
}
.journal-post-body h2 em {
  font-style: italic;
  color: var(--blush-deep);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.journal-post-body .pull {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.25;
  color: var(--ink);
  margin: 56px -32px;
  padding: 32px 32px;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  text-wrap: balance;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.journal-post-body .pull em {
  color: var(--blush-deep);
}
.journal-post-body ul,
.journal-post-body ol {
  margin: 0 0 24px;
  padding-left: 22px;
}
.journal-post-body ul li,
.journal-post-body ol li {
  margin: 8px 0;
}
.journal-post-body img {
  width: 100%;
  border-radius: 4px;
  margin: 36px 0;
}
.journal-post-sig {
  font-family: var(--script);
  font-size: 56px;
  line-height: 1;
  color: var(--blush-deep);
  margin-top: 36px;
}
.journal-post-related {
  max-width: 1280px;
  margin: 96px auto 0;
  padding: 56px 56px 0;
  border-top: 1px solid var(--hair);
}
.journal-post-related h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  margin-bottom: 32px;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 30;
}
.journal-post-related h3 em {
  font-style: italic;
  color: var(--blush-deep);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.journal-post-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1100px) {
  .journal-post-hero,
  .journal-post-cover,
  .journal-post-related {
    padding-left: 32px;
    padding-right: 32px;
  }
  .journal-post-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .journal-post-hero,
  .journal-post-cover,
  .journal-post-related {
    padding-left: 24px;
    padding-right: 24px;
  }
  .journal-post-body {
    padding: 0 24px;
    font-size: 16.5px;
  }
  .journal-post-body .pull {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .journal-post-related-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* journal "from the journal" linked card on /about-leila/ */
.article a.article-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ============ GLOBAL FOOTER (footer-grid + footer-fine variants) ============
   Standardised footer styling — used by /journal/, /journal/<slug>/, /events/,
   /shop/<slug>/, /about-leila/, and the homepage. Both `.footer-row` (older) and
   `.footer-grid` (newer) markup are supported. Dark butter+ink color story. */
footer.bottom {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 56px 40px;
  margin-top: 96px;
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(251, 245, 230, 0.12);
}
.footer-grid > div {
  min-width: 0;
}
.footer-brand img {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
}
.footer-brand .word {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.32em;
  color: var(--cream);
  font-variation-settings: "opsz" 144;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(251, 245, 230, 0.6);
  margin-top: 18px;
  line-height: 1.6;
  max-width: 36ch;
}
footer.bottom h5 {
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(251, 245, 230, 0.55);
  margin-bottom: 22px;
  font-weight: 500;
}
footer.bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer.bottom ul li {
  margin-bottom: 11px;
}
footer.bottom ul li a {
  color: var(--cream);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.25s;
}
footer.bottom ul li a:hover {
  color: var(--butter);
}
.footer-bottom,
.footer-fine {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251, 245, 230, 0.5);
}
.footer-fine {
  grid-template-columns: 1fr 1fr;
}
.footer-bottom > :last-child,
.footer-fine > :last-child {
  text-align: right;
}
.footer-bottom .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--butter);
}
@media (max-width: 1100px) {
  footer.bottom {
    padding: 60px 32px 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  footer.bottom {
    padding: 48px 24px 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 36px;
  }
  .footer-bottom,
  .footer-fine {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
    padding-top: 24px;
  }
  .footer-bottom > :last-child,
  .footer-fine > :last-child {
    text-align: left;
  }
}

/* =========================================================================
   GLOBAL MOBILE EDGE PADDING (every sub-page using shop.css)
   Brings nav, crumbs, sections, and content blocks into consistent 20px
   gutter — no more flush-to-edge content. Matches homepage @640px rules.
   ========================================================================= */
@media (max-width: 720px) {
  nav.top {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .crumbs {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  section.product-detail,
  section.shop,
  section.club-shell,
  section.club-content,
  section.fabric,
  section.lookbook,
  section.drop-shell,
  section.community,
  section.events-list,
  .journal-post,
  .journal-post-hero,
  .journal-post-body,
  .journal-post-cover,
  .journal-post-related,
  .journal-index-grid,
  .journal-index-hero {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  /* Hero and full-bleed shells often want their content to breathe but
     shouldn't crop their cover image — use safer margin instead */
  .pdp-cross-sell,
  .pdp-reviews,
  .studio-strip,
  .pdp-recommend {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media (max-width: 540px) {
  nav.top {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .crumbs {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  section.product-detail {
    padding: 16px 16px 64px !important;
  }
}

/* ====== NEWSLETTER STRIP (journal index, can be reused) ====== */
.newsletter-strip {
  padding: 88px 56px;
  background: var(--butter);
  border-top: 1px solid var(--butter-deep);
  text-align: center;
}
.newsletter-strip h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 300;
  letter-spacing: -0.015em;
  max-width: 22ch;
  margin: 0 auto;
  color: var(--ink);
  text-wrap: balance;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 60;
}
.newsletter-strip h3 em {
  font-style: italic;
  color: var(--blush-deep);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.newsletter-strip p {
  font-size: 15.5px;
  color: var(--ink-2);
  margin: 16px auto 0;
  max-width: 52ch;
  line-height: 1.65;
  text-wrap: pretty;
}
.newsletter-strip form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 32px auto 0;
  background: var(--bone);
  padding: 6px;
  border-radius: 999px;
  box-shadow: 0 8px 24px -8px rgba(42, 34, 24, 0.18);
}
.newsletter-strip input {
  flex: 1;
  padding: 14px 22px;
  border: none;
  background: transparent;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  letter-spacing: 0.01em;
  min-width: 0;
}
.newsletter-strip input::placeholder {
  color: var(--mute);
}
.newsletter-strip button {
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 12px 22px;
  font-family: var(--body);
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s;
  white-space: nowrap;
}
.newsletter-strip button:hover {
  background: var(--blush-deep);
}
.newsletter-strip button:disabled {
  background: var(--blush-deep);
  cursor: default;
}
@media (max-width: 720px) {
  .newsletter-strip {
    padding: 64px 24px;
  }
  .newsletter-strip form {
    flex-direction: column;
    border-radius: 18px;
    padding: 10px;
    gap: 8px;
  }
  .newsletter-strip input {
    text-align: center;
    padding: 12px 16px;
  }
  .newsletter-strip button {
    width: 100%;
    padding: 14px 22px;
  }
}

/* ====== LEGAL / POLICY DOC PAGES (imprint, privacy, terms, returns,
   shipping, cookies). Editorial typography, narrow column, scannable. ====== */
.legal-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 32px 8px;
  text-align: center;
}
.legal-hero .eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blush-deep);
  font-weight: 500;
}
.legal-hero h1 {
  font-family: var(--display);
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.022em;
  margin-top: 14px;
  text-wrap: balance;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 30;
}
.legal-hero h1 em {
  font-style: italic;
  color: var(--blush-deep);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.legal-hero .legal-updated {
  margin-top: 14px;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}

.legal-doc {
  max-width: 760px;
  margin: 24px auto 96px;
  padding: 0 32px;
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--ink-2);
}
.legal-doc h2 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-top: 44px;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 144;
}
.legal-doc h3 {
  font-family: var(--body);
  font-size: 13.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 8px;
}
.legal-doc p {
  margin: 0 0 14px;
  text-wrap: pretty;
}
.legal-doc ul,
.legal-doc ol {
  margin: 0 0 14px 22px;
  padding: 0;
}
.legal-doc li {
  margin-bottom: 6px;
}
.legal-doc a {
  color: var(--blush-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-doc strong {
  color: var(--ink);
  font-weight: 600;
}
.legal-doc .legal-note {
  margin-top: 18px;
  padding: 16px 20px;
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: 4px;
  font-size: 14px;
  color: var(--ink-2);
}
.legal-doc .legal-placeholder {
  background: rgba(244, 216, 112, 0.4);
  border-bottom: 1px dashed var(--butter-deep);
  padding: 1px 4px;
  border-radius: 2px;
  font-style: italic;
  color: var(--ink);
}
.legal-doc dl {
  margin: 8px 0 14px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px 16px;
}
.legal-doc dt {
  font-weight: 600;
  color: var(--ink);
}
.legal-doc dd {
  margin: 0;
}
.legal-doc table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  font-size: 14.5px;
}
.legal-doc th,
.legal-doc td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--hair);
}
.legal-doc th {
  font-family: var(--body);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  background: var(--bone);
}
.legal-toc {
  max-width: 760px;
  margin: 0 auto 24px;
  padding: 18px 24px;
  border: 1px solid var(--hair);
  border-radius: 4px;
  background: var(--bone);
  font-size: 13.5px;
}
.legal-toc-h {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  margin-bottom: 8px;
}
.legal-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 2;
  gap: 8px;
}
.legal-toc li {
  margin-bottom: 4px;
}
.legal-toc a {
  color: var(--ink-2);
  text-decoration: none;
}
.legal-toc a:hover {
  color: var(--blush-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 640px) {
  .legal-hero {
    padding: 40px 20px 6px;
  }
  .legal-doc {
    padding: 0 20px;
    margin-bottom: 64px;
  }
  .legal-doc dl {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }
  .legal-doc dt {
    margin-top: 6px;
  }
  .legal-toc {
    padding: 14px 18px;
  }
  .legal-toc ol {
    columns: 1;
  }
}

/* =====================================================================
   PDP REFACTOR (2026-04-29) — competitor-funnel-aligned PDP sections.
   Order on page: gallery carousel · info column (badge, h1, mini-rating,
   price, 4 benefits, urgency, 3 trust badges, size, qty+CTAs, fabric link,
   accordions) · stats panel · 3-feature row · studio-strip · related grid
   · FAQ. Replaces single-image gallery + 2-paragraph desc.
   ===================================================================== */

/* ---- Carousel (multi-image gallery) ----------------------------------
   .pdp-carousel is a grid item under section.product-detail. Without
   `min-width: 0` it would expand to the largest child's intrinsic width
   (a slide image is 720+ px), which blows past the mobile viewport. The
   `min-width: 0` chain on carousel + cstage + cslide lets the slides
   collapse down to 100% of the column at any viewport width. */
.pdp-carousel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.pdp-cstage {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: 6px;
  background: var(--bone);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pdp-cstage::-webkit-scrollbar {
  display: none;
}
.pdp-cslide {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--blush-soft);
  display: block;
}
.pdp-cslide img,
.pdp-cslide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-carrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: rgba(251, 245, 230, 0.94);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0 6px 18px -8px rgba(42, 34, 24, 0.25);
  transition:
    background 0.18s,
    transform 0.18s;
}
.pdp-carrow:hover {
  background: var(--cream);
  transform: translateY(-50%) scale(1.06);
}
.pdp-carrow--prev {
  left: 14px;
}
.pdp-carrow--next {
  right: 14px;
}
.pdp-ccount {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(20, 14, 6, 0.7);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 500;
  z-index: 4;
}
/* Thumbs carousel — horizontal scroll, scroll-snap, single row.
   Switched from a 5-col grid (which overflowed vertically once we had 8+
   slides) to a horizontal flex strip. Keeps the buy-box compact and works
   identically across desktop and mobile. */
.pdp-cthumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 4px;
  padding: 2px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--hair) transparent;
}
.pdp-cthumbs::-webkit-scrollbar {
  height: 4px;
}
.pdp-cthumbs::-webkit-scrollbar-thumb {
  background: var(--hair);
  border-radius: 4px;
}
.pdp-cthumb {
  position: relative;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 4px;
  border: 1.5px solid transparent;
  display: block;
  background: var(--blush-soft);
  transition:
    border-color 0.18s,
    transform 0.18s;
}
.pdp-cthumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-cthumb.is-active {
  border-color: var(--ink);
}
.pdp-cthumb:hover {
  transform: translateY(-1px);
}
.pdp-cthumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(20, 14, 6, 0.55);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* Hide legacy single-image gallery markup if any cached HTML still has it. */
.gallery > .gallery-main,
.gallery > .gallery-thumbs:not(.pdp-cthumbs) {
  display: none;
}

/* ---- Mini rating row (under H1) -------------------------------------- */
.pdp-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 4px;
  font-size: 13px;
  color: var(--ink-2);
}
.pdp-rating-row .pdp-rating-stars {
  color: var(--butter-deep);
  font-size: 15px;
  letter-spacing: 1px;
}
.pdp-rating-row .pdp-rating-num {
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink);
  font-size: 14.5px;
  font-variation-settings: "opsz" 144;
}
.pdp-rating-row .pdp-rating-count {
  color: var(--mute);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pdp-rating-row .pdp-rating-count:hover {
  color: var(--blush-deep);
}
/* "Worn by the S68 club" honest fallback when no real reviews are stored. */
.pdp-rating-row .pdp-rating-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
  border: 1px solid var(--hair);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.5);
  transition:
    background 0.18s,
    border-color 0.18s,
    color 0.18s;
}
.pdp-rating-row .pdp-rating-ig:hover {
  background: var(--cream);
  border-color: var(--blush-deep);
  color: var(--ink);
}
.pdp-rating-row .pdp-rating-ig-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--blush-deep);
  display: inline-block;
}
.pdp-rating-row .pdp-rating-ig-arrow {
  font-size: 11px;
  color: var(--mute);
}

/* ---- "From the club" IG-fit grid (replaces fake review wall) ---- */
.pdp-reviews-head .pdp-reviews-sub {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
}
.ig-fit-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ig-fit-cell {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--hair);
  padding: 14px 14px 16px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.ig-fit-cell:hover {
  border-color: var(--blush-deep);
  transform: translateY(-1px);
}
.ig-fit-thumb {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: var(--cream);
}
.ig-fit-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ig-fit-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ig-fit-handle {
  font-family: var(--display);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.ig-fit-cap {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--mute);
}
.ig-fit-foot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  text-decoration: none;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition:
    background 0.2s,
    color 0.2s;
}
.ig-fit-foot:hover {
  background: var(--ink);
  color: var(--cream);
}
@media (max-width: 880px) {
  .ig-fit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .ig-fit-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Benefit bullets ------------------------------------------------- */
.pdp-benefits {
  list-style: none;
  margin: 16px 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pdp-benefits li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.5;
}
.pdp-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 7px;
  border-left: 1.5px solid var(--blush-deep);
  border-bottom: 1.5px solid var(--blush-deep);
  transform: rotate(-45deg);
}
.pdp-benefits strong {
  font-weight: 600;
  color: var(--ink);
}

/* ---- Almost-sold-out badge ------------------------------------------ */
.pdp-urgency {
  margin: 0 0 18px;
  padding: 10px 14px;
  background: linear-gradient(
    90deg,
    rgba(220, 138, 153, 0.16),
    rgba(244, 216, 112, 0.16)
  );
  border: 1px solid var(--butter);
  border-radius: 6px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.pdp-urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blush-deep);
  box-shadow: 0 0 0 4px rgba(220, 138, 153, 0.18);
  flex: 0 0 8px;
  animation: pdp-urgency-pulse 1.6s ease-in-out infinite;
}
@keyframes pdp-urgency-pulse {
  50% {
    box-shadow: 0 0 0 8px rgba(220, 138, 153, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .pdp-urgency-dot {
    animation: none;
  }
}

/* ---- 3-icon trust row ------------------------------------------------ */
.pdp-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 22px;
  padding: 14px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.pdp-trust-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--ink-2);
  line-height: 1.35;
}
.pdp-trust-cell svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--blush-deep);
}
.pdp-trust-cell strong {
  display: block;
  font-size: 12.5px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---- UGC video carousel (hears.com pattern) -------------------------
   Horizontal scrolling row of vertical 9:16 video tiles. Click a tile
   to play it inline (overlay + fullscreen-style). */
section.pdp-ugc-videos {
  max-width: 1280px;
  margin: 64px auto;
  padding: 0 56px;
}
.pdp-ugc-head {
  text-align: left;
  margin-bottom: 22px;
}
.pdp-ugc-head .eyebrow {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blush-deep);
  font-weight: 500;
  margin-bottom: 10px;
}
.pdp-ugc-head h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 300;
  letter-spacing: -0.012em;
  line-height: 1.05;
  margin: 0;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 30;
  color: var(--ink);
}
.pdp-ugc-head h2 em {
  font-style: italic;
  color: var(--blush-deep);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.pdp-ugc-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--hair) transparent;
  padding: 4px 0 12px;
}
.pdp-ugc-row::-webkit-scrollbar {
  height: 4px;
}
.pdp-ugc-row::-webkit-scrollbar-thumb {
  background: var(--hair);
  border-radius: 4px;
}
.pdp-ugc-tile {
  flex: 0 0 160px;
  scroll-snap-align: start;
  position: relative;
  border: 0;
  padding: 0;
  background: var(--bone);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 9 / 16;
  transition: transform 0.18s;
}
.pdp-ugc-tile:hover {
  transform: translateY(-2px);
}
.pdp-ugc-tile img,
.pdp-ugc-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-ugc-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 14, 6, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding-left: 3px;
  pointer-events: none;
  transition: background 0.18s;
}
.pdp-ugc-tile:hover .pdp-ugc-play {
  background: rgba(20, 14, 6, 0.78);
}
.pdp-ugc-cap {
  position: absolute;
  left: 10px;
  bottom: 10px;
  right: 10px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  text-align: left;
}
.pdp-ugc-tile.is-playing .pdp-ugc-play,
.pdp-ugc-tile.is-playing .pdp-ugc-cap,
.pdp-ugc-tile.is-playing img {
  display: none;
}
.pdp-ugc-foot {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--ink-2);
  text-align: right;
}
.pdp-ugc-foot a {
  color: var(--blush-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

@media (max-width: 540px) {
  section.pdp-ugc-videos {
    padding: 0 24px;
    margin: 48px auto;
  }
  .pdp-ugc-tile {
    flex: 0 0 138px;
  }
}

/* ---- Stats panel (with attribution) --------------------------------- */
.pdp-stats {
  max-width: 1100px;
  margin: 64px auto;
  padding: 36px 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 32px;
  background: var(--bone);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  text-align: center;
}
.pdp-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pdp-stat strong {
  font-family: var(--display);
  font-size: clamp(40px, 4.6vw, 60px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 30;
}
.pdp-stat span {
  font-size: 14.5px;
  color: var(--ink-2);
  margin-top: 6px;
  text-wrap: balance;
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}
.pdp-stat small {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 6px;
  font-weight: 500;
}

/* ---- 3-feature row -------------------------------------------------- */
.pdp-features {
  max-width: 1100px;
  margin: 0 auto 64px;
  padding: 0 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pdp-feature {
  background: var(--cream);
  border: 1px solid var(--hair);
  border-radius: 6px;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.pdp-feature::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--butter);
  opacity: 0.65;
}
.pdp-feature h4 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.008em;
  margin-top: 22px;
  font-variation-settings: "opsz" 144;
}
.pdp-feature p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}

/* ---- Improved related grid ----------------------------------------- */
.pdp-related {
  max-width: 1280px;
  margin: 64px auto 56px;
  padding: 0 56px;
}
.pdp-related-head {
  margin-bottom: 24px;
}
.pdp-related-head .eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blush-deep);
  font-weight: 500;
}
.pdp-related-head h3 {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 300;
  letter-spacing: -0.014em;
  margin-top: 8px;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 30;
}
.pdp-related-head h3 em {
  font-style: italic;
  color: var(--blush-deep);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
/* Horizontal carousel — was a 4-col grid that ate vertical space. Now scrolls
   sideways like the UGC strip. Card width fixed so 2-3 fit on mobile, 4 on
   desktop. */
.pdp-related-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--hair) transparent;
  padding: 4px 0 12px;
}
.pdp-related-grid::-webkit-scrollbar {
  height: 4px;
}
.pdp-related-grid::-webkit-scrollbar-thumb {
  background: var(--hair);
  border-radius: 4px;
}
.pdp-rel-card {
  flex: 0 0 calc((100% - 54px) / 4);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  background: var(--bone);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hair);
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
@media (max-width: 880px) {
  .pdp-rel-card {
    flex: 0 0 60%;
  }
}
@media (max-width: 540px) {
  .pdp-rel-card {
    flex: 0 0 78%;
  }
}
.pdp-rel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -22px rgba(42, 34, 24, 0.22);
}
.pdp-rel-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--blush-soft);
}
.pdp-rel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pdp-rel-card:hover .pdp-rel-photo img {
  transform: scale(1.04);
}
.pdp-rel-meta {
  padding: 14px 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.pdp-rel-name {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 144;
}
.pdp-rel-price {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

/* Hide legacy .related markup if any cached HTML still has it */
section.related:not(.pdp-related) {
  display: none;
}

/* ---- FAQ accordion -------------------------------------------------- */
.pdp-faq {
  max-width: 880px;
  margin: 0 auto 96px;
  padding: 0 56px;
}
.pdp-faq-head {
  text-align: center;
  margin-bottom: 28px;
}
.pdp-faq-head .eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blush-deep);
  font-weight: 500;
}
.pdp-faq-head h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 300;
  letter-spacing: -0.018em;
  margin-top: 12px;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 30;
}
.pdp-faq-head h2 em {
  font-style: italic;
  color: var(--blush-deep);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.pdp-faq-list {
  border-top: 1px solid var(--hair);
}
.pdp-faq-row {
  border-bottom: 1px solid var(--hair);
}
.pdp-faq-row > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 4px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-variation-settings: "opsz" 144;
}
.pdp-faq-row > summary::-webkit-details-marker {
  display: none;
}
.pdp-faq-chev {
  font-family: var(--body);
  font-size: 22px;
  font-weight: 300;
  color: var(--blush-deep);
  transition: transform 0.25s;
  line-height: 1;
}
.pdp-faq-row[open] .pdp-faq-chev {
  transform: rotate(45deg);
}
.pdp-faq-row > p {
  margin: 0 4px 18px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-2);
  text-wrap: pretty;
}
.pdp-faq-row > p a {
  color: var(--blush-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pdp-faq-foot {
  margin: 24px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--ink-2);
}
.pdp-faq-foot a {
  color: var(--blush-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

/* ============ EDITORIAL STORY BLOCKS (under buy box) ============
   Hears.com / Dore-Rose pattern: 3 alternating image + text rows that
   walk the customer through fabric, fit, and brand story. Lives between
   the 3-feature row and the studio-strip. */
section.pdp-story {
  max-width: 1280px;
  margin: 96px auto 64px;
  padding: 0 56px;
}
.pdp-story-head {
  text-align: center;
  margin-bottom: 56px;
}
.pdp-story-head .eyebrow {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blush-deep);
  font-weight: 500;
  margin-bottom: 14px;
}
.pdp-story-head h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.018em;
  line-height: 1.05;
  margin: 0;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 30;
  color: var(--ink);
  text-wrap: balance;
}
.pdp-story-head h2 em {
  font-style: italic;
  color: var(--blush-deep);
  font-variation-settings:
    "opsz" 144,
    "SOFT" 100;
}
.pdp-story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.pdp-story-block:last-child {
  margin-bottom: 0;
}
.pdp-story-block--media-right .pdp-story-img {
  order: 2;
}
.pdp-story-block--media-right .pdp-story-text {
  order: 1;
}
.pdp-story-img {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bone);
}
.pdp-story-img img,
.pdp-story-img video,
.pdp-story-img .pdp-story-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pdp-story-block:hover .pdp-story-img img {
  transform: scale(1.02);
}
.pdp-story-text {
  padding: 0 16px;
}
.pdp-story-eyebrow {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  margin-bottom: 16px;
}
.pdp-story-text h3 {
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 300;
  letter-spacing: -0.012em;
  line-height: 1.15;
  margin: 0 0 18px;
  font-variation-settings:
    "opsz" 144,
    "SOFT" 30;
  color: var(--ink);
  text-wrap: balance;
}
.pdp-story-text h3 sup {
  font-size: 0.5em;
  font-weight: 400;
  vertical-align: super;
  margin-left: 1px;
}
.pdp-story-text p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 22px;
  max-width: 48ch;
}
.pdp-story-link {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition:
    color 0.18s,
    border-color 0.18s;
}
.pdp-story-link:hover {
  color: var(--blush-deep);
  border-bottom-color: var(--blush-deep);
}
@media (max-width: 880px) {
  section.pdp-story {
    padding: 0 28px;
    margin: 64px auto 40px;
  }
  .pdp-story-head {
    margin-bottom: 36px;
  }
  .pdp-story-block {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }
  .pdp-story-block--media-right .pdp-story-img,
  .pdp-story-block--media-left .pdp-story-img {
    order: 1;
  }
  .pdp-story-block--media-right .pdp-story-text,
  .pdp-story-block--media-left .pdp-story-text {
    order: 2;
  }
  .pdp-story-text {
    padding: 0;
  }
}

/* ---- Mobile responsive (≤720) -------------------------------------- */
@media (max-width: 720px) {
  .pdp-cthumbs {
    gap: 6px;
  }
  .pdp-cthumb {
    width: 56px;
    height: 56px;
  }
  /* Hide arrows on touch devices — swipe + thumb scroll handle slide nav.
     Desktop/laptop keeps the prev/next affordance for click users. */
  .pdp-carrow {
    display: none;
  }
  .pdp-trust {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 0;
  }
  .pdp-stats {
    margin: 40px 0;
    padding: 28px 24px;
    grid-template-columns: 1fr;
    gap: 24px;
    border-radius: 0;
  }
  .pdp-stat strong {
    font-size: 38px;
  }
  .pdp-features {
    padding: 0 24px;
    margin-bottom: 48px;
    grid-template-columns: 1fr;
  }
  .pdp-related {
    padding: 0 24px;
    margin: 48px 0 32px;
  }
  .pdp-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .pdp-faq {
    padding: 0 24px;
    margin-bottom: 64px;
  }
  .pdp-faq-row > summary {
    font-size: 15.5px;
    padding: 16px 2px;
  }
}
@media (max-width: 540px) {
  .pdp-cthumb {
    width: 52px;
    height: 52px;
  }
}

/* ===== PDP Reviews Carousel — horizontal scroll with avatar tiles ===== */
.pdp-reviews-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.pdp-reviews-summary .pdp-reviews-stars {
  color: var(--blush-deep);
  letter-spacing: 1px;
}
.pdp-reviews-summary .pdp-reviews-num strong {
  color: var(--ink);
  font-weight: 600;
}
.pdp-reviews-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--hair) transparent;
  padding: 4px 0 12px;
  margin-top: 28px;
}
.pdp-reviews-row::-webkit-scrollbar {
  height: 4px;
}
.pdp-reviews-row::-webkit-scrollbar-thumb {
  background: var(--hair);
  border-radius: 4px;
}
.pdp-review-card {
  flex: 0 0 calc((100% - 48px) / 4);
  scroll-snap-align: start;
  background: var(--bone);
  border: 1px solid var(--hair);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pdp-review-img {
  margin: 0;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--hair);
}
.pdp-review-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-review-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pdp-review-stars {
  color: var(--blush-deep);
  letter-spacing: 1px;
  font-size: 13px;
}
.pdp-review-title {
  font-family: var(--font-serif, "Tenor Sans", serif);
  font-size: 17px;
  margin: 0;
  line-height: 1.3;
  color: var(--ink);
}
.pdp-review-quote {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}
.pdp-review-meta {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.pdp-review-meta .pdp-review-name {
  color: var(--ink);
  font-weight: 600;
}
.pdp-review-meta .pdp-review-verified {
  color: var(--blush-deep);
}
@media (max-width: 880px) {
  .pdp-review-card {
    flex: 0 0 80%;
  }
  section.pdp-reviews {
    padding: 48px 18px;
  }
}
@media (max-width: 480px) {
  .pdp-review-card {
    flex: 0 0 86%;
  }
}

/* ===== PDP stats — animated count-up + hairline progress bar ===== */
.pdp-stat[data-stat] {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--stat-i, 0) * 90ms);
}
.pdp-stat[data-stat].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.pdp-stat-num {
  font-variant-numeric: tabular-nums;
  display: inline-block;
}
.pdp-stat-bar {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--hair);
  margin: 14px auto 4px;
  overflow: hidden;
  position: relative;
}
.pdp-stat-bar i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blush-deep, #b07a5a);
  transform-origin: left center;
  transform: scaleX(0);
}
@media (prefers-reduced-motion: reduce) {
  .pdp-stat[data-stat] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* ===== Homepage apparel carousel — hears.com bestsellers style ===== */
.apparel-carousel-wrap {
  margin-top: 28px;
}
.apparel-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0;
}
.apparel-carousel::-webkit-scrollbar {
  display: none;
}
a.apparel-card {
  flex: 0 0 calc((100% - 54px) / 4);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: #f4eee0;
  border-radius: 8px;
  padding: 14px 14px 22px;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.apparel-card:hover {
  transform: translateY(-4px);
}
.apparel-card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  font-family: var(--body, "DM Sans", sans-serif);
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--ink);
}
.apparel-card-photo {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 18px;
}
.apparel-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.apparel-card:hover .apparel-card-photo img {
  transform: scale(1.04);
}
.apparel-card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.apparel-card-name {
  font-family: var(--body, "DM Sans", sans-serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.apparel-card-use {
  font-size: 12px;
  color: var(--ink-2, #666);
  letter-spacing: 0.02em;
}
.apparel-card-price {
  font-size: 13px;
  color: var(--ink-2, #666);
  margin-top: 2px;
}
.apparel-shopall {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--body, "DM Sans", sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.apparel-shopall span:first-child {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.apparel-shopall-chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  transition:
    background 0.2s,
    color 0.2s;
}
.apparel-shopall:hover .apparel-shopall-chev {
  background: var(--ink);
  color: var(--cream, #fbf5e6);
}
.apparel-progress {
  position: relative;
  height: 1px;
  background: rgba(42, 34, 24, 0.18);
  margin: 18px auto 0;
  max-width: 320px;
  border-radius: 1px;
  overflow: hidden;
}
.apparel-progress i {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--ink);
  width: 25%;
  transform-origin: left center;
  transition: width 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@media (max-width: 1100px) {
  a.apparel-card {
    flex: 0 0 calc((100% - 36px) / 3);
  }
}
@media (max-width: 720px) {
  a.apparel-card {
    flex: 0 0 72%;
    padding: 14px 14px 22px;
  }
  .apparel-card-badge {
    top: 22px;
    left: 22px;
    font-size: 10px;
  }
  .apparel-card-photo {
    margin-bottom: 16px;
  }
  .apparel-card-name {
    font-size: 15px;
  }
  .apparel-card-use,
  .apparel-card-price {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  a.apparel-card {
    flex: 0 0 78%;
  }
}
