@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

:root {
  --font-display: Oswald, Impact, sans-serif;
  --font-body: Inter, Arial, sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-heavy: 800;

  --black: #070707;
  --ink: #11100e;
  --charcoal: #191817;
  --ash: #6f7278;
  --paper: #e7dbca;
  --paper-light: #f4ebdf;
  --cream: #efe7dc;
  --gold: #d5b56d;
  --red: #a92b2f;
  --violet: #7f6288;
  --coral: #d96b67;
  --white: #fff;
  --text-strong: #f6f3ee;
  --text-soft: rgba(255, 255, 255, .72);
  --text-muted: rgba(255, 255, 255, .66);
  --text-half-muted: rgba(255, 255, 255, .46);
  --text-dim: rgba(255, 255, 255, .24);
  --text-paper: #4d4a46;
  --footer-bg: #050505;
  --surface-dark: #10100f;

  --line: rgba(255, 255, 255, .12);
  --line-soft: rgba(255, 255, 255, .08);
  --line-faint: rgba(255, 255, 255, .05);
  --gold-line: rgba(213, 181, 109, .5);
  --shadow: 0 32px 80px rgba(0, 0, 0, .35);

  --page-x: clamp(24px, 7vw, 90px);
  --section-y: clamp(72px, 10vw, 124px);
  --section-y-lg: clamp(76px, 10vw, 128px);
  --content-wide: 1180px;
  --content-mid: 920px;
  --grid-text-align: left;

  --header-bg: rgba(0, 0, 0, .68);
  --header-bg-open: rgba(0, 0, 0, .94);
  --header-blur: blur(12px);
  --header-z: 20;

  --button-height: 48px;
  --button-x: 24px;
  --button-font-size: 13px;
  --button-letter-spacing: .18em;

  --drawer-width: 460px;
  --surface-duration: 260ms;
  --surface-ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.5;
}

main {
  padding-bottom: 70px;
}

body:not(.page-loaded) main {
  position: relative;
}

body:not(.page-loaded) main::before,
body:not(.page-loaded) main::after {
  content: "";
  z-index: 15;
  pointer-events: none;
}

body:not(.page-loaded) main::before {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, .92);
}

body:not(.page-loaded) main::after {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(213, 181, 109, .22);
  border-top-color: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: loader-spin 760ms linear infinite;
}

@keyframes loader-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

body.drawer-open,
body.age-locked {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--header-z);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 20px clamp(20px, 5vw, 72px);
  background: var(--header-bg);
  backdrop-filter: var(--header-blur);
  border-bottom: 1px solid var(--line-soft);
}

.account-body .site-header,
.checkout-body .site-header {
  --header-bg-open: #050505;
  background: rgba(5, 5, 5, .96);
  border-bottom-color: rgba(213, 181, 109, .2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.brand,
h1,
h2,
h3,
.kicker,
.button,
.cart-button,
.notification-button,
.account-avatar-button,
.text-button,
.product-price {
  font-family: var(--font-display);
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 158px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.site-nav a {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--gold);
}

.site-header,
.site-header a,
.site-header button,
.site-header select,
.site-nav,
.site-nav * {
  -webkit-tap-highlight-color: transparent;
}

.site-nav .language-switcher {
  display: none;
}

.mobile-nav-account {
  display: none;
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(213, 181, 109, .28);
  padding: 2px;
}

.language-switcher button {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 30px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .58);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: var(--font-weight-bold);
  letter-spacing: .08em;
}

.language-switcher-trigger {
  position: relative;
}

.language-switcher-options {
  position: absolute;
  z-index: 70;
  top: calc(100% + 6px);
  right: -1px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(213, 181, 109, .28);
  background: rgba(8, 8, 7, .96);
  padding: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  visibility: hidden;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.language-switcher.is-open .language-switcher-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.language-switcher button:hover,
.language-switcher button.is-active {
  background: rgba(213, 181, 109, .14);
  color: var(--gold);
}

.text-button,
.cart-button,
.notification-button,
.icon-button,
.segmented button {
  border: 0;
  background: none;
  color: inherit;
}

.text-button {
  color: rgba(255, 255, 255, .75);
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  letter-spacing: .16em;
}

.text-link {
  justify-self: start;
  border: 0;
  background: none;
  color: var(--gold);
  padding: 4px 0;
  font-size: 13px;
  font-weight: var(--font-weight-heavy);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  padding: 0 16px;
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  letter-spacing: .16em;
}

.cart-button i {
  font-size: 15px;
}

.cart-button span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  line-height: 1;
}

.notification-button {
  position: relative;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  text-decoration: none;
}

.notification-button span {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  line-height: 1;
}

.account-menu {
  position: relative;
}

.account-avatar-button {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: rgba(213, 181, 109, .12);
  color: var(--gold);
  font-size: 14px;
  font-weight: var(--font-weight-heavy);
  letter-spacing: .04em;
}

.account-avatar-button:hover,
.account-menu.is-open .account-avatar-button {
  border-color: rgba(213, 181, 109, .62);
  background: rgba(213, 181, 109, .22);
  color: var(--cream);
}

.account-menu-panel {
  position: absolute;
  z-index: 75;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 172px;
  padding: 6px;
  border: 1px solid rgba(213, 181, 109, .28);
  background: rgba(8, 8, 7, .98);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  visibility: hidden;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.account-menu.is-open .account-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.account-menu-panel a,
.account-menu-panel button {
  display: flex;
  align-items: center;
  min-height: 38px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .72);
  padding: 0 10px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: var(--font-weight-bold);
  letter-spacing: .12em;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
}

.account-menu-panel a:hover,
.account-menu-panel button:hover {
  background: rgba(213, 181, 109, .14);
  color: var(--gold);
}

.nav-toggle {
  display: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 136px var(--page-x) 9vh;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .65) 43%, rgba(0, 0, 0, .18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, 0) 40%);
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: var(--font-weight-medium);
  letter-spacing: .28em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--text-strong);
  font-size: clamp(44px, 6.4vw, 82px);
  font-weight: var(--font-weight-bold);
  letter-spacing: .06em;
  line-height: .96;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 6vw, 78px);
  font-weight: var(--font-weight-bold);
  letter-spacing: .07em;
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: .13em;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--button-height);
  border: 1px solid transparent;
  padding: 0 var(--button-x);
  font-size: var(--button-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--button-letter-spacing);
  text-decoration: none;
}

.button-shine {
  --button-shine-rgb: 255 255 255;
  --button-shine-opacity: .58;
  --button-shine-duration: 4.4s;
  --button-shine-delay: .35s;
  overflow: hidden;
  isolation: isolate;
}

.button-shine::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -45%;
  bottom: -45%;
  left: -58%;
  width: 44%;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgb(var(--button-shine-rgb) / 0) 18%,
    rgb(var(--button-shine-rgb) / calc(var(--button-shine-opacity) * .42)) 43%,
    rgb(var(--button-shine-rgb) / var(--button-shine-opacity)) 50%,
    rgb(var(--button-shine-rgb) / calc(var(--button-shine-opacity) * .42)) 57%,
    rgb(var(--button-shine-rgb) / 0) 82%,
    transparent 100%
  );
  filter: blur(.2px);
  transform: translateX(-120%) skewX(-16deg);
  animation: button-shine-sweep var(--button-shine-duration) var(--button-shine-delay) cubic-bezier(.28, .72, .24, 1) infinite;
}

.button-shine > * {
  position: relative;
  z-index: 2;
}

.button-shine-on-light {
  --button-shine-rgb: 255 255 255;
  --button-shine-opacity: .46;
}

.button-shine-on-dark {
  --button-shine-rgb: 255 255 255;
  --button-shine-opacity: .62;
}

.button-shine:disabled::after,
.button-shine[disabled]::after,
.button-shine[aria-disabled="true"]::after,
.button-shine.is-disabled::after {
  animation: none;
  opacity: 0;
}

@keyframes button-shine-sweep {
  0% { transform: translateX(-135%) skewX(-16deg); }
  38%, 100% { transform: translateX(430%) skewX(-16deg); }
}

@media (prefers-reduced-motion: reduce) {
  .button-shine::after {
    animation: none;
    opacity: 0;
  }
}

.button-primary {
  background: var(--gold);
  color: var(--black);
}

.button-primary:hover {
  background: #e2c987;
}

.button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .32);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.button-outline-gold {
  background: transparent;
  border-color: rgba(213, 181, 109, .82);
  color: #9b7420;
}

.button-outline-gold:hover {
  background: rgba(213, 181, 109, .12);
  border-color: var(--gold);
  color: var(--black);
}

.button:disabled,
.button[disabled],
.button[aria-disabled="true"],
.button.is-disabled,
button:disabled,
button[disabled] {
  cursor: not-allowed;
  opacity: .42;
  filter: grayscale(.35);
  box-shadow: none;
}

.button:disabled,
.button[disabled],
.button[aria-disabled="true"],
.button.is-disabled {
  pointer-events: none;
}

