:root {
  --ink: #151313;
  --muted: #6a5d61;
  --line: #eadce1;
  --paper: #fff9fa;
  --white: #ffffff;
  --rose: #c57f92;
  --wine: #57323d;
  --petal: #f8e7ed;
  --blush: #f2d2dc;
  --powder: #faf2f5;
  --green: #355444;
  --soft: #f7ecef;
  --shadow: 0 18px 45px rgba(21, 19, 19, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

html.is-loading-page,
html.is-loader-fading,
html.is-loading-page body {
  overflow: hidden;
}

html.is-loader-fading body {
  overflow: hidden;
}

html.is-loading-page body > :not(.page-loader) {
  opacity: 0;
}

html.page-ready body > :not(.page-loader) {
  animation: pageContentFade 360ms ease both;
}

@keyframes pageContentFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body.size-guide-open {
  overflow: hidden;
}

body.preference-modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

a:hover {
  color: var(--rose);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-80px);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 44%, rgba(248, 231, 237, 0.88), rgba(255, 255, 255, 0.96) 42%, rgba(255, 249, 250, 0.98) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease, visibility 360ms ease;
}

html.is-loading-page .page-loader {
  display: grid;
  opacity: 1;
  pointer-events: auto;
}

html.page-ready .page-loader {
  display: grid;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.page-loader-inner {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.page-loader-mark {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
}

.page-loader-mark::before,
.page-loader-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.page-loader-mark::before {
  background: conic-gradient(from 0deg, transparent 0 18%, var(--rose) 42%, var(--wine) 58%, transparent 82% 100%);
  animation: pageLoaderSpin 920ms linear infinite;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
}

.page-loader-mark::after {
  inset: 12px;
  border: 1px solid rgba(197, 127, 146, 0.32);
  background: rgba(255, 255, 255, 0.62);
}

.page-loader-mark span {
  position: relative;
  z-index: 1;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1;
}

.page-loader p {
  margin: 0;
  color: var(--wine);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

@media (prefers-reduced-motion: reduce) {
  .page-loader-mark::before {
    animation-duration: 1800ms;
  }

  html.page-ready body > :not(.page-loader) {
    animation: none;
  }
}

.preference-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147481200;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--ink);
  background: rgba(21, 19, 19, 0.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.preference-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.preference-modal {
  position: relative;
  width: min(100%, 520px);
  max-height: min(760px, calc(100svh - 48px));
  overflow: auto;
  padding: 42px 38px 34px;
  border: 1px solid rgba(234, 220, 225, 0.92);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(21, 19, 19, 0.24);
  transform: translateY(14px);
  transition: transform 220ms ease;
}

.preference-overlay.is-open .preference-modal {
  transform: translateY(0);
}

.preference-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.preference-modal-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.preference-modal-copy {
  display: grid;
  gap: 12px;
  text-align: center;
}

.preference-modal-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.preference-modal h2 {
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(2rem, 6vw, 3.05rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.preference-modal-copy p:not(.preference-modal-kicker),
.preference-modal-note,
.preference-modal-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.newsletter-preference-form {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 26px;
}

.newsletter-preference-form label {
  width: min(100%, 360px);
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.newsletter-preference-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.92rem;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

.newsletter-preference-form input:focus-visible,
.preference-size-tile:focus-visible,
.preference-modal-actions button:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}

.preference-size-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 28px 0 14px;
}

.preference-size-tile {
  min-height: 44px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.preference-size-tile.is-selected {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.preference-modal-note {
  text-align: center;
}

.preference-overlay--app-first-order .preference-modal {
  width: min(100%, 520px);
}

.app-first-order-code {
  width: min(100%, 390px);
  margin: 26px auto 14px;
  padding: 15px 12px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: #fff7fa;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
  text-align: center;
}

.preference-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.preference-modal-actions button {
  min-height: 44px;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  font: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, opacity 160ms ease;
}

.preference-modal-actions button:hover {
  color: var(--ink);
  background: var(--white);
}

.preference-modal-actions button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.preference-modal-actions .preference-secondary {
  color: var(--ink);
  background: var(--white);
}

.preference-modal-actions .preference-secondary:hover {
  color: var(--white);
  background: var(--ink);
}

.preference-modal-status {
  min-height: 1.5em;
  text-align: center;
}

.preference-overlay--install .preference-modal,
.preference-overlay--notifications .preference-modal {
  width: min(100%, 500px);
}

.app-store-badges {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.app-store-badge-link {
  min-width: 0;
  display: grid;
  place-items: center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.app-store-badge-link:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.app-store-badge-link:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

.app-store-badge-link img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.app-store-badge-link--apple img {
  width: 180px;
}

.app-store-badge-link--google img {
  width: 210px;
}

.preference-overlay--notifications .preference-modal-status {
  margin-top: 20px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  color: var(--ink);
  background: var(--white);
  box-shadow: none;
  backdrop-filter: none;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-solid,
.site-header:hover,
.site-header:focus-within,
.site-header.nav-open {
  color: var(--ink);
  background: var(--white);
  box-shadow: none;
  backdrop-filter: none;
}

.promo-strip {
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--blush);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.promo-strip--reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 16px;
  overflow: hidden;
}

.promo-reviews-link {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.promo-strip-divider {
  width: 1px;
  height: 13px;
  flex: 0 0 auto;
  background: rgba(21, 19, 19, 0.28);
}

.promo-strip-message {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.promo-strip-message[hidden],
.promo-strip-divider[hidden] {
  display: none;
}

.promo-strip--native-app {
  padding: 0;
  text-transform: none;
}

.native-app-open-link {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 12px;
  color: var(--ink);
  text-decoration: none;
}

.native-app-open-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 4px;
}

.native-app-open-copy {
  min-width: 0;
  overflow: hidden;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.native-app-open-action {
  flex: 0 0 auto;
  padding-left: 9px;
  border-left: 1px solid rgba(21, 19, 19, 0.22);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.native-app-open-link:hover .native-app-open-action,
.native-app-open-link:focus-visible .native-app-open-action {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.promo-reviews-verdict {
  font-weight: 700;
}

.promo-reviews-stars {
  letter-spacing: 0.08em;
  font-size: 0.66rem;
  line-height: 1;
}

.promo-reviews-text {
  letter-spacing: 0.07em;
}

.promo-reviews-text strong {
  font-weight: 700;
}

.promo-reviews-link:hover,
.promo-reviews-link:focus-visible,
.promo-strip-message:hover,
.promo-strip-message:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header.is-solid .promo-strip,
.site-header:hover .promo-strip,
.site-header:focus-within .promo-strip,
.site-header.nav-open .promo-strip {
  color: var(--ink);
  background: var(--blush);
}

.header-main {
  min-height: 60px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(178px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 0 24px;
}

.brand {
  justify-self: start;
  width: 62px;
  min-width: 62px;
}

.brand img {
  width: 100%;
  filter: none;
  transition: filter 180ms ease;
}

.site-header.is-solid .brand img,
.site-header:hover .brand img,
.site-header:focus-within .brand img,
.site-header.nav-open .brand img {
  filter: none;
}

.site-nav {
  min-width: 0;
  max-width: min(680px, calc(100vw - 360px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

.nav-top {
  appearance: none;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.nav-top:hover,
.nav-item:focus-within .nav-top,
.nav-item:hover .nav-top {
  color: var(--ink);
}

.site-header.is-solid .nav-top:hover,
.site-header:hover .nav-top:hover,
.site-header:focus-within .nav-top:hover,
.site-header.is-solid .nav-item:focus-within .nav-top,
.site-header.is-solid .nav-item:hover .nav-top {
  color: var(--ink);
}

.mega-menu {
  --mega-cols: 4;
  --mega-width: 980px;
  position: fixed;
  top: 90px;
  left: 50%;
  right: auto;
  z-index: 12;
  width: min(var(--mega-width), calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(var(--mega-cols), minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 18px;
  padding: 22px 22px 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mega-menu::before {
  content: "";
  position: absolute;
  inset: -26px 0 auto;
  height: 26px;
}

.mega-menu--single-list {
  width: min(240px, calc(100vw - 48px));
  padding-right: 20px;
  padding-left: 20px;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.nav-item.is-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-group {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.mega-title {
  color: var(--ink);
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.mega-link {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}

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

.mega-direct-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  text-align: center;
}

.mega-direct-link {
  font-size: 0.82rem;
  min-width: 150px;
}

.mega-menu--single-list .mega-direct-links {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 10px;
}

.mega-menu--single-list .mega-direct-link {
  min-width: 0;
}

.mega-view-all {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.mega-view-all-link {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-view-all-link:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  justify-self: end;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  width: 178px;
  min-width: 178px;
  min-height: 38px;
}

.country-picker {
  position: relative;
  z-index: 14;
}

.country-trigger {
  appearance: none;
  width: 70px;
  min-width: 70px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 9px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.country-trigger:hover,
.country-picker.is-open .country-trigger {
  color: var(--wine);
  background: rgba(248, 231, 237, 0.9);
  transform: translateY(-1px);
}

.country-trigger-flag {
  width: 16px;
  min-width: 16px;
  display: inline-grid;
  place-items: center;
  font-size: 0.88rem;
  line-height: 1;
}

.country-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(340px, calc(100vw - 32px));
  max-height: min(520px, calc(100vh - 118px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 250, 251, 0.99);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.country-picker.is-open .country-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.country-search {
  width: 100%;
  height: 38px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
  font-size: 0.78rem;
  outline: 0;
}

.country-search:focus {
  border-color: var(--rose);
}

.country-options {
  display: grid;
  gap: 2px;
  max-height: 440px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 4px;
}

.country-option {
  appearance: none;
  min-height: 38px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 7px 8px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.country-option:hover,
.country-option.is-active {
  background: var(--petal);
}

.country-option-flag {
  font-size: 1rem;
  line-height: 1;
}

.country-option-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.78rem;
}

.country-option-currency {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.country-empty {
  margin: 10px 8px 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.icon-link {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  color: currentColor;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.icon-link:hover {
  color: var(--wine);
  background: rgba(248, 231, 237, 0.9);
  transform: translateY(-1px);
}

.site-header.is-solid .icon-link:hover {
  color: var(--wine);
  background: var(--petal);
}

.icon-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-header-search {
  display: none;
}

.mobile-header-actions {
  display: none;
}

.cart-count {
  position: absolute;
  top: -3px;
  right: -2px;
  min-width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  padding: 0 4px;
  border: 1px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  background: #c6203f;
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.cart-count[hidden] {
  display: none;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--paper);
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 56%, rgba(36, 22, 27, 0.34), rgba(36, 22, 27, 0.08) 34%, rgba(36, 22, 27, 0) 62%),
    linear-gradient(rgba(87, 50, 61, 0.06), rgba(87, 50, 61, 0.34));
}

.hero-backdrop,
.hero-picture,
.hero-subject {
  grid-area: 1 / 1;
}

.hero-picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-backdrop {
  position: relative;
  top: var(--image-offset-y, 0);
  left: var(--image-offset-x, 0);
  width: auto;
  min-width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-focus-x, center) var(--image-focus-y, center);
  filter: none;
  transform: none;
  opacity: 1;
}

.hero-rixo .hero-backdrop {
  --image-focus-x: center;
  --image-focus-y: 44%;
  --image-offset-y: 34px;
  transform: none;
}

.hero-subject {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 40px));
  padding: 82px 0 0;
  text-align: center;
  text-shadow: 0 2px 20px rgba(47, 28, 35, 0.56), 0 1px 2px rgba(47, 28, 35, 0.32);
}

.eyebrow {
  margin: 0 0 12px;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.section-heading h2,
.seo-section h2 {
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-weight: 500;
}

.hero h1 {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(3rem, 5.2vw, 5.3rem);
  line-height: 0.88;
  text-transform: uppercase;
  opacity: 0.94;
}

.hero p:not(.eyebrow) {
  max-width: 520px;
  margin: 16px auto 0;
  font-size: 0.98rem;
  font-weight: 500;
}

.overlay-cta {
  display: inline-grid;
  place-items: center;
  min-width: 154px;
  min-height: 38px;
  margin-top: 20px;
  padding: 0 18px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.86);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: none;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.overlay-cta:hover {
  color: var(--wine);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  opacity: 1;
}

.section,
.product-section,
.seo-section {
  width: min(1480px, calc(100% - 64px));
  margin: 0 auto;
}

.intro-section .eyebrow,
.section-heading .eyebrow,
.seo-section .eyebrow {
  color: var(--rose);
}

.intro-section h2,
.seo-section h2 {
  max-width: 740px;
  font-size: 3.2rem;
  line-height: 1;
}

.section-text {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.category-mosaic {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 0;
  background: var(--white);
}

.category-tile {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft);
  color: var(--white);
}

.category-tall {
  grid-row: span 1;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  transition: background 220ms ease;
}

.category-tile:hover::after {
  background: rgba(0, 0, 0, 0.34);
}

.category-tile:hover,
.wide-story a:hover,
.editorial-panel:hover {
  color: var(--white);
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 220ms ease;
}

.category-tile picture {
  display: block;
  width: 100%;
  height: 100%;
}

.category-maxi img {
  object-position: center center;
}

.category-tile:hover img {
  filter: brightness(0.96) saturate(1.03);
}

.category-maxi:hover img {
  filter: brightness(0.96) saturate(1.03);
}

.category-tile span {
  position: absolute;
  z-index: 1;
}

.category-tile span {
  max-width: calc(100% - 24px);
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(1.28rem, 2.25vw, 2.65rem);
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0;
  line-height: 0.9;
}

.category-tile:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: -3px;
}

.wide-story {
  width: 100%;
  background: var(--paper);
}

.wide-story a {
  position: relative;
  display: grid;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
}

.wide-story-picture,
.wide-story img,
.editorial-panel picture,
.editorial-panel img {
  width: 100%;
  height: 100%;
}

.wide-story-picture,
.editorial-panel picture {
  display: block;
}

.wide-story img,
.editorial-panel img {
  object-fit: cover;
  transition: filter 220ms ease;
}

img[data-lazy-media] {
  opacity: 0;
  transition: opacity 260ms ease, filter 220ms ease;
}

img[data-lazy-media].is-loaded {
  opacity: 1;
}

.wide-story a::after,
.editorial-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(38, 24, 28, 0.04), rgba(38, 24, 28, 0.58));
}

.wide-story a:hover .wide-story-picture,
.editorial-panel:hover img {
  filter: brightness(0.96) saturate(1.03);
}

.wide-story span {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 32px;
  right: 32px;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  transform: translateY(-50%);
}

.wide-story small {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wide-story strong {
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(3.4rem, 6vw, 7rem);
  font-weight: 500;
  line-height: 0.92;
}

.wide-story em {
  font-style: normal;
}

.editorial-trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: var(--white);
}

.editorial-panel {
  position: relative;
  display: grid;
  min-height: 640px;
  overflow: hidden;
  color: var(--white);
}

.editorial-panel span {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 24px;
  right: 24px;
  display: grid;
  justify-items: center;
  text-align: center;
  transform: translateY(-50%);
}

.editorial-panel small {
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(1.28rem, 2.25vw, 2.65rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-section {
  padding: 0 0 78px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.section-heading h2 {
  font-size: 2.6rem;
  line-height: 1;
}

.section-heading a {
  color: var(--rose);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-width: 0;
}

.product-card a {
  display: grid;
  gap: 9px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5.35;
  object-fit: cover;
  background: var(--soft);
}

.product-card span {
  min-height: 42px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
}

.product-card strong {
  font-size: 0.92rem;
}

.editorial-band {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  min-height: 540px;
  background: var(--ink);
}

.editorial-tile {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.editorial-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.56));
}

.editorial-tile img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  transition: filter 220ms ease;
}

.editorial-tile:hover img {
  filter: brightness(0.96) saturate(1.03);
}

.editorial-tile span {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.editorial-tile small {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.seo-section {
  padding: 88px 0 98px;
}

.seo-section h2 {
  max-width: 820px;
}

.seo-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.seo-links a {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  background: var(--paper);
  font-weight: 800;
}

.editorial-copy {
  width: min(1520px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 62px;
  text-align: center;
}

.editorial-copy--intro {
  padding-top: 64px;
}

.editorial-copy--intro .editorial-copy-grid {
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 1180px;
}

.editorial-copy--intro .editorial-copy-grid p {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.editorial-copy--intro .editorial-copy-grid p:first-child {
  max-width: 1040px;
  font-size: clamp(1.08rem, 1vw, 1.22rem);
  line-height: 1.55;
}

.editorial-copy--feature {
  max-width: none;
  padding: 62px 0;
}

.editorial-copy--collections {
  padding: 64px 0 74px;
}

.editorial-copy--collections .editorial-copy-grid {
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 1180px;
}

.editorial-copy--collections .editorial-copy-grid p {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.editorial-copy h2 {
  max-width: 1120px;
  margin: 0 auto;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(1.9rem, 3.4vw, 3.55rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.editorial-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 74px);
  max-width: 1360px;
  margin: 28px auto 0;
}

.editorial-copy-grid--single {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 58px);
  max-width: 1360px;
}

.editorial-copy p,
.editorial-copy-grid p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.98rem, 0.78vw, 1.08rem);
  line-height: 1.62;
  text-align: left;
}

.editorial-copy a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

.editorial-copy > p:last-child {
  max-width: 660px;
  margin: 24px auto 0;
}

.editorial-copy-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px auto 0;
}

.editorial-copy-actions a {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(87, 50, 61, 0.18);
  color: var(--wine);
  background: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.editorial-copy-actions a:hover {
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1520px, calc(100% - 48px));
  margin: 0 auto 72px;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-strip-item {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 132px;
  padding: 28px 24px;
  background: var(--paper);
  text-align: center;
}

.trust-strip-item strong {
  color: var(--wine);
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(1.28rem, 1.75vw, 2rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.trust-strip-item span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.about-page {
  padding-top: 90px;
  background: var(--white);
}

.about-hero {
  position: relative;
  min-height: calc(100svh - 90px);
  container: about-hero / size;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.about-hero-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-hero-picture img {
  position: absolute;
  inset: auto;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: none;
  height: 105.5%;
  object-fit: fill;
  transform: translate(-50%, -50%) translateY(18px);
  transform-origin: center center;
}

@container about-hero (min-aspect-ratio: 16 / 9) {
  .about-hero-picture img {
    width: 105.5%;
    height: auto;
  }
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(26, 18, 21, 0.1), rgba(26, 18, 21, 0.45));
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  display: grid;
  justify-items: center;
  gap: 16px;
  text-shadow: 0 2px 20px rgba(47, 28, 35, 0.34);
}

.about-hero-copy p,
.about-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-hero h1,
.about-copy h2,
.about-feature h2,
.about-values h2,
.about-collections h2 {
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 6.2vw, 7rem);
  line-height: 0.88;
}

.about-intro,
.about-feature {
  display: grid;
  align-items: center;
}

.about-intro {
  width: 100%;
  margin: 0;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 44vw);
  gap: 0;
  align-items: stretch;
}

.about-intro .about-copy {
  width: min(760px, calc(100% - 64px));
  max-width: none;
  justify-self: center;
  align-self: center;
  padding: clamp(60px, 7vw, 112px) 0;
}

.about-feature {
  width: 100%;
  margin: 0;
  grid-template-columns: minmax(420px, 44vw) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 0 0 82px;
}

.about-feature-copy {
  width: min(720px, calc(100% - 64px));
  max-width: none;
  justify-self: center;
  align-self: center;
}

.about-kicker {
  margin-bottom: 16px;
  color: var(--rose);
}

.about-copy h2,
.about-feature h2,
.about-collections h2 {
  font-size: clamp(2.4rem, 4.4vw, 5rem);
  line-height: 0.94;
}

.about-copy p:not(.about-kicker),
.about-feature-copy p:not(.about-kicker),
.about-values p {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.75;
}

.about-portrait {
  margin: 0;
  min-height: 100%;
}

.about-portrait picture,
.about-feature figure picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about-portrait img,
.about-feature figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--soft);
}

.about-portrait img {
  min-height: 100%;
  aspect-ratio: auto;
  object-position: center center;
}

.about-milestones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.about-milestones div {
  min-height: 160px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}

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

.about-milestones strong {
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 500;
  line-height: 0.92;
}

.about-milestones span {
  max-width: 260px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-feature figure {
  position: relative;
  height: min(660px, 72vw);
  margin: 0;
  overflow: hidden;
}

.about-feature figure img {
  position: absolute;
  inset: auto;
  top: 44%;
  left: 78%;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: fill;
  transform: translate(-78%, -44%);
}

.about-values {
  width: min(1520px, calc(100% - 48px));
  margin: 0 auto 84px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.about-values article {
  min-height: 250px;
  display: grid;
  align-content: center;
  padding: clamp(26px, 3vw, 46px);
  background: var(--white);
  text-align: center;
}

.about-values h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.65rem);
  line-height: 0.95;
}

.about-seo-copy {
  width: min(1520px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 84px;
  text-align: center;
}

.about-seo-copy h2 {
  max-width: 1100px;
  margin: 0 auto;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  font-weight: 500;
  line-height: 0.94;
  text-transform: uppercase;
}

.about-seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 72px);
  margin-top: 30px;
  text-align: left;
}

.about-seo-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.75;
}

.about-collections {
  padding: 0 0 86px;
  background: var(--powder);
}

.about-collections-heading {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto 34px;
  text-align: center;
}

.about-collection-grid {
  width: min(1520px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.about-collection-grid a {
  position: relative;
  display: grid;
  aspect-ratio: 3 / 4.2;
  overflow: hidden;
  color: var(--white);
}

.about-collection-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(38, 24, 28, 0.02), rgba(38, 24, 28, 0.5));
}

.about-collection-grid picture,
.about-collection-grid img {
  width: 100%;
  height: 100%;
}

.about-collection-grid img {
  object-fit: cover;
  transition: filter 220ms ease;
}

.about-collection-grid a:hover {
  color: var(--white);
}

.about-collection-grid a:hover img {
  filter: brightness(0.96) saturate(1.03);
}

.about-collection-grid span {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 20px;
  right: 20px;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(1.55rem, 2.8vw, 3.15rem);
  font-weight: 500;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.policy-page {
  padding-top: 90px;
  background: var(--white);
}

.policy-hero {
  position: relative;
  min-height: min(620px, calc(100svh - 90px));
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.policy-hero--faq {
  min-height: calc(100svh - 90px);
}

.policy-hero--privacy {
  min-height: calc(100svh - 90px);
}

.policy-hero--terms {
  min-height: calc(100svh - 90px);
}

.policy-hero--shipping {
  min-height: calc(100svh - 90px);
}

.policy-hero--delivery {
  min-height: calc(100svh - 90px);
}

.policy-hero--returns {
  min-height: calc(100svh - 90px);
}

.wholesale-page .policy-hero {
  min-height: calc(100svh - 90px);
}

.policy-hero-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.policy-hero-picture img {
  position: absolute;
  top: 46%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  transform: translate(-50%, -46%);
}

.policy-hero--faq .policy-hero-picture img {
  top: 50%;
  transform: translate(-50%, -50%);
}

.policy-hero--privacy .policy-hero-picture img {
  top: 50%;
  transform: translate(-50%, -50%);
}

.policy-hero--returns .policy-hero-picture img {
  top: 50%;
  transform: translate(-50%, -50%);
}

.policy-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(26, 18, 21, 0.08), rgba(26, 18, 21, 0.42));
}

.policy-hero-copy {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  display: grid;
  justify-items: center;
  gap: 16px;
  text-shadow: 0 2px 20px rgba(47, 28, 35, 0.34);
}

.policy-hero--returns .policy-hero-copy {
  justify-self: center;
  justify-items: center;
  width: min(900px, calc(100% - 40px));
  margin-left: 0;
  text-align: center;
}

.policy-hero-copy p,
.policy-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-hero h1,
.policy-intro h2,
.policy-sidebar h2,
.policy-sidebar h3,
.policy-card h2,
.policy-card h3,
.policy-help h2 {
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.policy-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 6.2vw, 7rem);
  line-height: 0.88;
}

.policy-hero--returns h1 {
  max-width: 980px;
  font-size: clamp(3rem, 6.2vw, 7rem);
}

.policy-intro {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 66px 0 56px;
  text-align: center;
}

.policy-intro h2 {
  margin-top: 14px;
  font-size: clamp(2.4rem, 4.4vw, 5rem);
  line-height: 0.94;
}

.policy-intro p:not(.policy-kicker) {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.75;
}

.policy-kicker {
  color: var(--rose);
}

.policy-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.policy-highlights div {
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.policy-highlights div:last-child {
  border-right: 0;
}

.policy-highlights strong {
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(1.6rem, 2.8vw, 3.2rem);
  font-weight: 500;
  line-height: 0.95;
  text-transform: uppercase;
}

.policy-highlights span {
  max-width: 260px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.policy-content {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) 1fr;
  gap: clamp(32px, 5vw, 72px);
  padding: 76px 0 88px;
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: 124px;
  display: grid;
  gap: 14px;
}

.policy-sidebar h2 {
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 0.95;
}

.policy-sidebar p:not(.policy-kicker) {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.7;
}

.policy-sidebar a,
.policy-help a {
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  justify-self: start;
  padding: 0 22px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.policy-sidebar a:hover,
.policy-help a:hover {
  color: var(--white);
  background: var(--ink);
}

.policy-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.faq-list {
  display: grid;
  gap: clamp(26px, 3vw, 42px);
}

.faq-group {
  border: 1px solid var(--line);
  background: var(--white);
}

.faq-group > h2 {
  margin: 0;
  padding: clamp(24px, 3vw, 36px);
  border-bottom: 1px solid var(--line);
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(1.75rem, 2.7vw, 3.2rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 0 clamp(22px, 3vw, 36px);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--rose);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item > div {
  padding: 0 clamp(22px, 3vw, 36px) clamp(24px, 3vw, 34px);
}

.faq-item p,
.faq-item address {
  max-width: 850px;
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.72;
}

.faq-item p + p,
.faq-item p + address {
  margin-top: 14px;
}

.faq-item a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.faq-item a:hover {
  color: var(--rose);
}

.policy-card {
  padding: clamp(26px, 3vw, 42px);
  background: var(--white);
}

.policy-card h2,
.policy-card h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.55rem);
  line-height: 0.95;
}

.policy-card p,
.policy-card li {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.72;
}

.policy-card p {
  margin: 16px 0 0;
}

.policy-card address {
  margin-top: 16px;
  color: var(--ink);
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.72;
}

.policy-card a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.policy-card a:hover {
  color: var(--rose);
}

.policy-card code {
  padding: 0.1em 0.35em;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.86em;
}

.shipping-rate-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.shipping-rate-panel-heading > div {
  display: grid;
  gap: 10px;
}

.shipping-rate-panel-heading button {
  min-height: 42px;
  flex: 0 0 auto;
  padding: 0 20px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, opacity 180ms ease;
}

.shipping-rate-panel-heading button:hover {
  color: var(--white);
  background: var(--ink);
}

.shipping-rate-panel-heading button:disabled {
  cursor: wait;
  opacity: 0.45;
}

.shipping-rate-status {
  min-height: 24px;
}

.shipping-rate-status[data-state="error"] {
  color: #8f2f45;
}

.shipping-rate-status[data-state="success"] {
  color: #315f48;
}

.shipping-rate-list {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.shipping-rate-card {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.shipping-rate-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shipping-rate-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.shipping-rate-card strong {
  color: var(--ink);
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  font-weight: 500;
}

.shipping-band-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(260px, 0.58fr);
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
  min-height: 108px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.shipping-band-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.shipping-band-services {
  display: grid;
  gap: 10px;
}

.shipping-band-services > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 18px;
}

.shipping-band-services span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.shipping-band-services strong {
  color: var(--ink);
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 500;
}

.shipping-band-card--express {
  grid-template-columns: 1fr auto;
}

.shipping-band-card--express p {
  max-width: 620px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.shipping-band-card--express > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.shipping-band-card--express > a:hover {
  color: var(--white);
  background: var(--ink);
}

.shipping-rate-basis {
  margin-top: 20px !important;
  color: var(--muted) !important;
  font-size: 0.82rem !important;
}

.privacy-cookie-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  border: 1px solid var(--line);
  background: var(--line);
}

.privacy-cookie-grid > div {
  min-height: 210px;
  padding: clamp(22px, 2.5vw, 34px);
  background: var(--paper);
}

.privacy-cookie-grid strong {
  display: block;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.privacy-cookie-grid p {
  margin-top: 12px;
}

.policy-help {
  padding: 70px 24px 78px;
  background: var(--powder);
  text-align: center;
}

.policy-help h2 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 0.94;
}

.policy-help p:not(.policy-kicker) {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.75;
}

.policy-help a {
  justify-self: center;
  margin-top: 24px;
}

.wholesale-faire {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto 88px;
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(560px, 0.62fr);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  padding: clamp(36px, 5vw, 72px);
  border: 1px solid var(--line);
  background: var(--paper);
  scroll-margin-top: 120px;
}

.wholesale-faire-copy {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.wholesale-faire-copy h2 {
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(2.4rem, 4.2vw, 5rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wholesale-faire-copy p:not(.policy-kicker) {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.75;
}

.wholesale-faire-copy a {
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0 24px;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.wholesale-faire-copy a:hover {
  color: var(--ink);
  background: var(--white);
}

.wholesale-faire-frame {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.wholesale-faire-frame iframe {
  width: 100%;
  height: min(600px, 62vw);
  min-height: 480px;
  display: block;
  border: 0;
}

.sitemap-page {
  padding-top: 112px;
  background: #fff;
}

.sitemap-hero {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 82px 0 38px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.sitemap-hero h1 {
  margin: 10px 0 0;
  font-size: clamp(3.2rem, 8vw, 8rem);
  line-height: 0.9;
}

.sitemap-hero p:not(.policy-kicker) {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--wine);
  font-size: 1rem;
  line-height: 1.7;
}

.sitemap-content {
  display: grid;
  gap: 44px;
  width: min(100% - 48px, 1180px);
  margin: 42px auto 92px;
}

.sitemap-panel {
  display: grid;
  gap: 22px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.sitemap-panel-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.sitemap-panel-heading h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sitemap-panel-heading span,
.sitemap-status {
  color: var(--wine);
  font-size: 0.82rem;
}

.sitemap-status {
  margin: -8px 0 0;
}

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-list--columns,
.sitemap-list--products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sitemap-list li {
  min-width: 0;
}

.sitemap-list a {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.45;
  text-decoration: none;
}

.sitemap-list a:hover {
  color: var(--rose);
}

@media (max-width: 900px) {
  .sitemap-page {
    padding-top: 102px;
  }

  .sitemap-hero,
  .sitemap-content {
    width: min(100% - 32px, 680px);
  }

  .sitemap-hero {
    padding: 56px 0 30px;
  }

  .sitemap-panel-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .sitemap-list,
  .sitemap-list--columns,
  .sitemap-list--products {
    grid-template-columns: 1fr;
    gap: 9px;
  }
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: 54px;
  padding: 58px 34px 26px;
  border-top: 1px solid var(--line);
  color: var(--wine);
  background: var(--powder);
}

.footer-contact {
  max-width: 380px;
}

.footer-kicker {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact-lead {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

.footer-contact p:not(.footer-kicker) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-contact-actions a {
  display: inline-grid;
  place-items: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--rose);
  color: var(--wine);
  background: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-contact-actions a:hover {
  color: var(--white);
  background: var(--rose);
}

.footer-note {
  max-width: 440px;
  font-size: 0.82rem;
}

.footer-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 34px;
}

.footer-links,
.footer-follow,
.footer-payments {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-heading {
  margin: 0 0 8px;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-follow p,
.footer-payments span {
  color: var(--wine);
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: var(--rose);
}

.footer-follow p:not(.footer-heading) {
  max-width: 220px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(160, 82, 104, 0.18);
  background: rgba(255, 255, 255, 0.48);
  color: var(--wine);
}

.footer-socials a:hover {
  color: var(--white);
  background: var(--rose);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-icon {
  width: 38px;
  height: 24px;
  display: block;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.footer-bottom span {
  margin: 0 auto;
}

.search-drawer {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  align-content: start;
  gap: 10px;
  max-height: 100svh;
  padding: 18px 28px 22px;
  color: var(--wine);
  background: rgba(255, 250, 251, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(-110%);
  transition: transform 220ms ease;
}

.search-drawer.has-search-overflow {
  height: 100svh;
}

.search-drawer.is-open {
  transform: translateY(0);
}

.search-drawer-form {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  width: min(980px, 100%);
  margin: 0 auto;
}

.search-drawer-input {
  min-width: 0;
  height: 42px;
  border: 0;
  border-bottom: 1px solid var(--wine);
  color: var(--wine);
  background: transparent;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.42rem);
  font-weight: 400;
  outline: 0;
}

.search-icon-button {
  width: 42px;
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--wine);
  background: transparent;
  cursor: pointer;
}

.bag-drawer button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: var(--wine);
  background: var(--petal);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.search-icon-button:hover {
  background: var(--petal);
}

.search-icon-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-drawer-status {
  width: min(980px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.86rem;
}

.search-drawer-results {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  min-height: 0;
  max-height: none;
  margin: 0 auto;
  padding: 0 6px 26px 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.search-result {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.search-result-media {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--soft);
}

.search-result img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease, opacity 180ms ease;
}

.search-result:hover img {
  opacity: 0.92;
  transform: scale(1.01);
}

.search-result strong {
  color: var(--wine);
  font-size: 0.86rem;
  line-height: 1.2;
}

.search-result span {
  color: var(--muted);
  font-size: 0.78rem;
}

.search-scroll-hint {
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  bottom: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--wine);
  background: rgba(255, 250, 251, 0.96);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(71, 43, 53, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
  cursor: pointer;
}

.search-scroll-hint svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-drawer.is-open.has-search-overflow:not(.is-search-at-end) .search-scroll-hint {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  animation: search-scroll-bounce 1300ms ease-in-out infinite;
}

@keyframes search-scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

.bag-overlay {
  position: fixed;
  inset: 0;
  z-index: 28;
  display: grid;
  justify-items: end;
  background: rgba(21, 19, 19, 0);
  opacity: 0;
  pointer-events: none;
  transition: background 220ms ease, opacity 220ms ease;
}

.bag-overlay.is-open {
  background: rgba(21, 19, 19, 0.2);
  opacity: 1;
  pointer-events: auto;
}

.bag-drawer {
  width: min(430px, 100vw);
  height: 100%;
  height: 100dvh;
  max-height: 100%;
  max-height: 100dvh;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  overscroll-behavior: contain;
  color: var(--ink);
  background: var(--white);
  box-shadow: -18px 0 42px rgba(21, 19, 19, 0.16);
  transform: translateX(100%);
  transition: transform 260ms ease;
}

.bag-overlay.is-open .bag-drawer {
  transform: translateX(0);
}

.bag-drawer header,
.bag-drawer footer {
  min-width: 0;
  padding: 22px;
}

.bag-drawer header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.bag-title {
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.95;
  text-transform: uppercase;
}

.bag-items {
  min-width: 0;
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}

.bag-items.is-updating {
  cursor: wait;
}

.bag-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
}

.bag-item.is-updating {
  opacity: 0.55;
  pointer-events: none;
}

.bag-item img {
  width: 76px;
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
  background: var(--soft);
}

.bag-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.bag-item span,
.bag-items p {
  color: var(--ink);
  font-size: 0.84rem;
}

.bag-item-detail {
  min-width: 0;
}

.bag-item-price {
  display: block;
  margin-top: 4px;
}

.bag-recommendations {
  min-width: 0;
  display: grid;
  gap: 12px;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.bag-recommendations h3 {
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: uppercase;
}

.bag-recommendation-list {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.bag-recommendation {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 5px;
  color: var(--ink);
  text-decoration: none;
}

.bag-recommendation img {
  width: 100%;
  aspect-ratio: 10 / 13;
  object-fit: cover;
  background: var(--soft);
}

.bag-recommendation span,
.bag-recommendation strong {
  overflow-wrap: anywhere;
  font-size: 0.72rem;
  line-height: 1.25;
}

.bag-recommendation strong {
  font-weight: 500;
}

.bag-item-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.bag-quantity {
  height: 34px;
  display: inline-grid;
  grid-template-columns: 32px 42px 32px;
  border: 1px solid var(--line);
  background: var(--white);
}

.bag-drawer .bag-quantity-button,
.bag-drawer .bag-remove {
  min-height: 0;
  border: 0;
  color: var(--ink);
  background: var(--white);
  font-weight: 400;
}

.bag-drawer .bag-quantity-button {
  width: 32px;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
}

.bag-drawer .bag-quantity-button:hover,
.bag-drawer .bag-remove:hover {
  color: var(--rose);
  background: var(--white);
}

.bag-quantity-input {
  width: 42px;
  min-width: 0;
  border: 0;
  border-inline: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.82rem;
  text-align: center;
  outline: 0;
  appearance: textfield;
}

.bag-quantity-input::-webkit-outer-spin-button,
.bag-quantity-input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.bag-drawer .bag-remove {
  min-height: 34px;
  padding: 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bag-error {
  margin: 0;
  padding: 10px 12px;
  color: var(--wine);
  background: var(--petal);
  font-size: 0.78rem;
}

.bag-drawer footer {
  display: grid;
  gap: 12px;
  padding-bottom: calc(22px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
}

.bag-drawer footer > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.bag-shipping-progress {
  display: grid;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--petal);
}

.bag-shipping-progress[hidden] {
  display: none;
}

.bag-shipping-progress p {
  margin: 0;
}

.bag-shipping-progress p {
  font-size: 0.8rem;
  line-height: 1.4;
}

.checkout-button {
  min-height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--wine);
  border: 1px solid var(--wine);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.checkout-button:hover {
  color: var(--wine);
  background: transparent;
}

.checkout-button.is-loading,
[data-checkout-url].is-loading {
  cursor: wait;
  pointer-events: none;
  opacity: 0.72;
}

.bag-link {
  justify-self: center;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.checkout-page {
  min-height: 100vh;
  padding: 138px 24px 80px;
  color: var(--ink);
  background: var(--white);
}

.checkout-page-heading,
.checkout-page-layout {
  width: min(1240px, 100%);
  margin-inline: auto;
}

.checkout-page-heading {
  padding-bottom: 38px;
  text-align: center;
}

.checkout-page-heading h1 {
  margin: 7px 0 10px;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: 1;
}

.checkout-page-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.checkout-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  align-items: start;
  gap: clamp(36px, 6vw, 80px);
}

.checkout-page-items {
  min-width: 0;
  border-top: 1px solid var(--line);
}

.checkout-page-items.is-updating {
  cursor: wait;
  opacity: 0.62;
}

.checkout-page-items .bag-item {
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-page-items .bag-item img {
  width: 118px;
  aspect-ratio: 2 / 3;
}

.checkout-page-items .bag-item strong {
  font-size: 1rem;
  font-weight: 500;
}

.checkout-page .bag-quantity-button,
.checkout-page .bag-remove {
  min-height: 0;
  border: 0;
  color: var(--ink);
  background: var(--white);
  font-weight: 400;
}

.checkout-page .bag-quantity-button {
  width: 32px;
  padding: 0;
}

.checkout-page .bag-remove {
  min-height: 34px;
  padding: 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-page-summary {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.checkout-page-summary h2 {
  margin: 0 0 4px;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 400;
}

.checkout-page-subtotal {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.checkout-page-summary .checkout-button[hidden] {
  display: none;
}

.checkout-page-continue {
  justify-self: center;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.checkout-page-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
  text-align: center;
}

.checkout-page-empty {
  min-height: 330px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  padding: 50px 24px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.checkout-page-empty h2,
.checkout-page-empty p {
  margin: 0;
}

.checkout-page-empty h2 {
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.checkout-page-empty p {
  max-width: 430px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.checkout-page-empty a {
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  margin-top: 6px;
  padding: 0 22px;
  color: var(--white);
  background: var(--wine);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .checkout-page {
    padding: 112px 16px 54px;
  }

  .checkout-page-heading {
    padding-bottom: 26px;
  }

  .checkout-page-heading h1 {
    font-size: 2.8rem;
  }

  .checkout-page-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .checkout-page-items .bag-item {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 15px;
  }

  .checkout-page-items .bag-item img {
    width: 92px;
  }

  .checkout-page-summary {
    position: static;
    padding: 22px 18px;
  }
}

.shortlist-item a {
  color: var(--ink);
}

.shortlist-item {
  grid-template-columns: 76px minmax(0, 1fr) 34px;
  align-items: center;
}

.shortlist-item-image {
  align-self: stretch;
}

.shortlist-item-title {
  display: inline-block;
}

.shortlist-item-copy {
  min-width: 0;
  align-self: center;
  display: grid;
  align-content: center;
  gap: 4px;
}

.shortlist-item-copy strong {
  margin: 0;
  line-height: 1.25;
}

.shortlist-item-price {
  display: block;
  color: var(--muted);
}

.shortlist-remove {
  width: 34px;
  height: 34px;
  align-self: center;
  justify-self: end;
  display: inline-grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.shortlist-remove svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.shortlist-remove:hover {
  color: var(--rose);
}

.shortlist-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

.collection-main {
  padding-top: 90px;
  background: var(--white);
}

.collection-loading {
  min-height: 520px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.collection-loading p {
  margin: 0;
}

.collection-main.is-loading .collection-grid,
.collection-main.is-loading .collection-story {
  display: none;
}

.collection-main.is-ready .collection-loading,
.collection-main.is-error .collection-loading {
  display: none;
}

.collection-main.is-ready .collection-grid {
  animation: collectionReveal 180ms ease both;
}

@keyframes collectionReveal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.collection-heading {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 16px;
  text-align: center;
}

.collection-heading h1 {
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(2.35rem, 4.4vw, 5.1rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.collection-heading p {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.collection-subnav {
  position: sticky;
  top: 90px;
  z-index: 8;
  display: flex;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  scrollbar-width: none;
}

.collection-subnav::-webkit-scrollbar {
  display: none;
}

.collection-subnav a {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0 18px;
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-subnav a:hover,
.collection-subnav a.is-active {
  color: var(--ink);
  background: var(--powder);
}

.collection-toolbar {
  width: min(1560px, calc(100% - 32px));
  margin: 0 auto 16px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-toolbar:has(+ .collection-filters.is-open) {
  margin-bottom: 0;
}

.collection-toolbar-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.collection-toolbar > [data-collection-filter-summary] {
  display: none;
}

.collection-filter-toggle,
.collection-sort-control {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  font: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-filter-toggle {
  position: relative;
  padding: 0 14px;
  cursor: pointer;
}

.collection-filter-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.collection-filter-badge {
  min-width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  color: var(--white);
  background: #c6203f;
  border-radius: 999px;
  font-size: 0.58rem;
  line-height: 1;
}

.collection-filter-badge[hidden] {
  display: none;
}

.collection-sort-control {
  width: max-content;
  min-width: 158px;
  justify-content: space-between;
  padding: 0 8px 0 13px;
}

.collection-sort-control select {
  appearance: none;
  min-height: 30px;
  min-width: 128px;
  padding: 0 24px 0 10px;
  color: var(--ink);
  background:
    linear-gradient(45deg, transparent 50%, currentColor 50%) calc(100% - 11px) 50% / 5px 5px no-repeat,
    linear-gradient(135deg, currentColor 50%, transparent 50%) calc(100% - 7px) 50% / 5px 5px no-repeat,
    transparent;
  border: 0;
  font: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.collection-filters {
  width: min(1560px, calc(100% - 32px));
  margin: 0 auto 24px;
  display: none;
}

.collection-filters.is-open {
  display: block;
}

.collection-filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(170px, 0.7fr) minmax(190px, 0.78fr) minmax(260px, 1fr) auto;
  align-items: start;
  gap: 22px;
  padding: 22px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.collection-filter-header {
  display: none;
}

.collection-filter-group {
  display: grid;
  gap: 12px;
}

.collection-filter-group h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collection-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.collection-size-options button {
  min-width: 42px;
  min-height: 34px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  font: inherit;
  font-size: 0.68rem;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.collection-size-options button:hover,
.collection-size-options button.is-selected {
  border-color: var(--ink);
  background: var(--white);
}

.collection-size-options button:disabled {
  opacity: 0.36;
  cursor: not-allowed;
}

.collection-stock-options {
  display: grid;
  gap: 9px;
}

.collection-stock-options label {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.collection-stock-options input {
  width: 14px;
  height: 14px;
  accent-color: var(--ink);
}

.collection-price-readout {
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.collection-price-range {
  position: relative;
  min-height: 38px;
  display: grid;
  align-items: center;
}

.collection-price-range::before,
.collection-price-range-track {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}

.collection-price-range::before {
  background: var(--line);
}

.collection-price-range-track {
  background: var(--ink);
}

.collection-price-range input {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 38px;
  margin: 0;
  background: transparent;
  appearance: none;
  pointer-events: none;
  transform: translateY(-50%);
}

.collection-price-range input::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -8px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  pointer-events: auto;
}

.collection-price-range input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  pointer-events: auto;
}

.collection-price-range input::-webkit-slider-runnable-track {
  height: 2px;
  background: transparent;
}

.collection-price-range input::-moz-range-track {
  height: 2px;
  background: transparent;
}

.collection-filter-footer {
  display: grid;
  gap: 8px;
  min-width: 120px;
}

.collection-filter-result-count {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.collection-filter-footer button,
.collection-filter-header button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.collection-filter-footer button:last-child {
  color: var(--white);
  background: var(--ink);
}

.collection-grid {
  width: min(1560px, calc(100% - 32px));
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 12px;
}

.collection-card {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.collection-card a {
  color: var(--ink);
}

.collection-card-media {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #fff;
}

.collection-card-image-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

.collection-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  transition: opacity 260ms ease, filter 220ms ease;
}

.collection-card-image--hover {
  opacity: 0;
}

.collection-card:hover .collection-card-image--primary {
  opacity: 0;
}

.collection-card:hover .collection-card-image--hover {
  opacity: 1;
}

.collection-card:hover img {
  filter: brightness(0.97) saturate(1.02);
}

.collection-card-ribbon {
  position: absolute;
  top: 17px;
  left: -38px;
  z-index: 4;
  width: 142px;
  min-height: 24px;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  padding-right: 10px;
  color: var(--white);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-45deg);
  transform-origin: center;
  pointer-events: none;
  box-shadow: 0 9px 20px rgba(21, 19, 19, 0.16);
}

.collection-card-ribbon[hidden] {
  display: none;
}

.collection-card-ribbon--sale {
  background: #c6203f;
}

.collection-card-ribbon--preorder {
  background: var(--wine);
}

.collection-card-ribbon--promotion {
  background: #d05f7d;
}

.collection-card-ribbon--secondary {
  top: 47px;
  left: -31px;
}

.collection-card-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.collection-card-wishlist:hover,
.collection-card-wishlist.is-saved {
  color: #c6203f;
  background: var(--white);
}

.collection-card-wishlist:active {
  transform: scale(0.94);
}

.collection-card-wishlist.is-saved svg {
  fill: currentColor;
}

.collection-card-wishlist svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.collection-quick {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: grid;
  gap: 9px;
  padding: 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(21, 19, 19, 0.12);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.collection-quick p {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.collection-quick-sizes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.collection-quick-sizes span {
  color: var(--muted);
  font-size: 0.72rem;
}

.collection-quick-size {
  min-width: 34px;
  min-height: 30px;
  padding: 0 7px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.66rem;
  cursor: pointer;
}

.collection-quick-size:hover,
.collection-quick-size.is-selected {
  border-color: var(--ink);
}

.collection-quick-size:disabled {
  color: rgba(21, 19, 19, 0.34);
  background: #f7f3f4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.collection-quick-add,
.collection-quick-details {
  min-height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  font: inherit;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.collection-quick-add {
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
}

.collection-quick-add:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.collection-quick-details {
  color: var(--ink);
  background: var(--white);
}

.collection-card:hover .collection-quick,
.collection-card:focus-within .collection-quick {
  opacity: 1;
  transform: translateY(0);
}

.collection-card-info {
  padding: 0 2px;
  text-align: center;
}

.collection-card-line {
  display: grid;
  justify-items: center;
  gap: 5px;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
}

.collection-card-title {
  color: var(--ink);
  font-weight: 400;
}

.collection-card-separator {
  display: none;
}

.collection-card-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
}

.collection-card-price {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--muted);
}

.collection-card-price s[hidden] {
  display: none;
}

.collection-card-swatches {
  display: flex;
  gap: 5px;
  margin-top: 3px;
}

.collection-card-swatches span {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(21, 19, 19, 0.22);
  border-radius: 999px;
  background: var(--petal);
}

.collection-card-sizes {
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.collection-story {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 72px;
  text-align: center;
}

.collection-story h2 {
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(1.9rem, 3.4vw, 3.7rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.collection-story p {
  margin: 18px auto 0;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.75;
}

.collection-story-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  margin-top: 24px;
}

.collection-story-links:empty {
  display: none;
}

.collection-story-links a {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  line-height: 1.7;
  text-decoration: none;
  text-transform: uppercase;
}

.collection-story-links a:hover,
.collection-story-links a:focus-visible {
  color: var(--rose-deep);
}

.add-notice {
  position: fixed;
  top: 94px;
  right: 22px;
  z-index: 46;
  width: min(360px, calc(100vw - 32px));
  display: grid;
  gap: 8px;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.add-notice.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.add-notice-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.add-notice-close svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.add-notice-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.add-notice strong {
  display: block;
  max-width: calc(100% - 34px);
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: 1.48rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.add-notice span {
  color: var(--muted);
  font-size: 0.82rem;
}

.add-notice-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 6px;
}

.add-notice-actions button,
.add-notice-actions a {
  min-height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.add-notice-actions a {
  color: var(--white);
  background: var(--ink);
}

.product-main {
  padding-top: 112px;
  background: var(--white);
}

.product-breadcrumb {
  width: min(1520px, calc(100% - 48px));
  margin: 0 auto 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-breadcrumb a::after {
  content: "/";
  margin-left: 8px;
  color: var(--line);
}

.product-shell {
  width: min(1520px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, min(38vw, 656px, calc((100vh - 146px) * 0.8))) 136px minmax(420px, 1fr);
  gap: 16px;
  align-items: start;
}

.product-gallery {
  position: relative;
  display: contents;
}

.product-gallery-controls {
  display: none;
}

.product-gallery-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 20px rgba(21, 19, 19, 0.14);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.product-gallery-arrow svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.product-thumbs {
  grid-column: 2;
  grid-row: 1;
  position: sticky;
  top: 114px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 8px;
}

.product-thumb-nav {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(21, 19, 19, 0.18);
  background: var(--white);
  opacity: 0.72;
  transition: border-color 180ms ease, opacity 180ms ease;
}

.product-thumb-nav.is-active,
.product-thumb-nav:hover {
  border-color: var(--ink);
  opacity: 1;
}

.product-thumb-nav img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media {
  display: grid;
  place-items: center;
  grid-column: 1;
  grid-row: 1;
  position: sticky;
  top: 114px;
  margin: 0;
  width: 100%;
  height: auto;
  max-height: min(calc(100vh - 146px), 820px);
  aspect-ratio: 4 / 5;
  min-height: 0;
  overflow: hidden;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 850ms ease;
}

.product-media--large,
.product-media.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.product-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center center;
}

.product-media[role="button"] {
  cursor: zoom-in;
}

body.product-zoom-open {
  overflow: hidden;
}

.product-zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 12px;
  padding: 74px 24px 24px;
  background: rgba(255, 255, 255, 0.98);
}

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

.product-zoom-viewport {
  position: relative;
  width: 100%;
  height: calc(100vh - 98px);
  overflow: hidden;
  touch-action: none;
  cursor: zoom-in;
}

.product-zoom-viewport.is-zoomed {
  cursor: grab;
}

.product-zoom-viewport.is-zoomed:active {
  cursor: grabbing;
}

.product-zoom-viewport img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform-origin: center;
  user-select: none;
  will-change: transform;
}

.product-zoom-close,
.product-zoom-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.product-zoom-close:hover,
.product-zoom-close:focus-visible,
.product-zoom-arrow:hover,
.product-zoom-arrow:focus-visible {
  border-color: var(--ink);
}

.product-zoom-close {
  position: absolute;
  top: 18px;
  right: 20px;
}

.product-zoom-arrow {
  justify-self: center;
}

.product-zoom-close svg,
.product-zoom-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.product-ribbon {
  top: 22px;
  left: -45px;
  width: 166px;
  min-height: 28px;
  font-size: 0.68rem;
}

.product-ribbon--secondary {
  top: 59px;
  left: -38px;
}

.product-purchase {
  grid-column: 3;
  grid-row: 1;
  position: sticky;
  top: 112px;
  height: calc(100vh - 132px);
  overflow-y: auto;
  overscroll-behavior-y: auto;
  scrollbar-width: thin;
  display: grid;
  align-content: start;
  padding: 18px 8px 36px 0;
}

.product-purchase h1 {
  max-width: none;
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(2.2rem, 3.6vw, 3.65rem);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.product-style {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h2.product-style {
  font-family: inherit;
  font-weight: 400;
  line-height: inherit;
}

.product-style-row {
  min-height: 22px;
  margin: 8px 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 12px;
}

.product-style-row .product-style {
  margin: 0;
}

.product-rating-snippet {
  min-height: 18px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--ink);
  font-size: 0.72rem;
  line-height: 1;
  vertical-align: middle;
}

.product-rating-snippet i[class^="ruk-icon-"],
.product-rating-snippet i[class*=" ruk-icon-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: middle;
  transform: translateY(-2px);
}

.product-rating-snippet .ruk-rating-snippet-count {
  display: inline-flex;
  align-items: center;
  margin-left: 3px !important;
  line-height: 1;
  vertical-align: middle;
  transform: translateY(1px);
}

.product-rating-fallback-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 0.04em;
  transform: translateY(-2px);
}

.product-rating-snippet:empty {
  display: none;
}

.product-social-share {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-height: 34px;
  margin-top: 7px;
}

.product-social-hashtag,
.product-social-instagram-share {
  border: 0;
  background: transparent;
  color: var(--rose);
  cursor: pointer;
}

.product-social-hashtag {
  min-width: 0;
  padding: 4px 0;
  overflow-wrap: anywhere;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: left;
}

.product-social-instagram-share {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  transition: transform 180ms ease;
}

.product-social-hashtag:hover,
.product-social-hashtag:focus-visible,
.product-social-instagram-share:hover,
.product-social-instagram-share:focus-visible {
  color: var(--wine);
}

.product-social-instagram-share:hover,
.product-social-instagram-share:focus-visible {
  transform: scale(1.06);
}

.product-social-instagram-share img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.product-instagram-redirect {
  position: fixed;
  inset: 0;
  z-index: 2147482500;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(29, 20, 25, 0.58);
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-instagram-redirect.is-visible {
  opacity: 1;
}

.product-instagram-redirect__dialog {
  width: min(360px, 100%);
  padding: 28px 26px 24px;
  border: 1px solid rgba(137, 35, 73, 0.16);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(29, 20, 25, 0.24);
  color: var(--ink);
  text-align: center;
  transform: translateY(8px);
  transition: transform 180ms ease;
}

.product-instagram-redirect.is-visible .product-instagram-redirect__dialog {
  transform: translateY(0);
}

.product-instagram-redirect__icon {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.product-instagram-redirect__title,
.product-instagram-redirect__tag,
.product-instagram-redirect__status {
  display: block;
  letter-spacing: 0;
}

.product-instagram-redirect__title {
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 1.25;
}

.product-instagram-redirect__tag {
  margin-top: 8px;
  color: var(--rose);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.product-instagram-redirect__status {
  margin-top: 17px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.product-instagram-redirect__status b {
  display: inline-grid;
  min-width: 1.25em;
  place-items: center;
  color: var(--ink);
}

.product-instagram-redirect__progress {
  display: block;
  height: 3px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(137, 35, 73, 0.13);
}

.product-instagram-redirect__progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--rose);
  animation: product-instagram-redirect-progress 3s linear forwards;
}

@keyframes product-instagram-redirect-progress {
  to {
    width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-instagram-redirect,
  .product-instagram-redirect__dialog {
    transition: none;
  }

  .product-instagram-redirect__progress i {
    animation: none;
  }
}

body.reviews-popup #reviews_fade,
html.reviews-popup #reviews_fade,
#reviews_fade {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483000 !important;
}

body.reviews-popup #reviews_fade #reviews_container,
body.reviews-popup #reviews_fade #reviews_widget,
html.reviews-popup #reviews_fade #reviews_container,
html.reviews-popup #reviews_fade #reviews_widget,
#reviews_fade #reviews_container,
#reviews_fade #reviews_widget,
#reviews_container-close {
  z-index: 2147483001 !important;
}

.product-style[hidden] {
  display: none;
}

.product-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 18px 0 0;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.product-price-current {
  color: var(--ink);
}

.product-price-compare {
  color: var(--muted);
  text-decoration-thickness: 1px;
}

.product-saving {
  color: #9f4165;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-price:not(.is-sale) .product-price-compare,
.product-price:not(.is-sale) .product-saving {
  display: none;
}

.lv-preorder-countdown {
  display: grid;
  grid-template-columns: minmax(140px, 0.64fr) minmax(280px, 1fr);
  align-items: center;
  gap: 4px 18px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--rose);
  background: linear-gradient(90deg, #fff7f9 0%, #ffffff 100%);
  color: var(--ink);
  text-align: left;
}

.lv-preorder-countdown[hidden] {
  display: none;
}

.lv-preorder-countdown__headline,
.lv-preorder-countdown__subline {
  margin: 0;
}

.lv-preorder-countdown__headline {
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lv-preorder-countdown__subline {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lv-preorder-countdown__timer {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 0;
}

.lv-preorder-countdown__timer span {
  display: grid;
  gap: 0;
  min-height: 48px;
  padding: 7px 5px 6px;
  border: 1px solid rgba(234, 220, 225, 0.8);
  background: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.lv-preorder-countdown__timer strong {
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1;
}

.lv-preorder-countdown__timer em {
  color: var(--muted);
  font-size: 0.58rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-info {
  margin-top: 24px;
}

.product-info-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.product-info-tab {
  min-height: 34px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid transparent;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.product-info-tab.is-active,
.product-info-tab:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.product-info-panels {
  padding-top: 18px;
}

.product-info-panel[hidden] {
  display: none;
}

.product-copy,
.product-details-list,
.product-care-list,
.product-size-guide-copy,
.product-afterpay {
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.7;
}

.product-copy p {
  margin: 0;
}

.product-copy p + p {
  margin-top: 14px;
}

.product-details-list {
  margin: 0;
  padding-left: 18px;
}

.product-details-list li + li {
  margin-top: 7px;
}

.product-care-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.product-care-list div {
  display: grid;
  gap: 4px;
}

.product-care-list dt {
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-care-list dd {
  margin: 0;
  color: var(--muted);
}

.product-size-guide-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-size-guide-unit {
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.product-size-guide-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.product-size-guide-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.product-size-guide-table th,
.product-size-guide-table td {
  padding: 9px 8px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  font-size: 0.72rem;
}

.product-size-guide-table th:last-child,
.product-size-guide-table td:last-child {
  border-right: 0;
}

.product-size-guide-table thead th {
  color: var(--ink);
  background: var(--petal);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-size-guide-table tbody tr:last-child td {
  border-bottom: 0;
}

.product-size-guide-copy {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.78rem;
}

.product-size-guide-copy p {
  margin: 0;
}

.product-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.back-in-stock-alert {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.back-in-stock-heading h2 {
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.back-in-stock-heading p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.back-in-stock-alert form {
  display: grid;
  grid-template-columns: minmax(110px, 0.65fr) minmax(190px, 1.35fr);
  gap: 10px;
  margin-top: 14px;
}

.back-in-stock-alert label:not(.back-in-stock-push) {
  display: grid;
  gap: 6px;
}

.back-in-stock-alert label > span:first-child {
  color: var(--ink);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.back-in-stock-alert select,
.back-in-stock-alert input[type="email"] {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.78rem;
}

.back-in-stock-push {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 28px;
  color: var(--ink);
  font-size: 0.76rem;
}

.back-in-stock-push[hidden] {
  display: none;
}

.back-in-stock-push input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--ink);
}

.back-in-stock-alert button[type="submit"] {
  grid-column: 1 / -1;
  min-height: 46px;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.back-in-stock-alert button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: wait;
}

.back-in-stock-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.product-size-guide[hidden] {
  display: none;
}

.product-size-guide {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.product-size-guide--modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 28px;
  border: 0;
  background: rgba(21, 19, 19, 0.34);
}

.product-size-guide--modal .product-size-guide-head {
  padding-right: 54px;
}

.product-size-guide-panel {
  position: relative;
  width: min(980px, 100%);
  max-height: min(760px, calc(100vh - 56px));
  overflow: auto;
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-size-guide-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.product-size-guide-close:hover {
  border-color: var(--ink);
}

.product-size-guide-close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.product-size-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-size-heading h2 {
  margin: 0;
  font: inherit;
  font-weight: 400;
  letter-spacing: inherit;
  text-transform: inherit;
}

.product-size-heading a,
.product-size-heading button {
  border-bottom: 1px solid currentColor;
  color: inherit;
  background: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  padding: 0;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.product-sizes {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 6px;
}

.product-size-select-wrap {
  position: relative;
  display: none;
}

.product-size-select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
}

.product-size-select-wrap select {
  width: 100%;
  min-height: 48px;
  padding: 0 44px 0 14px;
  border: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  appearance: none;
}

.size-option {
  min-height: 42px;
  padding: 0 8px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.78rem;
  cursor: pointer;
}

.size-option--wide {
  font-size: 0.64rem;
}

.size-option.is-selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.size-option.is-unavailable {
  color: rgba(21, 19, 19, 0.34);
  background:
    linear-gradient(to top left, transparent calc(50% - 0.5px), rgba(21, 19, 19, 0.32), transparent calc(50% + 0.5px)),
    var(--white);
  cursor: not-allowed;
}

.product-size-status {
  margin: 0;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.product-add {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.product-add:hover {
  color: var(--ink);
  background: var(--white);
}

.product-add:disabled {
  opacity: 0.46;
  cursor: not-allowed;
}

.product-afterpay {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  color: var(--muted);
}

.product-afterpay p {
  margin: 0;
  color: var(--muted);
}

[data-delivery-note][hidden],
.product-shell[data-preorder-tag-code] [data-delivery-note] {
  display: none;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-tags a {
  padding: 5px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-related {
  width: min(1520px, calc(100% - 48px));
  margin: 78px auto 0;
  padding: 44px 0 58px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.product-recently-viewed {
  width: min(1520px, calc(100% - 48px));
  margin: 54px auto 0;
  padding: 44px 0 12px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.product-recently-viewed h2 {
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.recently-viewed-products {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.recently-viewed-product {
  display: grid;
  gap: 9px;
  min-width: 0;
  text-align: center;
}

.recently-viewed-product img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  background: var(--white);
}

.recently-viewed-product span {
  color: var(--ink);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.recently-viewed-product small {
  color: var(--muted);
  font-size: 0.74rem;
}

.recently-viewed-product s {
  margin-left: 4px;
}

.product-recently-viewed + .product-related {
  margin-top: 28px;
}

.product-community {
  width: min(1520px, calc(100% - 48px));
  margin: 78px auto 0;
  padding: 44px 0 10px;
  border-top: 1px solid var(--line);
}

.product-community[hidden] {
  display: none;
}

.product-community-heading {
  position: relative;
  min-height: 38px;
  padding: 0 96px;
  text-align: center;
}

.product-community-heading > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-community-heading h2 {
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.product-community-tag {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0;
  text-align: center;
}

.product-community-controls {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  gap: 7px;
  transform: translateY(-50%);
}

.product-community-controls button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.product-community-controls button:hover,
.product-community-controls button:focus-visible {
  border-color: var(--rose);
  color: var(--rose);
}

.product-community-controls button:disabled {
  opacity: 0.35;
  cursor: default;
}

.product-community-controls svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.product-community-track {
  --community-columns: 5;
  display: grid;
  grid-template-columns: repeat(var(--community-columns), minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
  padding-bottom: 10px;
  overflow: hidden;
}

.product-community-item {
  position: relative;
  display: block;
  min-width: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--powder);
}

.product-community-item-layer {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 1;
  transform: scale(1);
  transition: opacity 620ms ease, transform 760ms ease;
}

.product-community-item-layer--incoming {
  z-index: 2;
  opacity: 0;
  transform: scale(1.018);
}

.product-community-item.is-fading .product-community-item-layer--current {
  opacity: 0;
  transform: scale(1.012);
}

.product-community-item.is-fading .product-community-item-layer--incoming {
  opacity: 1;
  transform: scale(1);
}

.product-community-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-community-item-meta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 42px;
  padding: 9px 11px;
  background: rgba(21, 19, 19, 0.76);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0;
}

.product-community[data-preview="true"] .product-community-item-meta {
  background: rgba(21, 19, 19, 0.68);
}

.product-community-item-meta svg {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.product-community:not([hidden]) + .product-related {
  margin-top: 36px;
}

.product-related h2 {
  margin: 0;
  font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.related-products {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.related-product {
  display: grid;
  gap: 9px;
  text-align: center;
}

.related-product img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  background: var(--white);
}

.related-product span {
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.related-product small {
  color: var(--muted);
  font-size: 0.76rem;
}

.product-footer {
  margin-top: 0;
}

@media (max-width: 1120px) {
  .header-main {
    padding: 0 22px;
  }

  .site-nav {
    gap: 10px;
    font-size: 0.68rem;
    max-width: min(600px, calc(100vw - 300px));
  }

  .brand {
    width: 62px;
    min-width: 62px;
  }

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

  .editorial-band {
    grid-template-columns: 1fr 1fr;
  }

  .wide-story a {
    min-height: 560px;
  }

  .editorial-panel {
    min-height: 520px;
  }

  .editorial-copy-grid,
  .editorial-copy-grid--single {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 920px;
  }

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

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

  .product-shell {
    grid-template-columns: minmax(280px, min(38vw, 608px, calc((100vh - 132px) * 0.8))) 112px minmax(400px, 1fr);
    gap: 16px;
  }

  .product-thumb-nav {
    width: 100%;
  }

  .product-media {
    max-height: min(calc(100vh - 132px), 760px);
  }

  .product-sizes {
    gap: 5px;
  }

  .size-option {
    min-height: 40px;
    padding: 0 5px;
    font-size: 0.7rem;
  }

  .size-option--wide {
    font-size: 0.58rem;
  }

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

  .editorial-large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .preference-overlay {
    align-items: end;
    padding: 12px;
  }

  .preference-modal {
    width: 100%;
    max-height: min(720px, calc(100svh - 24px));
    padding: 38px 20px 24px;
  }

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

  .preference-modal-actions {
    grid-template-columns: 1fr;
  }

  .preference-overlay--install .preference-modal,
  .preference-overlay--notifications .preference-modal {
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }

  .site-header {
    color: var(--wine);
    background: var(--white);
    box-shadow: none;
  }

  .promo-strip {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 10px;
    overflow: hidden;
    font-size: 0.54rem;
    letter-spacing: 0.06em;
    line-height: 1;
  }

  .promo-strip--reviews {
    display: flex;
  }

  .promo-reviews-link {
    min-width: 0;
    max-width: 100%;
    flex: 0 1 auto;
    gap: 6px;
  }

  .promo-reviews-verdict,
  .promo-strip-message,
  .promo-strip-divider {
    display: none;
  }

  .promo-reviews-stars {
    flex: 0 0 auto;
    font-size: 0.58rem;
    letter-spacing: 0.02em;
  }

  .promo-reviews-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .promo-reviews-text {
    flex: 0 1 auto;
    letter-spacing: 0.04em;
  }

  .header-main {
    height: 54px;
    min-height: 0;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
  }

  .brand {
    position: static;
    transform: none;
    width: 68px;
    min-width: 68px;
  }

  .brand img {
    filter: none;
  }

  .mobile-header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-left: auto;
  }

  .mobile-header-search {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: inline-grid;
    margin-left: 0;
    color: var(--ink);
  }

  .mobile-header-actions .icon-link {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    color: var(--ink);
  }

  .mobile-header-actions .icon-link svg,
  .mobile-header-search svg {
    width: 18px;
    height: 18px;
  }

  .nav-toggle {
    display: inline-grid;
    margin-left: 0;
    width: 36px;
    height: 36px;
    align-content: center;
    place-items: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    display: grid;
    place-items: center;
    width: 22px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    inset: 84px 0 calc(72px + env(safe-area-inset-bottom));
    display: none;
    max-width: none;
    height: auto;
    max-height: none;
    white-space: normal;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 8px 24px 18px;
    color: var(--ink);
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 0;
    box-shadow: none;
    scrollbar-width: thin;
  }

  .site-header.nav-open .site-nav {
    display: grid;
    gap: 0;
    justify-items: stretch;
  }

  .nav-item {
    width: 100%;
    justify-self: stretch;
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .site-nav > a,
  .nav-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0;
    border-bottom: 1px solid var(--line);
    text-align: center;
    color: var(--ink);
    font-size: 0.82rem;
    letter-spacing: 0.09em;
  }

  .mega-menu {
    position: static;
    display: grid;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    max-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transform: none;
    transition: max-height 260ms ease, opacity 190ms ease, padding 220ms ease, margin 220ms ease;
  }

  .mega-menu::before {
    display: none;
  }

  .nav-item.is-open .mega-menu {
    width: 100%;
    max-width: 100%;
    max-height: 1800px;
    margin: 0 0 8px;
    padding: 16px 0 18px;
    opacity: 1;
    pointer-events: auto;
    display: grid;
    transform: none;
  }

  .mega-group {
    width: min(100%, 280px);
    justify-self: center;
    gap: 9px;
    justify-items: center;
    text-align: center;
  }

  .mega-title {
    font-size: 1.08rem;
    color: var(--ink);
  }

  .mega-link {
    display: block;
    width: 100%;
    text-align: center;
    color: var(--ink);
    font-size: 0.86rem;
    line-height: 1.25;
  }

  .mega-direct-links {
    display: grid;
    width: min(100%, 280px);
    justify-self: center;
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
    gap: 10px;
  }

  .mega-menu--single-list,
  .nav-item.is-open .mega-menu--single-list {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .mega-menu--single-list .mega-direct-links {
    width: min(100%, 280px);
    justify-self: center;
  }

  .mega-direct-link,
  .mega-view-all-link {
    display: block;
    min-width: 0;
    width: 100%;
    text-align: center;
  }

  .nav-item:hover .mega-menu,
  .nav-item:focus-within .mega-menu,
  .nav-item.is-open .mega-menu {
    transform: none;
  }

  .mega-view-all {
    width: min(100%, 280px);
    justify-self: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 14px;
  }

  .header-actions {
    display: none;
  }

  .site-header.nav-open .header-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 13;
    width: 100%;
    max-width: none;
    height: calc(72px + env(safe-area-inset-bottom));
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 18px env(safe-area-inset-bottom);
    color: var(--ink);
    background: var(--white);
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .site-header.nav-open .header-actions > [data-search-trigger],
  .site-header.nav-open .header-actions > [data-cart-trigger] {
    display: none;
  }

  .site-header.nav-open .header-actions .icon-link,
  .site-header.nav-open .header-actions .country-trigger {
    width: 38px;
    height: 38px;
    min-width: 38px;
    padding: 0;
  }

  .site-header.nav-open .header-actions .country-trigger {
    border-radius: 999px;
  }

  .site-header.nav-open .header-actions .country-trigger span:not(.country-trigger-flag) {
    display: none;
  }

  .site-header.nav-open .header-actions .icon-link svg {
    width: 18px;
    height: 18px;
  }

  .site-header.nav-open .country-picker {
    position: static;
  }

  .site-header.nav-open .country-menu {
    position: fixed;
    top: auto;
    right: auto;
    bottom: calc(72px + env(safe-area-inset-bottom));
    left: 50%;
    width: min(340px, calc(100vw - 28px));
    max-height: min(420px, calc(100svh - 112px));
    transform: translate(-50%, 8px);
  }

  .site-header.nav-open .country-picker.is-open .country-menu {
    transform: translate(-50%, 0);
  }

  .search-drawer {
    height: 100svh;
    max-height: 100svh;
    padding: 16px 18px 20px;
  }

  .search-drawer-form {
    grid-template-columns: 1fr auto auto;
  }

  .search-drawer-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
    min-height: 0;
    max-height: none;
    padding-right: 4px;
    padding-bottom: 34px;
  }

  .search-scroll-hint {
    right: 14px;
    bottom: 10px;
    width: 38px;
    height: 38px;
  }

  .hero {
    height: 100svh;
    min-height: 720px;
    place-items: center;
  }

  .hero-media {
    display: grid;
  }

  .hero-backdrop {
    width: auto;
    min-width: 100%;
    max-width: none;
    height: 100%;
    object-position: var(--image-focus-x, center) var(--image-focus-y, center);
  }

  .hero-rixo .hero-backdrop {
    transform: none;
  }

  .hero-copy {
    width: calc(100% - 32px);
    padding-top: 56px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11.6vw, 3.45rem);
  }

  .hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .section,
  .product-section,
  .seo-section {
    width: min(100% - 36px, 1480px);
  }

  .intro-section h2,
  .seo-section h2 {
    font-size: 2.3rem;
  }

  .category-mosaic {
    width: 100%;
    margin: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 0;
    overflow: hidden;
    background: var(--ink);
  }

  .category-tile {
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    margin: -1px 0 0 -1px;
  }

  .category-tile span,
  .editorial-panel small,
  .editorial-tile span {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 0.9;
  }

  .wide-story a {
    min-height: 560px;
  }

  .wide-story strong {
    font-size: clamp(2.4rem, 12vw, 4.2rem);
  }

  .editorial-trio {
    grid-template-columns: 1fr;
  }

  .editorial-copy {
    width: min(100% - 32px, 680px);
    padding: 46px 0 50px;
  }

  .editorial-copy-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .editorial-copy p,
  .editorial-copy-grid p {
    text-align: center;
  }

  .editorial-copy-actions {
    gap: 8px;
    margin-top: 22px;
  }

  .editorial-copy-actions a {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.68rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 680px);
    margin-bottom: 46px;
  }

  .trust-strip-item {
    min-height: 0;
    padding: 22px 18px;
  }

  .about-page {
    padding-top: 84px;
  }

  .about-hero {
    min-height: calc(100svh - 84px);
  }

  .about-hero-picture img {
    width: auto;
    height: 100%;
    transform: translate(-50%, -50%);
  }

  @container about-hero (min-aspect-ratio: 16 / 9) {
    .about-hero-picture img {
      width: 100%;
      height: auto;
    }
  }

  .about-hero-copy {
    width: calc(100% - 32px);
    gap: 12px;
  }

  .about-hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .about-intro {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .about-intro .about-copy {
    width: min(100% - 32px, 680px);
    padding: 52px 0;
  }

  .about-feature {
    width: min(100% - 32px, 680px);
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 52px 0;
  }

  .about-copy,
  .about-feature-copy {
    max-width: none;
    text-align: center;
  }

  .about-copy h2,
  .about-feature h2,
  .about-collections h2 {
    font-size: clamp(2.1rem, 10vw, 3.1rem);
  }

  .about-copy p:not(.about-kicker),
  .about-feature-copy p:not(.about-kicker),
  .about-values p {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .about-portrait {
    min-height: 0;
  }

  .about-portrait img {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .about-milestones {
    grid-template-columns: 1fr;
  }

  .about-milestones div {
    min-height: 126px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .about-feature figure {
    height: auto;
    aspect-ratio: 3 / 4;
    order: 2;
  }

  .about-feature-copy {
    order: 1;
  }

  .about-values {
    width: min(100% - 32px, 680px);
    grid-template-columns: 1fr;
    margin-bottom: 52px;
  }

  .about-values article {
    min-height: 190px;
  }

  .about-seo-copy {
    width: min(100% - 32px, 680px);
    padding: 0 0 52px;
  }

  .about-seo-copy h2 {
    font-size: clamp(2.1rem, 10vw, 3.1rem);
  }

  .about-seo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .about-collections {
    padding: 0 0 62px;
  }

  .about-collections-heading,
  .about-collection-grid {
    width: min(100% - 32px, 680px);
  }

  .about-collection-grid {
    grid-template-columns: 1fr;
  }

  .about-collection-grid a {
    aspect-ratio: 3 / 4.05;
  }

  .policy-page {
    padding-top: 84px;
  }

  .policy-hero {
    min-height: 520px;
  }

  .policy-hero--faq {
    min-height: calc(100svh - 84px);
  }

  .policy-hero--privacy {
    min-height: calc(100svh - 84px);
  }

  .policy-hero--terms {
    min-height: calc(100svh - 84px);
  }

  .policy-hero--shipping {
    min-height: calc(100svh - 84px);
  }

  .policy-hero--delivery {
    min-height: calc(100svh - 84px);
  }

  .policy-hero--returns {
    min-height: calc(100svh - 84px);
  }

  .wholesale-page .policy-hero {
    min-height: calc(100svh - 84px);
  }

  .policy-hero-copy {
    width: calc(100% - 32px);
    gap: 12px;
  }

  .policy-hero--returns .policy-hero-copy {
    justify-self: center;
    justify-items: center;
    width: calc(100% - 32px);
    margin-left: 0;
    text-align: center;
  }

  .policy-hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .policy-hero--returns h1 {
    max-width: 980px;
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .policy-intro {
    width: min(100% - 32px, 680px);
    padding: 48px 0;
  }

  .policy-intro h2,
  .policy-sidebar h2,
  .policy-help h2 {
    font-size: clamp(2.1rem, 10vw, 3.1rem);
  }

  .policy-highlights {
    grid-template-columns: 1fr;
  }

  .policy-highlights div {
    min-height: 122px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .policy-highlights div:last-child {
    border-bottom: 0;
  }

  .policy-content {
    width: min(100% - 32px, 680px);
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 52px 0;
  }

  .policy-sidebar {
    position: static;
    justify-items: center;
    text-align: center;
  }

  .policy-sidebar a {
    justify-self: center;
  }

  .policy-card {
    padding: 26px 22px;
    text-align: center;
  }

  .shipping-rate-panel-heading {
    display: grid;
    justify-items: center;
    gap: 22px;
  }

  .shipping-rate-panel-heading > div {
    justify-items: center;
  }

  .shipping-rate-card {
    min-height: 108px;
    gap: 16px;
    text-align: left;
  }

  .shipping-rate-card strong {
    font-size: 1.5rem;
  }

  .shipping-band-card,
  .shipping-band-card--express {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 14px;
    padding: 22px 0;
    text-align: center;
  }

  .shipping-band-services > div {
    grid-template-columns: 1fr auto;
    text-align: left;
  }

  .shipping-band-card--express > a {
    justify-self: center;
  }

  .privacy-cookie-grid {
    grid-template-columns: 1fr;
  }

  .privacy-cookie-grid > div {
    min-height: 0;
  }

  .policy-help {
    padding: 52px 20px 58px;
  }

  .wholesale-faire {
    width: min(100% - 32px, 680px);
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 52px;
    padding: 28px 20px;
    text-align: center;
  }

  .wholesale-faire-copy {
    justify-items: center;
  }

  .wholesale-faire-copy h2 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .wholesale-faire-frame iframe {
    height: 560px;
    min-height: 0;
  }

  .collection-main {
    padding-top: 90px;
  }

  .collection-heading {
    width: min(100% - 32px, 680px);
    padding: 28px 0 14px;
  }

  .collection-subnav {
    top: 84px;
    justify-content: flex-start;
    padding: 0 8px;
  }

  .collection-toolbar {
    width: calc(100% - 24px);
    min-height: 40px;
    margin-bottom: 14px;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    font-size: 0.66rem;
  }

  .collection-toolbar-actions {
    width: auto;
    justify-content: center;
  }

  .collection-filter-toggle,
  .collection-sort-control {
    min-height: 40px;
    font-size: 0.64rem;
  }

  .collection-filter-toggle {
    min-width: 132px;
  }

  .collection-sort-control {
    width: 100%;
    justify-content: space-between;
  }

  .collection-sort-control select {
    min-width: 0;
    width: 100%;
    font-size: 0.64rem;
  }

  .collection-filters {
    position: fixed;
    inset: 0;
    z-index: 18;
    width: 100%;
    margin: 0;
    display: grid;
    align-items: end;
    background: rgba(21, 19, 19, 0.26);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .collection-filters.is-open {
    display: grid;
    opacity: 1;
    pointer-events: auto;
  }

  .collection-filter-panel {
    max-height: calc(100svh - 72px);
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 18px 18px calc(20px + env(safe-area-inset-bottom));
    overflow-y: auto;
    background: var(--white);
    border: 0;
    box-shadow: 0 -18px 44px rgba(21, 19, 19, 0.18);
    transform: translateY(18px);
    transition: transform 180ms ease;
  }

  .collection-filters.is-open .collection-filter-panel {
    transform: translateY(0);
  }

  .collection-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .collection-filter-header h2 {
    margin: 0;
    font-family: "Didot", "Bodoni 72", "Baskerville", Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
  }

  .collection-filter-footer {
    grid-template-columns: 1fr 1fr;
  }

  .collection-filter-result-count {
    grid-column: 1 / -1;
  }

  .collection-grid {
    width: calc(100% - 16px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 8px;
    margin-bottom: 52px;
  }

  .collection-card-media {
    aspect-ratio: 2 / 3;
  }

  .collection-card-ribbon {
    --collection-ribbon-width: clamp(112px, 23vw, 132px);
    top: clamp(11px, 3.2vw, 14px);
    left: calc(var(--collection-ribbon-width) * -0.29);
    width: var(--collection-ribbon-width);
    min-height: 21px;
    padding: 0 8px;
    font-size: clamp(0.46rem, 1.45vw, 0.54rem);
    letter-spacing: 0.055em;
    white-space: nowrap;
  }

  .product-ribbon {
    top: 17px;
    left: -31px;
    width: 132px;
    min-height: 22px;
    font-size: 0.55rem;
  }

  .collection-card-ribbon--secondary {
    top: clamp(38px, 9.8vw, 44px);
    left: calc(var(--collection-ribbon-width) * -0.23);
  }

  .product-ribbon--secondary {
    top: 46px;
    left: -25px;
  }

  .collection-quick {
    display: none;
  }

  .collection-story {
    width: min(100% - 32px, 680px);
    margin-bottom: 54px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 20px 24px;
    text-align: center;
  }

  .footer-contact {
    max-width: 560px;
    margin: 0 auto;
  }

  .footer-contact-actions,
  .footer-socials,
  .payment-logos {
    justify-content: center;
  }

  .footer-note,
  .footer-follow p {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-panels {
    justify-items: center;
  }

  .footer-links,
  .footer-follow,
  .footer-payments {
    justify-items: center;
    text-align: center;
  }

  .footer-links a {
    text-align: center;
  }

  .product-main {
    padding-top: 90px;
  }

  .product-breadcrumb {
    width: min(100% - 32px, 680px);
    margin-top: 10px;
    margin-bottom: 16px;
  }

  .product-shell {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .product-gallery {
    width: min(100%, 520px);
    aspect-ratio: 4 / 5;
    display: grid;
    place-items: center;
    margin: 0 auto;
    overflow: hidden;
    background: var(--white);
    scroll-snap-type: none;
  }

  .product-gallery::-webkit-scrollbar {
    display: none;
  }

  .product-gallery-controls {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: block;
    pointer-events: none;
  }

  .product-gallery-arrow {
    position: absolute;
    top: 50%;
    pointer-events: auto;
    transform: translateY(-50%);
  }

  .product-gallery-arrow:hover {
    background: var(--white);
  }

  .product-gallery-arrow:active {
    transform: translateY(-50%) scale(0.96);
  }

  .product-gallery-arrow--prev {
    left: 10px;
  }

  .product-gallery-arrow--next {
    right: 10px;
  }

  .product-thumbs {
    display: none;
  }

  .product-media,
  .product-media--large {
    grid-area: 1 / 1;
    position: relative;
    top: auto;
    display: grid;
    place-items: center;
    width: 100%;
    min-width: 0;
    height: 100%;
    min-height: 0;
    margin: 0;
    aspect-ratio: auto;
    scroll-snap-align: none;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transition: opacity 700ms ease;
    background: var(--white);
  }

  .product-media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center center;
  }

  .product-media--large,
  .product-media.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }

  .product-zoom-overlay {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 4px;
    padding: 64px 6px 10px;
  }

  .product-zoom-viewport {
    height: calc(100svh - 74px);
  }

  .product-zoom-close {
    top: 10px;
    right: 10px;
  }

  .product-zoom-close,
  .product-zoom-arrow {
    width: 40px;
    height: 40px;
  }

  .product-purchase {
    position: static;
    height: auto;
    min-height: 0;
    overflow: visible;
    width: min(100% - 32px, 680px);
    margin: 0 auto;
    padding: 28px 0 42px;
  }

  .back-in-stock-alert form {
    grid-template-columns: 1fr;
  }

  .back-in-stock-push,
  .back-in-stock-alert button[type="submit"],
  .back-in-stock-status {
    grid-column: auto;
  }

  .product-purchase h1 {
    max-width: none;
    text-align: center;
  }

  .product-style {
    text-align: center;
  }

  .product-style-row {
    justify-content: center;
    gap: 5px 8px;
    margin-top: 8px;
    text-align: center;
  }

  .product-social-share {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }

  .product-rating-snippet {
    width: 100%;
    min-height: 16px;
    justify-content: center;
    overflow: hidden;
    font-size: 0.66rem;
  }

  .product-price {
    justify-content: center;
  }

  .product-info-tabs {
    gap: 12px;
    justify-content: center;
  }

  .product-info-tab {
    font-size: 0.64rem;
    text-align: center;
  }

  .product-sizes {
    display: none;
  }

  .product-size-select-wrap {
    display: block;
  }

  .product-size-select-wrap select {
    min-height: 50px;
    text-align: center;
    text-align-last: center;
  }

  .product-tags {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .product-tags a {
    text-align: center;
  }

  .add-notice {
    top: 96px;
    right: 16px;
    left: 16px;
    width: auto;
  }

  .lv-preorder-countdown {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }

  .lv-preorder-countdown__timer {
    grid-column: auto;
    grid-row: auto;
  }

  .lv-preorder-countdown__timer span {
    min-height: 44px;
    padding: 7px 4px 5px;
  }

  .product-size-guide-head {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 46px;
  }

  .product-size-guide--modal {
    align-items: flex-start;
    padding: 16px;
  }

  .product-size-guide-panel {
    max-height: calc(100vh - 32px);
    padding: 62px 18px 20px;
  }

  .product-size-guide-close {
    top: 12px;
    right: 12px;
  }

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

  .product-related {
    width: min(100% - 32px, 680px);
    margin-top: 18px;
  }

  .product-recently-viewed {
    width: min(100% - 32px, 680px);
    margin-top: 18px;
    padding-top: 34px;
  }

  .recently-viewed-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-community {
    width: min(100% - 32px, 680px);
    margin-top: 18px;
    padding-top: 34px;
  }

  .product-community-heading {
    min-height: 0;
    padding: 0;
  }

  .product-community-controls {
    position: static;
    justify-content: center;
    margin-top: 14px;
    transform: none;
  }

  .product-community-track {
    gap: 8px;
  }

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

  .category-tall {
    grid-row: span 1;
  }

  .section-heading h2 {
    font-size: 2.1rem;
  }

  .editorial-band {
    grid-template-columns: 1fr;
  }

  .editorial-tile img {
    min-height: 420px;
  }

  .seo-section {
    padding: 62px 0 70px;
  }

  .seo-links {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    padding: 28px 20px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 690px;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 9.4vw, 2.28rem);
    line-height: 0.92;
  }

  .hero p:not(.eyebrow) {
    max-width: 310px;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .category-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(520px, 82svh);
  }

  .footer-panels {
    grid-template-columns: 1fr;
  }

  .product-card span {
    min-height: 56px;
    font-size: 0.88rem;
  }

  .related-products {
    grid-template-columns: 1fr;
  }

  .collection-heading h1 {
    font-size: 2.55rem;
  }

  .collection-grid {
    width: calc(100% - 12px);
    gap: 24px 6px;
  }

  .collection-card-title,
  .collection-card-meta {
    font-size: 0.72rem;
  }

  .editorial-tile span {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }
}