.button-primary:disabled,
.button-primary[disabled],
.button-primary[aria-disabled="true"],
.button-primary.is-disabled {
  background: rgba(213, 181, 109, .22);
  border-color: rgba(213, 181, 109, .2);
  color: rgba(255, 255, 255, .56);
}

.button-ghost:disabled,
.button-ghost[disabled],
.button-ghost[aria-disabled="true"],
.button-ghost.is-disabled {
  background: transparent;
  border-color: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .45);
}

.button-outline-gold:disabled,
.button-outline-gold[disabled],
.button-outline-gold[aria-disabled="true"],
.button-outline-gold.is-disabled {
  background: transparent;
  border-color: rgba(213, 181, 109, .28);
  color: rgba(155, 116, 32, .48);
}

.hero-actions,
.split-actions,
.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.intro-band {
  min-height: clamp(430px, 58vw, 720px);
  display: grid;
  align-items: center;
  padding: var(--section-y-lg) var(--page-x);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .56) 48%, rgba(0, 0, 0, .18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .08) 46%),
    var(--section-bg, url("assets/banner/silence_bg.jpg")) center / cover no-repeat;
}

.intro-copy h2 {
  max-width: 620px;
}

.intro-copy [data-section-text] {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--text-muted);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: end;
}

.feature-row article {
  min-height: 210px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.intro-pictogram {
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  object-fit: contain;
  opacity: .72;
}

.feature-row p,
.dark-story p,
.split-section p,
.contact-section p,
.gifting-section .section-heading p,
.site-footer p {
  color: var(--text-muted);
}

.sets-overview {
  padding: clamp(54px, 7vw, 86px) var(--page-x);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .055), transparent 34%),
    linear-gradient(180deg, #202020, #151515);
  color: var(--cream);
}

.sets-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 78px);
  max-width: 980px;
  margin: 0 auto;
}

.sets-overview .sets-overview-heading .kicker {
  color: var(--gold);
}

.sets-overview .sets-overview-heading h2 {
  color: var(--text-strong);
}

.sets-overview-grid a {
  display: grid;
  justify-items: center;
  text-align: center;
  text-decoration: none;
}

.sets-overview-grid img {
  width: clamp(96px, 10vw, 132px);
  height: clamp(96px, 10vw, 132px);
  margin-bottom: 22px;
  object-fit: contain;
  opacity: .5;
  filter: grayscale(1);
  transition:
    opacity var(--surface-duration) var(--surface-ease),
    transform var(--surface-duration) var(--surface-ease);
}

.sets-overview-grid h3 {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: clamp(20px, 2.2vw, 25px);
  letter-spacing: .08em;
}

.sets-overview-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .34);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: var(--font-weight-medium);
  letter-spacing: .03em;
}

.sets-overview-grid a:hover img {
  opacity: .78;
  transform: translateY(-3px);
}

.section-heading {
  max-width: var(--content-mid);
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading .kicker {
  color: var(--ash);
}

.section-heading p {
  color: var(--text-paper);
  font-size: 18px;
}

.collection-visual {
  max-width: 1180px;
  margin: 0 auto 38px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.collection-visual img {
  width: 100%;
}

.section-actions {
  display: flex;
  justify-content: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--content-wide);
  margin: 0 auto;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 430px;
  border: 1px solid rgba(17, 16, 14, .12);
  background: rgba(255, 255, 255, .46);
  padding: 28px;
}

.product-card header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.product-pictogram {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  object-fit: contain;
  opacity: .92;
}

.product-card h3 {
  color: var(--ink);
  font-size: 28px;
}

.product-price {
  color: #64666b;
  font-size: 26px;
  letter-spacing: .13em;
  white-space: nowrap;
}

.product-card p,
.product-card li {
  color: #4d4a46;
}

.wine-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.wine-list li {
  border-top: 1px solid rgba(17, 16, 14, .12);
  padding: 10px 0;
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.card-actions {
  display: flex;
  gap: 10px;
}

.card-actions .button {
  flex: 1;
  min-height: 44px;
  padding: 0 14px;
  font-size: 11px;
}

.dark-story {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding: clamp(70px, 9vw, 110px) var(--page-x);
  background: #0b0b0b;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.dark-story.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, .75fr);
}

.dark-story.reverse div {
  order: 2;
}

.dark-story img {
  width: 100%;
  box-shadow: var(--shadow);
}

.dark-story h2 {
  color: #f2eee8;
}

.dark-story p {
  max-width: 620px;
  font-size: 18px;
}

.kicker.red {
  color: var(--red);
}

.kicker.violet {
  color: #b28abf;
}

.kicker.coral {
  color: var(--coral);
}

.paper-section {
  padding: var(--section-y-lg) var(--page-x);
  background:
    linear-gradient(rgba(231, 219, 202, .26), rgba(231, 219, 202, .3)),
    url("assets/bg/bg_bright.jpg") center / cover;
  color: var(--ink);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--content-wide);
  margin: 0 auto;
  /* border: 1px solid rgba(17, 16, 14, .16); */
}

.philosophy-grid article {
  padding: 34px;
  border-right: 1px solid rgba(17, 16, 14, .16);
  text-align: var(--grid-text-align);
}

.philosophy-grid article:last-child {
  border-right: 0;
}

.philosophy-grid h3 {
  color: #55585f;
  font-size: 27px;
}

.philosophy-grid p {
  margin-bottom: 12px;
  color: var(--text-paper);
}

.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 90px);
  padding: var(--section-y) var(--page-x);
  background: #121110;
  background-image: var(--section-bg, none);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-preview-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contact-hero {
  min-height: 72svh;
  display: grid;
  align-items: end;
  padding: 150px var(--page-x) 82px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .48)),
    url("assets/banner/sets_banner.jpg") center / cover;
}

.contact-hero div {
  max-width: 720px;
}

.contact-hero p {
  max-width: 590px;
  color: var(--text-soft);
  font-size: 18px;
}

.contact-page-section {
  align-items: start;
  min-height: 100svh;
  padding-top: 150px;
}

.contact-details {
  display: grid;
  gap: 20px;
}

.contact-details article {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.contact-details span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-details a {
  color: var(--white);
  font-size: 20px;
  text-decoration: none;
}

.contact-details p {
  margin: 0;
}

.philosophy-page-hero {
  min-height: 82svh;
  display: grid;
  align-items: end;
  padding: 150px var(--page-x) 82px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .48)),
    url("assets/banner/philosophy_banner.jpg") right center / cover;
}

.philosophy-page-hero div {
  max-width: 820px;
}

.philosophy-page-hero .kicker {
  color: var(--gold);
}

.philosophy-page-hero p {
  max-width: 640px;
  color: var(--text-soft);
  font-size: 18px;
}

.philosophy-page-section {
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .58)),
    url("assets/bg/philosophy_bg_1.jpg") center / cover;
}

.philosophy-page-section .section-heading .kicker {
  color: var(--gold);
}

.philosophy-page-section .section-heading p {
  color: var(--text-soft);
}

.philosophy-page-section .philosophy-grid {
  border-color: rgba(255, 255, 255, .18);
}

.philosophy-page-section .philosophy-grid article {
  border-color: rgba(255, 255, 255, .14);
  /* background: rgba(0, 0, 0, .34);
  backdrop-filter: blur(2px); */
}

.philosophy-page-section .philosophy-grid h3 {
  color: var(--gold);
}

.philosophy-page-section .philosophy-grid p {
  color: rgba(255, 255, 255, .7);
}

.philosophy-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .08);
}

.philosophy-principles article {
  min-height: 340px;
  padding: clamp(36px, 6vw, 70px);
  background: #0d0d0d;
}

.philosophy-principles span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: .12em;
}

.philosophy-principles h2 {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: var(--font-weight-regular);
}

.philosophy-principles p {
  color: rgba(255, 255, 255, .66);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 8px 22px;
  border: 1px solid var(--line);
  padding: 24px;
}

.process-list span {
  grid-row: span 2;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 32px;
}

.process-list strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.process-list p {
  margin: 0;
}

.gifting-section {
  padding: var(--section-y) var(--page-x);
  background: #0a0a0a;
}

body.gifts-disabled .gifting-section,
body.gifts-disabled [data-gift-only] {
  display: none !important;
}

.gifting-section .section-heading .kicker,
.contact-preview .kicker {
  color: var(--gold);
}

.gifting-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.gifting-flow article {
  min-height: 190px;
  border: 1px solid var(--line);
  padding: 28px;
  background: linear-gradient(140deg, rgba(213, 181, 109, .13), rgba(255, 255, 255, .02));
}

.gifting-flow span {
  color: var(--gold);
  font-size: 13px;
  font-weight: var(--font-weight-heavy);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.gifting-action {
  display: flex;
  justify-content: center;
}

.lead-form,
.checkout-form,
.account-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  letter-spacing: .05em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 0;
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  padding: 13px 14px;
  outline: 0;
}

input[type="checkbox"] {
  --checkbox-bg: rgba(255, 255, 255, .08);
  --checkbox-border: rgba(255, 255, 255, .34);
  --checkbox-focus: rgba(213, 181, 109, .22);
  --checkbox-mark: var(--ink);
  appearance: none;
  display: grid;
  place-content: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--checkbox-border);
  border-radius: 4px;
  background: var(--checkbox-bg);
  color: inherit;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease;
}

input[type="checkbox"]::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--checkbox-mark);
  clip-path: polygon(13% 48%, 0 62%, 39% 100%, 100% 22%, 84% 10%, 37% 69%);
  transform: scale(0);
  transform-origin: center;
  transition: transform .14s ease;
}

input[type="checkbox"]:checked {
  --checkbox-border: var(--gold);
  background: var(--gold);
}

input[type="checkbox"]:checked::before {
  transform: scale(1);
}

input[type="checkbox"]:focus-visible {
  box-shadow: 0 0 0 3px var(--checkbox-focus);
}

input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: .48;
}

input[type="radio"] {
  --radio-bg: rgba(255, 255, 255, .08);
  --radio-border: rgba(255, 255, 255, .34);
  --radio-focus: rgba(213, 181, 109, .22);
  --radio-mark: var(--gold);
  appearance: none;
  display: grid;
  place-content: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--radio-border);
  border-radius: 50%;
  background: var(--radio-bg);
  color: inherit;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease;
}

input[type="radio"]::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--radio-mark);
  transform: scale(0);
  transform-origin: center;
  transition: transform .14s ease;
}

input[type="radio"]:checked {
  --radio-border: var(--gold);
  background: color-mix(in srgb, var(--gold) 14%, var(--radio-bg));
}

input[type="radio"]:checked::before {
  transform: scale(1);
}

input[type="radio"]:focus-visible {
  box-shadow: 0 0 0 3px var(--radio-focus);
}

input[type="radio"]:disabled {
  cursor: not-allowed;
  opacity: .48;
}

select option {
  color: var(--ink);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
}

.form-field-invalid {
  --validation-border: rgba(224, 96, 79, .72);
  --validation-shadow: rgba(224, 96, 79, .14);
  --validation-bg: #241413;
  --validation-text: #f1b9b0;
  position: relative;
}

.checkout-body .form-field-invalid,
.account-body .form-field-invalid,
[data-validation-theme="light"] .form-field-invalid {
  --validation-border: rgba(163, 58, 45, .52);
  --validation-shadow: rgba(163, 58, 45, .1);
  --validation-bg: #fff4f1;
  --validation-text: #8e2f25;
}

[data-validation-theme="dark"] .form-field-invalid {
  --validation-border: rgba(224, 96, 79, .72);
  --validation-shadow: rgba(224, 96, 79, .14);
  --validation-bg: #241413;
  --validation-text: #f1b9b0;
}

.form-field-invalid input:not([type="checkbox"]):not([type="radio"]),
.form-field-invalid textarea,
.form-field-invalid select {
  border-color: var(--validation-border) !important;
  box-shadow: 0 0 0 3px var(--validation-shadow);
}

.form-field-invalid input[type="checkbox"],
.form-field-invalid input[type="radio"] {
  --checkbox-border: var(--validation-border);
  --radio-border: var(--validation-border);
  box-shadow: 0 0 0 3px var(--validation-shadow);
}

.form-validation-message {
  position: absolute;
  z-index: 80;
  top: calc(100% + 7px);
  left: 0;
  display: inline-flex;
  align-items: flex-start;
  gap: 7px;
  width: fit-content;
  min-width: min(220px, 100%);
  max-width: min(320px, calc(100vw - 32px));
  margin: 0;
  border: 1px solid var(--validation-border, rgba(224, 96, 79, .72));
  background: var(--validation-bg, #241413);
  color: var(--validation-text, #f1b9b0);
  padding: 7px 9px;
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease;
  text-transform: none;
}

.form-validation-message.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-validation-message::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: .45em;
  background: currentColor;
}

.form-validation-message[hidden] {
  display: none !important;
}

.legal-consent .form-validation-message,
.checkout-mode-card .form-validation-message,
.gift-choice .form-validation-message {
  left: 0;
  min-width: min(260px, 100%);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--gold);
  font-size: 13px;
}

.legal-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: .02em;
  line-height: 1.5;
  text-transform: none;
}

.legal-consent input {
  margin-top: 2px;
}

.legal-consent a {
  color: var(--gold);
  text-decoration: none;
}

.legal-consent a:hover {
  text-decoration: underline;
}

.checkout-legal-consent {
  margin-top: 18px;
  color: var(--ink);
}

.checkout-legal-consent input[type="checkbox"],
.checkout-save-address input[type="checkbox"] {
  --checkbox-bg: #fff;
  --checkbox-border: rgba(17, 16, 14, .52);
}

.checkout-body input[type="radio"] {
  --radio-bg: #fff;
  --radio-border: rgba(17, 16, 14, .42);
}

.checkout-legal-consent a {
  color: var(--gold-dark, var(--gold));
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(260px, auto);
  align-items: start;
  gap: 42px;
  padding: 42px var(--page-x) 72px;
  background: var(--footer-bg);
}

.legal-page {
  padding: 132px var(--page-x) 96px;
}

.legal-page-hero {
  width: min(100%, var(--content-mid));
  margin: 0 auto 38px;
}

.legal-page-hero h1 {
  margin: 10px 0 0;
  color: var(--text-strong);
  font-size: clamp(44px, 7vw, 88px);
  line-height: .95;
  letter-spacing: 0;
}

.legal-document {
  width: min(100%, var(--content-mid));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(213, 181, 109, .22);
  background: rgba(255, 255, 255, .045);
}

.legal-document h2 {
  margin: 34px 0 12px;
  color: var(--gold);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.05;
  letter-spacing: 0;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  line-height: 1.75;
}

.footer-brand-block {
  display: grid;
  gap: 28px;
}

.site-footer p {
  margin: 10px 0 0;
  max-width: 460px;
  font-size: 13px;
}

.footer-description {
  display: none;
}

.footer-nav {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.footer-nav a {
  color: rgba(255, 255, 255, .62);
  font-family: Oswald, sans-serif;
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .36);
  font-size: 12px;
  line-height: 1.5;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, .54);
  text-decoration: none;
}

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

.footer-contact-block {
  display: grid;
  justify-items: end;
  gap: 20px;
  text-align: right;
}

.footer-contact-lines {
  display: grid;
  gap: 10px;
}

.footer-contact-lines a {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  text-decoration: none;
}

.footer-contact-lines a:hover {
  color: var(--gold);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(213, 181, 109, .34);
  color: var(--gold);
  text-decoration: none;
}

.footer-socials a:hover {
  border-color: var(--gold);
  background: rgba(213, 181, 109, .1);
}

.footer-bottom-line {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .32);
  font-size: 12px;
  line-height: 1.6;
}

.footer-bottom-line a {
  color: rgba(255, 255, 255, .46);
  text-decoration: none;
}

.footer-bottom-line a:hover {
  color: var(--gold);
}

.legal-notice {
  padding: 18px var(--page-x) 18px;
  background: var(--footer-bg);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-faint);
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: .06em;
  text-align: justify;
}

.drawer,
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--header-bg);
}

.drawer {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--surface-duration) var(--surface-ease),
    visibility 0s linear var(--surface-duration);
}

.age-gate {
  display: none;
}

.drawer.is-open,
.age-gate.is-open {
  display: block;
}

.drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity var(--surface-duration) var(--surface-ease),
    visibility 0s;
}

.drawer-panel {
  position: absolute;
  inset: 0 0 0 auto;
  display: flex;
  flex-direction: column;
  width: min(100%, var(--drawer-width));
  overflow: hidden;
  background: var(--surface-dark);
  color: var(--cream);
  padding: 28px;
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform var(--surface-duration) var(--surface-ease);
  will-change: transform;
}

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

.drawer[data-account-drawer] {
  display: grid;
  align-items: start;
  justify-items: center;
  padding: clamp(18px, 6svh, 46px) 18px 18px;
  background: rgba(0, 0, 0, .68);
  backdrop-filter: blur(10px);
}

.drawer[data-account-drawer] .drawer-panel {
  position: relative;
  inset: auto;
  width: min(100%, 460px);
  height: auto;
  max-height: calc(100svh - clamp(36px, 12svh, 92px));
  overflow-y: auto;
  border: 1px solid rgba(213, 181, 109, .26);
  background: #11100e;
  padding: 22px;
  transform: translateY(12px);
}

.drawer[data-account-drawer].is-open .drawer-panel {
  transform: translateY(0);
}

.drawer[data-account-drawer] .drawer-head {
  margin-bottom: 16px;
}

.drawer[data-account-drawer] .drawer-head h2 {
  font-size: 30px;
}

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

.drawer-head h2 {
  margin: 0;
  color: var(--text-strong);
  font-size: 42px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  color: #fff;
  font-size: 28px;
}

.site-header .nav-toggle {
  display: none;
}

.cart-items {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  margin-bottom: 20px;
  overflow-y: auto;
  padding-right: 4px;
}

.cart-notice {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(213, 181, 109, .32);
  border-radius: 10px;
  background: rgba(213, 181, 109, .08);
  color: var(--text-soft);
}

.cart-notice strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase;
}

.cart-notice p {
  margin: 0;
  color: var(--text-muted);
}

.cart-notice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  border: 1px solid var(--line);
  padding: 14px;
}

.cart-item h3 {
  margin: 0 0 4px;
  color: var(--text-strong);
  font-size: 18px;
}

.cart-item p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-controls button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  color: #fff;
}

.cart-summary {
  display: flex;
  flex: 0 0 auto;
  justify-content: space-between;
  margin: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cart-checkout-actions {
  display: grid;
  flex: 0 0 auto;
  gap: 10px;
}

.cart-checkout-actions .button {
  width: 100%;
  justify-content: center;
}

.checkout-body {
  background: #f4efe6;
  color: var(--black);
}

.checkout-page {
  min-height: 100svh;
  padding: 118px var(--page-x) 72px;
}

.checkout-page.has-checkout-action-strip {
  padding-bottom: 118px;
}

.checkout-header {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.checkout-header h1 {
  margin: 0;
  max-width: 780px;
  color: var(--black);
  font-size: clamp(42px, 6vw, 74px);
}

.checkout-header .kicker {
  color: #8c6f2e;
}

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

.checkout-flow,
.checkout-summary {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(17, 16, 14, .12);
  border-radius: 8px;
}

.checkout-flow {
  overflow: visible;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 1px 1px 0;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid rgba(17, 16, 14, .1);
  background: rgba(17, 16, 14, .1);
  overflow: hidden;
}

.checkout-steps [data-checkout-step-button="cart"] { order: 1; }
.checkout-steps [data-checkout-step-button="customer"] { order: 2; }
.checkout-steps [data-checkout-step-button="delivery"] { order: 3; }
.checkout-steps [data-checkout-step-button="details"] { order: 4; }
.checkout-steps [data-checkout-step-button="confirm"] { order: 5; }

.checkout-steps button {
  position: relative;
  min-height: 58px;
  padding: 0 14px;
  border: 0;
  background: rgba(255, 255, 255, .86);
  color: rgba(17, 16, 14, .52);
  font-size: 12px;
  font-weight: var(--font-weight-heavy);
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
  transition: background .16s ease, color .16s ease, box-shadow .16s ease;
}

.checkout-steps button.is-active {
  background: var(--gold);
  color: var(--ink);
  box-shadow: none;
}

.checkout-steps button.is-complete {
  color: #6d5a2d;
}

.checkout-step,
.checkout-success {
  display: none;
  padding: 28px;
}

.checkout-step.is-active {
  display: grid;
  gap: 18px;
}

.checkout-page.has-checkout-action-strip .checkout-step.is-active {
  padding-bottom: 104px;
}

.checkout-success:not([hidden]) {
  display: grid;
  gap: 16px;
  min-height: 360px;
  align-content: center;
}

.checkout-step-head {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 20px;
  align-items: end;
}

.checkout-step-head > * {
  min-width: 0;
}

.checkout-step-head h2,
.checkout-summary h2,
.checkout-success h2,
.checkout-confirm h3,
.checkout-empty h3 {
  margin: 0;
}

.checkout-step-head h2,
.checkout-summary h2,
.checkout-success h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: .96;
}

.checkout-confirm h3,
.checkout-empty h3 {
  font-size: 20px;
  line-height: 1.1;
}

.checkout-step-head p,
.checkout-step-head a,
.checkout-empty p,
.checkout-mode-card small,
.checkout-confirm p,
.checkout-confirm li {
  color: rgba(17, 16, 14, .62);
  font-size: 13px;
}

.checkout-step-head p {
  justify-self: end;
  margin: 0;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.checkout-step-head a {
  font-weight: 700;
  text-decoration: none;
}

.checkout-cart-list {
  display: grid;
  gap: 10px;
}

.checkout-line {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(17, 16, 14, .1);
  border-radius: 8px;
  background: #fff;
}

.checkout-line.is-missing {
  grid-template-columns: minmax(0, 1fr) auto;
}

.checkout-line img {
  width: 72px;
  height: 58px;
  object-fit: cover;
  border-radius: 6px;
  background: rgba(17, 16, 14, .06);
}

.checkout-line h3,
.checkout-line p {
  margin: 0;
}

.checkout-line h3 {
  font-size: 18px;
}

.checkout-line p {
  color: rgba(17, 16, 14, .58);
  font-size: 13px;
}

.checkout-line > strong {
  min-width: 92px;
  text-align: right;
}

.checkout-line > button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(17, 16, 14, .16);
}

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

.checkout-form-grid label {
  display: grid;
  gap: 6px;
  color: rgba(17, 16, 14, .62);
  font-size: 12px;
  font-weight: 700;
}

.checkout-form-grid .wide {
  grid-column: 1 / -1;
}

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

.checkout-address-fields > .wide {
  grid-column: 1 / -1;
}

.checkout-saved-addresses {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(17, 16, 14, .1);
  border-radius: 8px;
  background: rgba(17, 16, 14, .035);
}

.checkout-saved-addresses > span {
  color: rgba(17, 16, 14, .62);
  font-size: 12px;
  font-weight: var(--font-weight-bold);
}

.checkout-saved-addresses > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.checkout-saved-addresses button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(17, 16, 14, .14);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: var(--font-weight-bold);
}

.checkout-save-address {
  color: var(--ink);
}

.checkout-save-address small {
  display: block;
  color: rgba(17, 16, 14, .56);
  font-size: 11px;
  font-weight: var(--font-weight-medium);
}

.checkout-form-grid input:not([type="checkbox"]):not([type="radio"]),
.checkout-form-grid select,
.checkout-form-grid textarea {
  border-color: rgba(17, 16, 14, .14);
  background: #fff;
  color: var(--black);
  min-height: 44px;
  padding: 10px 12px;
  font-size: 14px;
}

.delivery-address-suggest-field {
  position: relative;
}

.delivery-address-suggest {
  position: absolute;
  inset: calc(100% + 6px) 0 auto;
  z-index: 12;
  display: grid;
  max-height: 260px;
  overflow: auto;
  border: 1px solid rgba(17, 16, 14, .14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(17, 16, 14, .16);
}

.delivery-address-suggest button {
  display: grid;
  gap: 3px;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-bottom: 1px solid rgba(17, 16, 14, .08);
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.delivery-address-suggest button:last-child {
  border-bottom: 0;
}

.delivery-address-suggest button:hover,
.delivery-address-suggest button:focus-visible {
  background: rgba(213, 181, 109, .14);
  outline: 0;
}

.delivery-address-suggest span {
  font-size: 13px;
  font-weight: var(--font-weight-bold);
}

.delivery-address-suggest small,
.delivery-address-suggest-note {
  color: rgba(17, 16, 14, .58);
  font-size: 12px;
  font-weight: var(--font-weight-medium);
}

.delivery-address-suggest-note {
  margin: 0;
  padding: 11px 12px;
}

.checkout-mode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.checkout-delivery-types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.checkout-mode-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 146px;
  padding: 18px;
  border: 1px solid rgba(17, 16, 14, .12);
  border-radius: 8px;
  background: #fff;
  color: var(--black);
  cursor: pointer;
  transition: border-color var(--surface-duration) var(--surface-ease), background var(--surface-duration) var(--surface-ease);
}

.checkout-mode-card:has(input:checked) {
  border-color: rgba(213, 181, 109, .9);
  background: #fffaf0;
}

.checkout-mode-card input {
  position: absolute;
  inset: 16px 16px auto auto;
  width: 16px;
  min-height: 16px;
  padding: 0;
}

.checkout-mode-card span {
  max-width: calc(100% - 28px);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.16;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.checkout-mode-card.is-muted {
  background: rgba(255, 255, 255, .58);
}

.checkout-mode-card.is-disabled,
.checkout-mode-card:has(input:disabled) {
  cursor: not-allowed;
  opacity: .46;
  background: rgba(255, 255, 255, .52);
  border-color: rgba(17, 16, 14, .08);
}

.checkout-mode-card.is-disabled span,
.checkout-mode-card.is-disabled small,
.checkout-mode-card:has(input:disabled) span,
.checkout-mode-card:has(input:disabled) small {
  color: rgba(17, 16, 14, .55);
}

.checkout-mode-card.is-locked {
  opacity: 1;
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(17, 16, 14, .035), rgba(17, 16, 14, .08)),
    rgba(255, 255, 255, .46);
  filter: grayscale(.86);
}

.checkout-mode-card.is-locked input {
  pointer-events: none;
}

.checkout-mode-card.is-locked::after {
  content: "🔒";
  position: absolute;
  top: 15px;
  right: 42px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 16, 14, .14);
  border-radius: 999px;
  color: rgba(17, 16, 14, .5);
  font-size: 12px;
}

.checkout-guest-gift-auth {
  position: relative;
  display: grid;
  gap: 10px;
  max-width: 640px;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(213, 181, 109, .42);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 18px 45px rgba(17, 16, 14, .08);
}

.checkout-guest-gift-auth[hidden] {
  display: none;
}

.checkout-guest-gift-auth h3,
.checkout-guest-gift-auth p {
  margin: 0;
}

.checkout-guest-gift-auth h3 {
  font-size: 28px;
  line-height: 1;
}

.checkout-guest-gift-auth > p:not(.kicker) {
  max-width: 540px;
  color: rgba(17, 16, 14, .66);
  font-size: 14px;
}

.checkout-guest-gift-auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.checkout-guest-gift-auth-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(17, 16, 14, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: rgba(17, 16, 14, .68);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

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

.checkout-confirm section,
.checkout-empty {
  padding: 14px;
  border: 1px solid rgba(17, 16, 14, .1);
  border-radius: 8px;
  background: #fff;
}

.checkout-confirm ul {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
  padding-left: 18px;
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 6px;
}

.checkout-page.has-checkout-action-strip .checkout-step.is-active > .checkout-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8;
  align-items: center;
  margin: 0;
  padding: 12px var(--page-x) calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(17, 16, 14, .12);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 -14px 34px rgba(17, 16, 14, .08);
  -webkit-backdrop-filter: blur(24px) saturate(1.16);
  backdrop-filter: blur(24px) saturate(1.16);
}

.checkout-page.has-checkout-action-strip .checkout-step.is-active > .checkout-actions::before,
.checkout-page.has-checkout-action-strip .checkout-step.is-active > .checkout-actions::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.checkout-page.has-checkout-action-strip .checkout-step.is-active > .checkout-actions::before {
  background: rgba(17, 16, 14, .12);
}

.checkout-page.has-checkout-action-strip .checkout-step.is-active > .checkout-actions::after {
  right: auto;
  width: var(--checkout-progress, 0%);
  background: linear-gradient(90deg, #9a7a2f, var(--gold));
  box-shadow: 0 0 20px rgba(197, 156, 58, .42);
  transition: width .52s cubic-bezier(.22, 1, .36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .checkout-page.has-checkout-action-strip .checkout-step.is-active > .checkout-actions::after {
    transition: none;
  }
}

.checkout-actions .button {
  min-width: 156px;
  min-height: 48px;
  justify-content: center;
}

.checkout-actions .button-ghost {
  border-color: rgba(17, 16, 14, .16);
  background: rgba(17, 16, 14, .04);
  color: rgba(17, 16, 14, .72);
}

.checkout-actions .button-ghost:hover {
  border-color: rgba(17, 16, 14, .28);
  color: var(--black);
}

.checkout-summary {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 14px;
  padding: 22px;
}

.checkout-summary-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.checkout-promo-form {
  display: grid;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(17, 16, 14, .1);
}

.checkout-promo-form label {
  display: grid;
  gap: 8px;
  margin: 0;
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  color: rgba(17, 16, 14, .66);
}

.checkout-promo-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.checkout-promo-controls input {
  width: 100%;
  min-width: 0;
  height: 40px;
  border: 1px solid rgba(17, 16, 14, .14);
  border-radius: 8px;
  padding: 0 12px;
  font: inherit;
  color: var(--black);
  background: rgba(255, 255, 255, .88);
}

.checkout-promo-form.is-applied .checkout-promo-controls input {
  border-color: rgba(195, 154, 83, .42);
  background: rgba(195, 154, 83, .08);
}

.checkout-promo-apply,
.checkout-promo-clear {
  appearance: none;
  display: inline-grid;
  place-items: center;
  height: 40px;
  border: 1px solid rgba(17, 16, 14, .12);
  border-radius: 8px;
  background: var(--gold);
  color: #16120b;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease, border-color .18s ease;
}

.checkout-promo-apply {
  padding: 0 14px;
}

.checkout-promo-clear {
  width: 40px;
  padding: 0;
  border-color: rgba(17, 16, 14, .1);
  background: rgba(17, 16, 14, .06);
  color: rgba(17, 16, 14, .7);
  font-size: 22px;
}

.checkout-promo-apply:hover,
.checkout-promo-clear:hover {
  transform: translateY(-1px);
  filter: brightness(.98);
}

.checkout-promo-apply:focus-visible,
.checkout-promo-clear:focus-visible {
  outline: 2px solid rgba(195, 154, 83, .45);
  outline-offset: 2px;
}

.checkout-promo-status {
  min-height: 18px;
  margin: 0;
  color: rgba(17, 16, 14, .62);
  font-size: 13px;
}

.checkout-summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(17, 16, 14, .1);
}

.checkout-summary-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.checkout-summary-list dt {
  color: rgba(17, 16, 14, .58);
}

.checkout-summary-list dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.checkout-help-card {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(17, 16, 14, .1);
  border-radius: 8px;
  background: rgba(17, 16, 14, .035);
}

.checkout-help-card strong {
  display: block;
  color: rgba(17, 16, 14, .76);
  font-size: 17px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.15;
}

.checkout-help-card p {
  margin: 6px 0 0;
  color: rgba(17, 16, 14, .62);
  font-size: 13px;
  line-height: 1.5;
}

.checkout-help-card .button {
  width: 100%;
  min-height: 42px;
  border-color: rgba(17, 16, 14, .16);
  background: rgba(255, 255, 255, .42);
  color: rgba(17, 16, 14, .72);
}

.checkout-help-card .button:hover {
  border-color: rgba(17, 16, 14, .28);
  background: rgba(255, 255, 255, .68);
  color: var(--black);
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
}

.segmented.small {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 2px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  padding: 3px;
}

.segmented button {
  min-height: 44px;
  padding: 0 12px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: var(--font-weight-heavy);
  letter-spacing: .12em;
  text-transform: uppercase;
  transition:
    background var(--surface-duration) var(--surface-ease),
    color var(--surface-duration) var(--surface-ease);
}

.segmented button.active {
  background: var(--gold);
  color: var(--black);
}

.segmented.small button {
  min-height: 30px;
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  letter-spacing: .08em;
}

.segmented.small button.active {
  background: rgba(213, 181, 109, .16);
  color: var(--gold);
}

.drawer[data-account-drawer] .account-form {
  align-content: start;
  gap: 9px;
}

.drawer[data-account-drawer] [data-account-form] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.drawer[data-account-drawer] [data-account-form] [data-account-tabs],
.drawer[data-account-drawer] [data-account-form] [data-corporate-fields],
.drawer[data-account-drawer] [data-account-form] .button,
.drawer[data-account-drawer] [data-account-form] .form-note {
  grid-column: 1 / -1;
}

.drawer[data-account-drawer] label {
  gap: 5px;
  font-size: 12px;
}

.drawer[data-account-drawer] input,
.drawer[data-account-drawer] select {
  padding: 10px 12px;
}

.drawer[data-account-drawer].is-corporate-invite-auth input[readonly] {
  border-color: rgba(213, 181, 109, .36);
  background: rgba(213, 181, 109, .09);
  color: rgba(255, 255, 255, .74);
  cursor: not-allowed;
}

.drawer[data-account-drawer].is-corporate-invite-auth input[readonly]:focus {
  border-color: rgba(213, 181, 109, .48);
  box-shadow: none;
}

.drawer[data-account-drawer] .button {
  width: 100%;
  justify-content: center;
}

.drawer[data-account-drawer] .text-link {
  justify-self: center;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.drawer[data-account-drawer] [data-corporate-fields] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

@media (max-width: 520px) {
  .drawer[data-account-drawer] .drawer-panel {
    width: 100%;
  }

  .drawer[data-account-drawer] [data-account-form],
  .drawer[data-account-drawer] [data-corporate-fields] {
    grid-template-columns: 1fr;
  }
}

.account-profile {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  padding: 16px;
}

.account-profile h3,
.account-profile p {
  margin: 0;
}

.account-profile h3 {
  font-size: 24px;
}

.account-profile .button {
  justify-self: start;
  margin-top: 8px;
}

.age-gate {
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
}

.age-gate.is-open {
  display: grid;
}

.age-panel {
  width: min(100%, 520px);
  border: 1px solid rgba(213, 181, 109, .38);
  background: var(--surface-dark);
  padding: clamp(28px, 6vw, 54px);
  box-shadow: var(--shadow);
}

.age-panel h2 {
  margin-bottom: 16px;
  font-size: 48px;
}

.age-panel p {
  color: rgba(255, 255, 255, .7);
}

.sets-page {
  background: var(--footer-bg);
}

.sets-hero {
  min-height: 68svh;
  display: grid;
  align-content: end;
  padding: 150px var(--page-x) 72px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .95), rgba(0, 0, 0, .54)),
    var(--banner-bg, url("assets/banner/sets_banner.jpg")) center / cover;
}

.sets-hero .kicker {
  color: var(--gold);
}

.sets-hero h1 {
  max-width: 820px;
}

.sets-hero p {
  max-width: 610px;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}

.sets-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.sets-anchor-nav a,
.sets-anchor-nav button {
  border: 1px solid rgba(255, 255, 255, .18);
  background: transparent;
  padding: 12px 16px;
  color: rgba(255, 255, 255, .74);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}

.sets-anchor-nav a:hover,
.sets-anchor-nav button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.sets-anchor-nav a.is-active,
.sets-anchor-nav button.is-active {
  border-color: var(--gold);
  background: rgba(213, 181, 109, .1);
  color: var(--gold);
}

.sets-carousel {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.set-carousel-nav {
  position: absolute;
  inset: 28px var(--page-x) auto;
  z-index: 4;
  margin-top: 0;
}

.bundle-carousel {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.bundle-carousel-title {
  position: absolute;
  inset: 28px var(--page-x) auto;
  z-index: 4;
  max-width: 820px;
}

.bundle-carousel-title[hidden] {
  display: none;
}

.bundle-carousel-title h2 {
  margin: 4px 0 0;
  color: var(--text-strong);
  font-size: clamp(34px, 4vw, 56px);
}

.bundle-carousel.has-title .set-carousel-nav {
  inset-block-start: 128px;
}

.set-carousel-viewport {
  overflow: hidden;
}

.set-carousel-track {
  display: grid;
}

.set-showcase {
  position: relative;
  grid-area: 1 / 1;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(540px, 1fr) auto;
  gap: clamp(36px, 7vw, 86px);
  padding: clamp(92px, 11vw, 138px) var(--page-x) 52px;
  background: #070707;
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms var(--surface-ease);
}

.set-showcase:first-child,
.set-showcase.is-active {
  opacity: 1;
  pointer-events: auto;
}

.set-carousel-track.is-ready .set-showcase:first-child:not(.is-active) {
  opacity: 0;
  pointer-events: none;
}

.set-showcase::before,
.set-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.set-carousel-arrow {
  display: none;
}

.set-carousel-arrow:hover {
  border-color: var(--gold);
  background: rgba(213, 181, 109, .12);
}

.set-carousel-arrow-prev {
  left: 18px;
}

.set-carousel-arrow-next {
  right: 18px;
}

.set-carousel-arrow i {
  font-size: 18px;
}

.set-showcase::before {
  background: var(--set-bg) right center / cover no-repeat;
  opacity: .86;
  filter: saturate(.92) contrast(1.08);
}

.set-showcase::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .52) 42%, rgba(0, 0, 0, .08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .58) 0%, rgba(0, 0, 0, .08) 42%, rgba(0, 0, 0, .42) 100%);
}

.set-copy,
.set-wine-grid {
  position: relative;
  z-index: 1;
}

.set-copy {
  max-width: 670px;
  align-self: start;
  padding-top: clamp(64px, 8vh, 110px);
}

.set-pictogram {
  width: clamp(110px, 12vw, 168px);
  height: clamp(110px, 12vw, 168px);
  margin: 8px 0 24px;
  object-fit: contain;
  opacity: .74;
}

.set-copy .kicker {
  color: var(--set-accent);
}

.set-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.set-kicker span:nth-of-type(1),
.set-wine-grid article:nth-child(1) h3 {
  color: var(--wine-1);
}

.set-kicker span:nth-of-type(2),
.set-wine-grid article:nth-child(2) h3 {
  color: var(--wine-2);
}

.set-kicker span:nth-of-type(3),
.set-wine-grid article:nth-child(3) h3 {
  color: var(--wine-3);
}

.set-kicker span:nth-of-type(4),
.set-wine-grid article:nth-child(4) h3 {
  color: var(--wine-4);
}

.set-kicker i {
  color: rgba(255, 255, 255, .42);
  font-style: normal;
}

.set-copy h2 {
  color: #f4f0ea;
  font-size: clamp(50px, 7vw, 62px);
}

.set-copy p {
  color: rgba(255, 255, 255, .68);
  font-size: 18px;
  line-height: 1.85;
}

.set-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.set-actions strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: var(--font-weight-medium);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.set-wine-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3.4vw, 58px);
  align-self: end;
}

.set-wine-grid article {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 18px;
}

.set-wine-grid h3 {
  font-size: 16px;
  line-height: 1.25;
}

.set-wine-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
}

.choice-option-mini-grid article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  padding: 0;
}

.choice-option-mini-grid img,
.choice-option-mini-grid span {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  place-items: center;
  object-fit: cover;
  background: rgba(213, 181, 109, .08);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .16em;
}

.choice-option-mini-grid h3 {
  padding: 14px 14px 4px;
}

.choice-option-mini-grid p {
  padding: 0 14px 14px;
}

.set-detail-body {
  background: var(--black);
}

.set-detail-page {
  --product-accent: var(--gold);
  padding-top: 88px;
}

.product-sticky-bar {
  position: fixed;
  inset: 78px 0 auto;
  z-index: 19;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  min-height: 58px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(213, 181, 109, .22);
  background: rgba(7, 7, 7, .88);
  backdrop-filter: blur(12px);
  padding: 8px var(--page-x);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity var(--surface-duration) var(--surface-ease),
    transform var(--surface-duration) var(--surface-ease);
}

.product-sticky-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.product-sticky-bar div {
  min-width: 0;
}

.product-sticky-bar strong,
.product-sticky-bar > span {
  color: var(--gold);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.product-sticky-bar strong {
  display: block;
  overflow: hidden;
  color: var(--text-strong);
  font-size: 19px;
  letter-spacing: .12em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-sticky-bar [data-product-sticky-subtitle] {
  display: flex;
  overflow: hidden;
  gap: 6px;
  align-items: center;
  color: rgba(255, 255, 255, .5);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .16em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-sticky-bar [data-product-sticky-subtitle] span {
  color: var(--subtitle-color);
}

.product-sticky-bar [data-product-sticky-subtitle] i {
  color: rgba(255, 255, 255, .34);
  font-style: normal;
}

.product-sticky-bar > span {
  font-size: 20px;
  letter-spacing: .12em;
  white-space: nowrap;
}

.product-sticky-bar .button {
  min-height: 38px;
  padding-inline: 18px;
  font-size: 11px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, .95fr);
  gap: clamp(38px, 6vw, 84px);
  align-items: start;
  padding: clamp(72px, 9vw, 116px) var(--page-x);
  background:
    radial-gradient(circle at 78% 18%, color-mix(in srgb, var(--product-accent), transparent 84%), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .045), transparent 36%),
    var(--surface-dark);
}

.product-detail-copy {
  max-width: 720px;
}

.product-detail-copy h1 {
  font-size: clamp(40px, 4.8vw, 56px);
}

.product-sku {
  color: rgba(255, 255, 255, .42);
  font-size: 11px;
  letter-spacing: .18em;
}

.product-subtitle {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--font-weight-light);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.product-subtitle span {
  color: var(--subtitle-color);
}

.product-subtitle i {
  color: rgba(255, 255, 255, .38);
  font-style: normal;
}

.product-description {
  max-width: 620px;
  color: var(--text-soft);
  font-size: 18px;
}

.product-purchase {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 34px 0;
}

.product-purchase strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: var(--font-weight-medium);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-selector-block {
  display: grid;
  gap: 14px;
  margin: 0 0 34px;
}

.product-selector-block > span {
  color: rgba(255, 255, 255, .52);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  letter-spacing: .18em;
  text-transform: uppercase;
}

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

.product-selector button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .035);
  color: rgba(255, 255, 255, .72);
  padding: 10px 12px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: var(--font-weight-bold);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-selector button:hover,
.product-selector button.is-active {
  border-color: var(--product-accent);
  color: var(--white);
}

.product-selector button.is-active {
  background: color-mix(in srgb, var(--product-accent), transparent 86%);
}

.product-selector img {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  object-fit: contain;
  opacity: .8;
}

.product-selector.is-choice-options {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  max-width: 720px;
}

.product-selector.is-choice-options .product-choice-option-tile {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;
  justify-content: stretch;
  gap: 0;
  aspect-ratio: auto;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 0;
  background: rgba(255, 255, 255, .035);
  color: rgba(255, 255, 255, .72);
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}

.product-selector.is-choice-options .product-choice-option-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 1px solid transparent;
  border-radius: 0;
  pointer-events: none;
}

.product-choice-option-tile:hover,
.product-choice-option-tile.is-selected {
  border-color: color-mix(in srgb, var(--product-accent), transparent 24%);
  background: rgba(213, 181, 109, .08);
  transform: translateY(-1px);
}

.product-choice-option-tile.is-selected {
  box-shadow: none;
}

.product-choice-option-tile.is-selected::after {
  border-color: color-mix(in srgb, var(--product-accent), transparent 18%);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--product-accent), transparent 18%);
}

.product-selector.is-choice-options .product-choice-option-info {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 4;
  display: inline-grid;
  width: 24px;
  height: 24px;
  min-height: 0;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, .68);
  padding: 0;
  font-family: inherit;
  font-size: 17px;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .62);
  transition: color .16s ease, opacity .16s ease, transform .16s ease;
}

.product-selector.is-choice-options .product-choice-option-info:hover,
.product-selector.is-choice-options .product-choice-option-info:focus-visible {
  color: var(--product-accent);
  opacity: 1;
  transform: translateY(-1px);
}

.product-choice-option-tile img,
.product-choice-option-placeholder {
  display: grid;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  min-height: 0;
  place-items: center;
  object-fit: cover;
  object-position: center;
  background: rgba(213, 181, 109, .08);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .16em;
}

.product-choice-option-tile div {
  align-self: stretch;
  min-width: 0;
  padding: 9px 10px 10px;
  background: rgba(7, 7, 7, .72);
}

.product-choice-option-tile h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .06em;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-choice-option-tile p {
  margin: 4px 0 0;
  color: var(--text-half-muted);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--font-weight-regular);
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.choice-option-modal-open {
  overflow: hidden;
}

.logout-confirm-open {
  overflow: hidden;
}

.logout-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, .58);
  backdrop-filter: blur(10px);
}

.logout-confirm-modal[hidden] {
  display: none;
}

.logout-confirm-card {
  width: min(100%, 420px);
  display: grid;
  gap: 16px;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background: rgba(9, 9, 8, .96);
  padding: 24px;
  color: var(--cream);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .38);
}

.logout-confirm-card h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1;
}

.logout-confirm-card p {
  margin: 0;
  color: var(--text-muted);
}

.logout-confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.choice-option-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, .68);
  backdrop-filter: blur(10px);
}

.choice-option-modal[hidden] {
  display: none;
}

.choice-option-modal-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, .95fr) minmax(300px, 1.05fr);
  align-items: stretch;
  width: min(780px, 100%);
  border: 1px solid rgba(213, 181, 109, .28);
  background: linear-gradient(180deg, rgba(28, 25, 19, .98), rgba(8, 8, 8, .98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, .48);
  color: var(--white);
  padding: 0;
}

.choice-option-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(0, 0, 0, .58);
  color: rgba(255, 255, 255, .74);
}

.choice-option-modal-close:hover,
.choice-option-modal-close:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.choice-option-modal-image {
  grid-row: 1 / 3;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  background: rgba(255, 255, 255, .04);
}

.choice-option-modal-card h2 {
  grid-column: 2;
  align-self: end;
  margin: 28px 28px 0 24px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: .04em;
  line-height: .98;
  text-transform: uppercase;
}

.choice-option-modal-card p {
  grid-column: 2;
  align-self: start;
  margin: 14px 28px 28px 24px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.6;
}

.choice-option-modal-image[hidden] ~ h2,
.choice-option-modal-image[hidden] ~ p {
  grid-column: 1 / -1;
  margin-left: 28px;
}

@media (max-width: 720px) {
  .choice-option-modal-card {
    display: block;
    width: min(420px, 100%);
  }

  .choice-option-modal-image {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .choice-option-modal-card h2 {
    margin: 18px 16px 0;
    font-size: clamp(24px, 8vw, 34px);
  }

  .choice-option-modal-card p {
    margin: 12px 16px 16px;
  }
}

.product-choice-selection-status {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, .54);
  font-size: 13px;
}

.product-selector-block > .product-choice-selection-status {
  margin: -8px 0 0;
}

.product-choice-selection-status:empty,
.product-choice-selection-status[hidden] {
  display: none;
}

.product-choice-selection-status.is-error {
  color: var(--gold);
}

.product-wine-list {
  display: grid;
  margin-top: 45px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-wine-list article {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 16px;
}

.product-wine-list h3 {
  color: var(--wine-color);
  font-size: 17px;
  line-height: 1.25;
}

.product-wine-list p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
}

.product-choice-option-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 45px;
}

.product-choice-option-list article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
}

.product-choice-option-list img,
.product-choice-option-list span {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  place-items: center;
  object-fit: cover;
  background: rgba(213, 181, 109, .08);
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: .18em;
}

.product-choice-option-list h3 {
  margin: 0;
  padding: 16px 16px 6px;
  color: var(--gold);
  font-size: 17px;
}

.product-choice-option-list p {
  margin: 0;
  padding: 0 16px 16px;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
}

.product-gallery {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 18px;
}

.product-gallery-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: transparent;
}

.product-gallery.is-loading-3d .product-gallery-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  background: rgba(7, 7, 7, .8);
  pointer-events: none;
}

.product-gallery.is-loading-3d .product-gallery-frame::after,
.product-gallery.is-loading .product-gallery-frame::after {
  content: "";
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(213, 181, 109, .22);
  border-top-color: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: loader-spin 760ms linear infinite;
}

.product-gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-frame img:not([src]) {
  display: none;
}

.product-gallery-frame.is-3d {
  background: #262524;
}

.product-gallery-frame.is-3d img {
  display: none;
}

.product-package-viewer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #262524;
}

.product-package-viewer canvas {
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
}

.package-viewer-hint {
  position: absolute;
  inset: 18px 18px auto auto;
  z-index: 2;
  color: rgba(255, 255, 255, .58);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  letter-spacing: .16em;
  pointer-events: none;
}

.package-viewer-controls {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  pointer-events: none;
}

.package-viewer-control,
.package-viewer-speed {
  pointer-events: auto;
}

.package-viewer-control {
  min-width: 34px;
  min-height: 34px;
  border: 1px solid rgba(213, 181, 109, .34);
  background: rgba(7, 7, 7, .64);
  color: var(--gold);
  padding: 0 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.package-viewer-control:hover,
.package-viewer-control.active {
  border-color: var(--gold);
  background: rgba(213, 181, 109, .16);
}

.package-viewer-control.is-hidden {
  display: none;
}

.package-viewer-speed {
  width: 92px;
  min-height: 34px;
  padding: 0;
  accent-color: var(--gold);
}

.product-gallery-dots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(66px, 78px));
  justify-content: start;
  gap: 10px;
}

.product-gallery-dots button {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .035);
  padding: 0;
  opacity: .66;
  transition:
    border-color var(--surface-duration) var(--surface-ease),
    opacity var(--surface-duration) var(--surface-ease);
}

.product-gallery-dots button.is-active {
  border-color: var(--gold);
  opacity: 1;
}

.product-gallery-dots button:hover {
  border-color: var(--gold);
  opacity: 1;
}

.product-gallery-dots img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-360 {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 36%, rgba(213, 181, 109, .2), transparent 44%),
    rgba(255, 255, 255, .035);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  letter-spacing: .08em;
}

.product-detail-description {
  padding: var(--section-y) var(--page-x);
  background: var(--black);
}

.product-detail-description h2,
.product-detail-description p {
  max-width: 920px;
}

.product-detail-description .kicker {
  color: var(--gold);
}

.product-detail-description p:not(.kicker) {
  color: var(--text-soft);
  font-size: 18px;
}

.product-detail-description .product-wine-list p {
  font-size: 14px;
      color: var(--text-half-muted);
}

@media (max-width: 980px) {
  :root {
    --grid-text-align: center;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    column-gap: 22px;
    row-gap: 0;
  }

  .brand {
    order: 1;
  }

  .header-actions {
    order: 2;
  }

  .site-header .nav-toggle {
    order: 3;
    display: inline-grid;
    justify-self: end;
  }

  .site-nav {
    order: 4;
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height var(--surface-duration) var(--surface-ease),
      opacity var(--surface-duration) var(--surface-ease),
      transform var(--surface-duration) var(--surface-ease);
  }

  .header-actions {
    grid-column: 2;
    justify-content: end;
  }

  .header-actions > .language-switcher {
    display: none;
  }

  .header-actions > [data-open-account] {
    display: none;
  }

  .mobile-nav-account {
    display: inline-flex;
    order: 0;
    align-self: flex-end;
    max-width: 100%;
    padding: 0;
    color: var(--gold);
    font-size: 15px;
    letter-spacing: .14em;
    text-align: right;
  }

  .site-nav a {
    order: 1;
    font-size: 15px;
    letter-spacing: .14em;
  }

  .site-nav .language-switcher {
    display: inline-flex;
    order: 2;
    align-self: flex-end;
    margin-top: 0;
  }

  .language-switcher {
    border-color: rgba(213, 181, 109, .34);
    background: rgba(0, 0, 0, .28);
  }

  .site-header.nav-open .site-nav {
    justify-content: flex-start;
    max-height: 280px;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding-top: 18px;
  }

  .site-header.nav-open {
    background: var(--header-bg-open);
  }

  .account-body .site-header.nav-open,
  .checkout-body .site-header.nav-open {
    background: #050505;
  }

  .intro-band,
  .dark-story,
  .dark-story.reverse,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .dark-story.reverse div {
    order: 0;
  }

  .feature-row,
  .product-grid,
  .sets-overview-grid,
  .philosophy-grid,
  .philosophy-principles,
  .gifting-flow,
  .set-wine-grid {
    grid-template-columns: 1fr;
  }

  .feature-row article {
    min-height: auto;
  }

  .philosophy-grid article,
  .philosophy-grid article:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 16, 14, .16);
  }

  .set-showcase {
    min-height: auto;
    padding-top: 168px;
    grid-template-rows: auto auto;
  }

  .bundle-carousel.has-title .set-showcase {
    padding-top: 238px;
  }

  .bundle-carousel.has-title .set-carousel-nav {
    inset-block-start: 118px;
  }

  .set-copy {
    padding-top: 0;
  }

  .set-carousel-arrow {
    top: auto;
    bottom: 18px;
    width: 42px;
    height: 52px;
    transform: none;
  }

  .set-showcase::before {
    opacity: .72;
  }

  .product-detail {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .product-sticky-bar {
    inset-block-start: 68px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    padding-block: 8px;
  }

  .product-sticky-bar div {
    grid-column: 1 / -1;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
    order: -1;
  }

  .checkout-mode-grid,
  .checkout-address-fields,
  .checkout-delivery-types,
  .checkout-confirm {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
    width: calc(100% + (var(--page-x) * 2));
    margin: 0 calc(var(--page-x) * -1);
  }

}

@media (max-width: 620px) {
  .hero {
    padding-top: 118px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 40px;
  }

  .sets-hero {
    min-height: 78svh;
    padding-top: 126px;
  }

  .contact-hero {
    min-height: 70svh;
    padding-top: 126px;
  }

  .philosophy-page-hero {
    min-height: 76svh;
    padding-top: 126px;
  }

  .set-copy h2 {
    font-size: 44px;
  }

  .product-selector.is-choice-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .set-copy p,
  .sets-hero p {
    font-size: 16px;
  }

  .product-card header,
  .card-actions {
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-contact-block {
    justify-items: start;
    text-align: left;
  }

  .site-header {
    column-gap: 10px;
    row-gap: 0;
    padding: 14px 16px;
  }

  .brand {
    max-width: 128px;
  }

  .brand img {
    width: 128px;
  }

  .text-button {
    font-size: 11px;
    letter-spacing: .08em;
  }

  .cart-button {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0;
  }

  .cart-button::before {
    content: none;
  }

  .cart-button span {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .cart-button i {
    font-size: 14px;
  }

  .drawer-panel {
    padding: 22px;
  }

  .process-list article {
    grid-template-columns: 1fr;
  }

  .set-detail-page {
    padding-top: 72px;
  }

  .product-wine-list {
    grid-template-columns: 1fr;
  }

  .product-purchase {
    align-items: stretch;
  }

  .product-purchase .button {
    width: 100%;
  }

  .product-sticky-bar {
    inset-block-start: 64px;
  }

  .product-sticky-bar strong {
    font-size: 16px;
  }

  .product-sticky-bar > span {
    font-size: 17px;
  }

  .product-sticky-bar .button {
    min-height: 34px;
    padding-inline: 12px;
  }

  .checkout-page {
    padding-top: 112px;
  }

  .checkout-page.has-checkout-action-strip {
    padding-bottom: 104px;
  }

  .checkout-steps {
    grid-template-columns: 1fr 1fr;
  }

  .checkout-step,
  .checkout-success {
    padding: 18px;
  }

  .checkout-page.has-checkout-action-strip .checkout-step.is-active {
    padding-bottom: 96px;
  }

  .checkout-step-head,
  .checkout-actions {
    display: grid;
    justify-content: stretch;
  }

  .checkout-page.has-checkout-action-strip .checkout-step.is-active > .checkout-actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    margin: 0;
    padding: 10px var(--page-x) calc(10px + env(safe-area-inset-bottom));
  }

  .checkout-page.has-checkout-action-strip .checkout-step.is-active > .checkout-actions:has(.button:only-child) {
    grid-template-columns: 1fr;
  }

  .checkout-page.has-checkout-action-strip .checkout-step.is-active > .checkout-actions .button {
    min-width: 0;
    min-height: 46px;
  }

  .checkout-step-head {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }

  .checkout-step-head p {
    justify-self: start;
  }

  .checkout-line,
  .checkout-address-fields,
  .checkout-form-grid {
    grid-template-columns: 1fr;
  }

  .checkout-line > strong {
    min-width: 0;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .drawer,
  .drawer-panel,
  .site-nav,
  .set-showcase {
    transition: none;
  }
}
/* FAQ */
.faq-hero {
  padding: clamp(118px, 16vw, 168px) var(--page-x) clamp(40px, 7vw, 72px);
  background: var(--black);
  border-bottom: 1px solid var(--line-soft);
}

.faq-hero .section-heading {
  max-width: 760px;
  margin: 0 auto;
}

.faq-page-section {
  padding: clamp(42px, 7vw, 82px) var(--page-x) var(--section-y);
  background: var(--black);
}

.faq-page-inner {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  max-width: var(--content-wide);
  margin: 0 auto;
  align-items: start;
}

.faq-control-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 16, 15, .86);
}

.faq-search {
  display: grid;
  gap: 9px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}

.faq-search input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  background: rgba(255, 255, 255, .06);
  color: var(--cream);
  outline: none;
  text-transform: none;
}

.faq-search input:focus {
  border-color: var(--gold-line);
  box-shadow: 0 0 0 3px rgba(213, 181, 109, .12);
}

.faq-category-list {
  display: grid;
  gap: 6px;
}

.faq-category-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 12px;
  background: transparent;
  color: var(--text-soft);
  text-align: left;
}

.faq-category-list button:hover,
.faq-category-list button.is-active {
  border-color: rgba(213, 181, 109, .28);
  background: rgba(213, 181, 109, .1);
  color: var(--cream);
}

.faq-content-panel {
  display: grid;
  gap: 18px;
}

.faq-content-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}

.faq-content-head strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.faq-stack,
.faq-preview-grid {
  display: grid;
  gap: 12px;
}

.faq-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
  overflow: hidden;
}

.faq-card summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  gap: 8px 16px;
  align-items: center;
  min-height: 76px;
  padding: 18px 20px;
  color: var(--cream);
  cursor: pointer;
  list-style: none;
}

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

.faq-card-category {
  grid-column: 1;
  color: var(--gold);
  font-size: 11px;
  font-weight: var(--font-weight-bold);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.faq-card summary strong {
  grid-column: 1;
  display: block;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: var(--font-weight-semibold);
  line-height: 1.28;
}

.faq-card summary i {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform var(--surface-duration) var(--surface-ease);
}

.faq-card[open] {
  border-color: rgba(213, 181, 109, .36);
  background: rgba(213, 181, 109, .075);
}

.faq-card[open] summary i {
  transform: rotate(225deg);
}

.faq-card-answer {
  max-width: 780px;
  padding: 0 20px 22px;
  color: var(--text-soft);
  line-height: 1.72;
}

.faq-contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
  padding: 20px;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  color: var(--cream);
  background: rgba(213, 181, 109, .08);
}

.faq-state,
.faq-empty {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-soft);
  text-align: center;
  background: rgba(255, 255, 255, .035);
}

.faq-preview-section {
  padding: var(--section-y) var(--page-x);
  border-top: 1px solid var(--line-soft);
  background: var(--surface-dark);
}

.checkout-faq-section {
  margin-top: clamp(36px, 6vw, 72px);
  padding-top: clamp(42px, 7vw, 72px);
}

.faq-preview-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.faq-preview-heading {
  margin-bottom: 28px;
}

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

.faq-preview-grid .faq-card summary {
  min-height: 118px;
  align-content: start;
}

.faq-preview-grid .faq-card summary strong {
  font-size: 18px;
}

.faq-preview-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 980px) {
  .faq-page-inner {
    grid-template-columns: 1fr;
  }

  .faq-control-panel {
    position: static;
  }

  .faq-category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .faq-category-list {
    grid-template-columns: 1fr;
  }

  .faq-card summary {
    padding: 16px;
  }

  .faq-card-answer {
    padding: 0 16px 18px;
  }

  .faq-contact-band {
    align-items: stretch;
    flex-direction: column;
  }
}
.discount-price {
  --discount-original-color: rgba(255, 255, 255, .48);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  line-height: 1;
  vertical-align: middle;
}

.account-body .discount-price,
.checkout-body .discount-price,
.gift-recipient-body .discount-price {
  --discount-original-color: rgba(17, 16, 14, .46);
}

.discount-price-original {
  display: inline-flex;
  align-items: center;
  color: var(--discount-original-color);
  font-size: .72em;
  font-weight: 400;
  line-height: 1;
  text-decoration: line-through;
}

.discount-price-current {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  line-height: 1;
}

.discount-price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 3px 8px;
  border: 1px solid rgba(213, 181, 109, .48);
  border-radius: 4px;
  background: rgba(213, 181, 109, .12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.cart-discount-price,
.checkout-discount-price {
  vertical-align: middle;
}
