/* Fonts */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/roboto.woff2') format('woff2');
}
@font-face {
  font-family: 'Brandon';
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/brandon-text-bold.woff2') format('woff2'),
       url('../fonts/brandon-text-bold.woff') format('woff');
}
@font-face {
  font-family: 'Brandon';
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url('../fonts/brandon-text-medium.woff2') format('woff2'),
       url('../fonts/brandon-text-medium.woff') format('woff');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/Cormorant-Garamond-Italic.woff2') format('woff2');
}

@font-face {
  font-family: 'FS Industrie';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/FS-Industrie-Cd-Bold.woff2') format('woff2'),
       url('../fonts/FS-Industrie-Cd-Bold.woff') format('woff');
}

:root {
  --color-black:    #000;
  --color-white:    #ffffff;
  --color-gold:     #C9A84C;
  --color-white-85: rgba(255,255,255,0.85);
  --color-white-65: rgba(255,255,255,0.65);
  --color-white-45: rgba(255,255,255,0.45);
  --color-hover:    #aaaaaa;
  --bl-terra:       #BB4423;
  --bl-panel-bg:    #111111;

  /* type */
  --font-display:  'FS Industrie', 'Arial Narrow', Arial, sans-serif;
  --font-heading:  'FS Industrie', sans-serif;
  --font-ui:       'Brandon', sans-serif;
  --font-body:     'Roboto', sans-serif;

  --eyebrow-size:    14px;
  --eyebrow-lh:      1;
  --eyebrow-weight:  400;
  --eyebrow-spacing: normal;
  --eyebrow-mb:      10px;

  --hl-large:    83px;
  --hl-large-lh: 66px;
  --hl-medium:   72px;
  --hl-medium-lh: 0.95;
  --hl-small:    56px;
  --hl-small-lh: 0.9;

  --body-size:    16px;
  --body-lh:      1.7;
  --body-color:   rgba(255,255,255,0.85);

  --btn-size:     23px;
  --btn-lh:       23px;

  --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-decel:    cubic-bezier(0.0, 0.0, 0.2, 1);

  /* layout */
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
  --container-max:   1280px;
  --container-pad:   clamp(1.25rem, 4vw, 3rem);
  --header-height:   62px;

  /* Vertical gap between a page hero's bottom edge and the first content
     section. Single source of truth — about/press/menu/shop all reference
     this so future "tighter" / "looser" is a one-line change. */
  --hero-content-gap: clamp(3rem, 5vh, 5rem);
  --radius-sm: 2px;
  --radius-md: 4px;

  --z-header:  1000;
  --z-overlay: 1100;
  --z-mobile:  1200;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  background: #000; /* prevents white fringe during compositor animations — default html bg is white */
}

body {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-x: clip;
}
@supports (scrollbar-gutter: stable) {
  body { scrollbar-gutter: stable; }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.cta-btn {
  display: inline-block;
  padding: 16px 18px;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: var(--btn-size);
  line-height: var(--btn-lh);
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--color-white);
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  transition: none;
  white-space: nowrap;
}

@media (hover: hover) {
  .cta-btn:hover {
    background: var(--color-white);
    color: var(--color-black);
    box-shadow: inset 0 0 0 2px var(--color-black);
  }
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

.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;
}
a.sr-only:focus,
a.sr-only:focus-visible {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100001;
  width: auto;
  height: auto;
  padding: 10px 20px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-family: var(--font-ui, 'Brandon', sans-serif);
  text-decoration: none;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.3);
}

:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* reduced motion — parallax also killed, see tour-v2 */
@media (prefers-reduced-motion: reduce) {
  .bl-bottle-item,
  .bl-panel,
  .spirit-slide,
  .spirit-spin-wrap,
  .spirit-slide-info,
  .spirit-slide-video,
  .bl-reveal,
  .tour-card-anim,
  .tv2-hero__bg,
  .tv2-barrel__bg,
  .tv2-book__bg,
  .wide-bg,
  .age-gate,
  .age-gate__form.shake,
  .cart-drawer__overlay,
  .cart-drawer__panel,
  .cart-item,
  .site-header__cart-count,
  .site-header__cart-icon,
  .site-header__mobile-overlay,
  .site-header__mobile-nav ul li {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto !important; }
}

/* --- Age Gate --- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.age-gate.is-ready {
  opacity: 1;
}
.age-gate.is-verified {
  opacity: 0;
  pointer-events: none;
}

.age-gate__inner {
  text-align: center;
  max-width: 360px;
  width: 100%;
}

.age-gate__logo {
  width: 80px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
}

.age-gate__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--color-white);
  margin: 0 0 8px;
}

.age-gate__sub {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white-65);
  margin: 0 0 28px;
}

.age-gate__fields {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}

.age-gate__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.age-gate__field--year {
  flex: 1.4;
}

.age-gate__field label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white-65);
  text-align: left;
}

.age-gate__field input {
  width: 100%;
  background: transparent;
  border: 2px solid var(--color-white-45);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 12px 8px;
  transition: border-color 0.2s ease;
}
.age-gate__field input:focus {
  border-color: var(--color-white);
}
.age-gate__field input:focus-visible {
  outline: none;
}
.age-gate__field input::placeholder {
  color: var(--color-white-45);
  font-weight: 400;
}

.age-gate__remember {
  margin-bottom: 20px;
}
.age-gate__check-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white-65);
  cursor: pointer;
}
.age-gate__check-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-white);
  cursor: pointer;
}

.age-gate__submit {
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
}

.age-gate__error {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  /* Lightened from brand --bl-terra (#BB4423, 4.1:1) to clear WCAG 4.5:1 on black */
  color: #E06B50;
  min-height: 1.4em;
  margin: 0;
}

.age-gate__legal {
  font-family: var(--font-ui);
  font-size: 11px;
  color: rgba(255,255,255,0.78);
  margin: 24px 0 4px;
  line-height: 1.6;
}
.age-gate__legal a {
  color: var(--color-white);
  text-decoration: underline;
}

.age-gate__responsible {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

@keyframes ageGateShake {
  0%, 100% { transform: translateX(0); }
  20%      { transform: translateX(-8px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(2px); }
}
.age-gate__form.shake {
  animation: ageGateShake 0.4s ease;
}

/* hide everything behind the gate */
.age-gate-active .site-header,
.age-gate-active .site-logo-float,
.age-gate-active .site-main,
.age-gate-active .site-footer {
  visibility: hidden;
}

/* Each blocking surface owns a separate state class. This lets multiple
   surfaces coexist without one close action accidentally unlocking another. */
body.age-gate-active,
body.mobile-menu-open,
body.cart-open,
body.shop-detail-open,
body.privacy-region-blocked {
  overflow: hidden;
}


/* 404 */
.error-404 {
  height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-404__wrap { text-align: center; padding: 40px; }
.error-404__wrap .eyebrow {
  font-family: var(--font-ui);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-spacing);
  line-height: var(--eyebrow-lh);
  text-transform: uppercase;
  margin: 0 0 var(--eyebrow-mb);
}
.error-404__wrap h1 {
  font-size: var(--hl-large);
  line-height: var(--hl-large-lh);
  text-transform: uppercase;
  margin: 0 0 32px;
}
.error-404__logo {
  width: 180px;
  height: auto;
  margin: 0 auto 32px;
}
.error-404__body {
  max-width: 400px;
  margin: 0 auto 40px;
  color: var(--color-white-65);
}
.error-404__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.error-404__actions .cta-btn { margin-top: 0; }

/* --- Cart Drawer --- */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
}
.cart-drawer.is-open {
  pointer-events: all;
}

.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.cart-drawer.is-open .cart-drawer__overlay {
  opacity: 1;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(430px, 100vw);
  height: 100%;
  background: var(--bl-panel-bg);
  border-left: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__header {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 11px 28px 0px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0;
  line-height: 1;
}
.cart-drawer__close {
  position: absolute;
  top: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 64px;
  line-height: 1;
  cursor: pointer;
  padding: 0 clamp(0.7rem, 2vw, 1.9rem) 0 clamp(1rem, 3vw, 2.5rem);
  transition: color 0.2s;
}
.cart-drawer__close:hover {
  color: var(--color-hover);
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.cart-drawer__empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cart-empty {
  color: var(--color-white);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  font-family: var(--font-ui);
  margin: 0 0 16px;
}
.cart-drawer__shop-btn {
  display: block;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.cart-item {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item__img {
  width: 110px;
  height: 220px;
  object-fit: contain;
  object-position: bottom center;
  background: transparent;
  flex-shrink: 0;
}
.cart-item__img--empty {
  background: rgba(255,255,255,0.04);
}
.cart-item__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.cart-item__name {
  font-family: var(--font-heading);
  font-size: clamp(34px, 11.2vw, 48px);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0;
  line-height: 0.9;
  white-space: nowrap;
}
.cart-item__eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--eyebrow-mb);
}
.cart-item__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 4px;
}
.qty-btn {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.qty-btn:hover {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
  box-shadow: inset 0 0 0 2px var(--color-black);
}
.qty-num {
  font-family: var(--font-ui);
  font-size: 18px;
  color: var(--color-white);
  min-width: 24px;
  text-align: center;
}
.cart-item__price {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
}

.cart-drawer__footer {
  /* Default hidden; cart.js flips this to block when the cart has items. */
  display: none;
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cart-drawer__notice {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--color-white);
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: center;
}
.cart-drawer__checkout-btn {
  display: block;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  margin-top: 0;
}
.cart-drawer__reassure {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--color-white-65);
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: 0.04em;
}
.cart-drawer__powered {
  font-family: var(--font-ui);
  font-size: 10px;
  color: var(--color-white);
  text-align: center;
  margin: 12px 0 0;
  letter-spacing: 0.04em;
}

/*
   Bottle Lineup — shared between home and shop pages
*/
.bl-section {
  --bl-hover-scale: 1.08;
  --bl-selected-scale: 1.18;
  --bl-unselected-scale: 0.92;
  --bl-dim-brightness: 0.5;
  --bl-dim-saturation: 0.6;
  --bl-entrance-dur: 600ms;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  padding: clamp(40px, 6vh, 80px) 0 clamp(40px, 6vh, 80px);
  text-align: center;
  background: var(--color-black);
  overflow: visible;
  overflow-x: hidden;
  overflow-x: clip;
  box-sizing: border-box;
}

.bl-section .bl-eyebrow {
  padding: 0 clamp(20px, 4vw, 40px);
  width: max-content;
  max-width: 100%;
  align-self: center;
  transition: opacity 0.25s ease,
              transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.bl-section .bl-heading {
  padding: 0 clamp(20px, 4vw, 40px);
  width: max-content;
  max-width: 100%;
  align-self: center;
  flex-shrink: 0;
  transition: opacity 0.25s ease,
              transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}


.bl-eyebrow {
  font-family: var(--font-ui);
  font-weight: var(--eyebrow-weight);
  font-size: var(--eyebrow-size);
  letter-spacing: var(--eyebrow-spacing);
  line-height: var(--eyebrow-lh);
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 var(--eyebrow-mb);
}

.bl-heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, var(--hl-large));
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.8;
  color: var(--color-white);
  letter-spacing: normal;
  margin: 0;
}

/* Trim cap-top + descender empty space from the line-box on display
   headlines that use FS Industrie with line-height < 1.0. Closes the
   Windows/Mac eyebrow→headline gap delta caused by DirectWrite vs
   CoreText reporting different ascent metrics. Browsers without support
   fall back to current behavior. .spirit-name is already trimmed in
   shop-v2.css next to its own selector. */
@supports (text-box-trim: trim-both) and (text-box-edge: cap alphabetic) {
  .bl-heading,
  .split-panel .headline,
  .wide-content .headline,
  .tour-v2 .bl-headline,
  .tv2-hero__headline,
  .tv2-book__headline,
  .menu-page__title,
  .about-section__heading,
  .press-tier {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
  }
}

.bl-section .bl-subheading {
  padding: 12px clamp(20px, 4vw, 40px) 0;
  font-family: var(--font-ui);
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  transition: opacity 0.3s ease;
}
/* Hide subheading while a bottle is selected; restore when cleared. */
.bl-section.has-selection .bl-subheading {
  opacity: 0;
  pointer-events: none;
}

.bl-bottle-row {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: nowrap;
  flex: 0 1 auto;
  min-height: 0;
  gap: 0;
  padding: 0 6%;
  margin-top: clamp(20px, 3.5vh, 44px);
  margin-bottom: clamp(12px, 2vh, 28px);
}

.bl-bottle-item {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  pointer-events: none;
  transform-origin: center center;
  transition: transform 1.2s cubic-bezier(0.0, 0.0, 0.2, 1),
              opacity 1.2s cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* dim overlay — replaces filter:brightness/saturate to avoid
   Chrome compositing repaints during transform transitions */
.bl-bottle-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.bl-bottle-item img {
  display: block;
  width: 100%;
  max-height: 52vh;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.7));
  user-select: none;
}

/* variant slide clip */
.bl-img-wrap {
  overflow: visible;
}
.bl-img-wrap.is-sliding {
  overflow: hidden;
}
.bl-img-wrap.is-sliding img {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.bl-section.has-selection .bl-bottle-item.is-selected img {
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.7))
          drop-shadow(0 0 20px rgba(255, 255, 255, 0.22));
}


/* proof + CTA below each bottle */
.bl-bottle-controls {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 2px));
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.bl-section.has-selection .bl-bottle-item.is-selected .bl-bottle-controls {
  opacity: 1;
  pointer-events: auto;
}
.bl-bottle-controls .bl-proof-selector {
  display: flex;
  gap: 6px;
}
.bl-bottle-controls .bl-proof-btn {
  flex: 1;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(9px, 0.85vw, 12px);
  padding: 4px 6px;
}
.bl-bottle-controls .bl-bottle-cta {
  text-align: center;
}

.bl-bottle-close {
  position: absolute;
  top: -20px;
  right: -20px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 14px;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: color 0.2s ease;
  z-index: 3;
}
.bl-bottle-close:hover { color: var(--color-white-45); }
.bl-bottle-controls--simple .bl-bottle-close { top: -26px; }

.bl-bottle-item:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 4px;
  border-radius: 4px;
}

/* entrance target */
.bl-bottle-item.is-visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.bl-bottle-item.is-visible::before {
  opacity: 0.15;
}

.bl-bottle-item.is-ready {
  transition: transform 200ms ease-in-out,
              opacity 200ms ease-in-out;
}

.bl-bottle-item.is-ready.is-hovered {
  transform: scale(var(--bl-hover-scale));
  z-index: 2;
  transition: transform 150ms ease-out;
}
.bl-bottle-item.is-ready.is-hovered::before {
  opacity: 0;
}

/* dim siblings when one is selected */
.bl-section.has-selection .bl-bottle-item.is-ready {
  transform: scale(var(--bl-unselected-scale));
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
              opacity 650ms ease;
}
.bl-section.has-selection .bl-bottle-item.is-ready::before {
  opacity: 0.45;
}

.bl-section.has-selection .bl-bottle-item.is-selected {
  transform: scale(var(--bl-selected-scale));
  opacity: 1;
  z-index: 2;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1),
              opacity 350ms ease;
}
.bl-section.has-selection .bl-bottle-item.is-selected::before {
  opacity: 0;
}

/* hover hint while another bottle is selected */
.bl-section.has-selection .bl-bottle-item.is-ready.is-hovered:not(.is-selected) {
  transform: scale(0.96);
  transition: transform 150ms ease-out;
}
.bl-section.has-selection .bl-bottle-item.is-ready.is-hovered:not(.is-selected)::before {
  opacity: 0.25;
}

/* deselection uses slower easing */
.bl-section.is-deselecting .bl-bottle-item.is-ready {
  transition: transform 420ms cubic-bezier(0.0, 0.0, 0.2, 1),
              opacity 400ms ease-out;
}


.bl-bottle-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: var(--eyebrow-spacing);
  text-transform: uppercase;
  color: var(--color-white);
  text-align: center;
  line-height: var(--eyebrow-lh);
  white-space: nowrap;
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(0);
}

/* dim labels when hovering row */
.bl-bottle-row:has(.is-hovered) .bl-bottle-label {
  color: var(--color-white);
}
.bl-bottle-item.is-hovered .bl-bottle-label {
  color: var(--color-white);
}

/* hide label on hovered bottle — slide down and fade */
.bl-bottle-item.is-hovered .bl-bottle-label {
  opacity: 0;
  transform: translateY(8px);
}

/* selection label states */
.bl-section.has-selection .bl-bottle-label {
  color: var(--color-white-45);
}
.bl-section.has-selection .bl-bottle-item.is-selected .bl-bottle-label {
  color: var(--color-white);
  opacity: 0;
}
.bl-section.has-selection .bl-bottle-item.is-hovered .bl-bottle-label {
  color: var(--color-white);
}


.bl-proof-selector {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.bl-proof-btn {
  font-family: var(--font-ui);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white-45);
  background: none;
  border: 1px solid var(--color-white-45);
  border-radius: 2px;
  padding: 4px 10px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  line-height: 1.2;
}
.bl-proof-btn:hover {
  color: var(--color-white);
  border-color: var(--color-white);
}
.bl-proof-btn.is-active {
  color: var(--color-white);
  border-color: var(--color-white);
}


/* Detail strip */
.bl-detail-area {
  width: 100%;
  min-height: 130px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  margin-top: clamp(8px, 1.5vh, 20px);
  overflow: hidden;
}

.bl-detail-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 100px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}
.bl-detail-watermark.is-revealed {
  opacity: 1;
}
.bl-detail-area.has-selection .bl-detail-watermark {
  opacity: 0;
  transition: opacity 0.15s ease-out;
}


.bl-panel {
  width: 100%;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  z-index: 1;
}
.bl-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.bl-close {
  position: absolute;
  top: -4px;
  right: 5%;
  background: none;
  border: none;
  color: var(--color-white-65);
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.bl-panel.is-open .bl-close {
  opacity: 1;
  pointer-events: auto;
}
.bl-close:hover { color: var(--color-white); }

.bl-panel-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 5%;
}

.bl-panel-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  justify-self: end;
}

.bl-panel-eyebrow {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: var(--eyebrow-size);
  letter-spacing: var(--eyebrow-spacing);
  line-height: var(--eyebrow-lh);
  text-transform: uppercase;
  color: var(--color-white);
}

.bl-panel-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, var(--hl-small));
  font-weight: 700;
  text-transform: uppercase;
  line-height: var(--hl-small-lh);
  color: var(--color-white);
  letter-spacing: normal;
  white-space: nowrap;
}

.bl-panel-proof {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: clamp(13px, 1.2vw, 17px);
  text-transform: uppercase;
  color: var(--color-white);
  margin-top: 4px;
  line-height: 1.4;
  letter-spacing: normal;
}

.bl-panel-desc {
  max-width: 380px;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.1vw, var(--body-size));
  font-weight: 400;
  line-height: var(--body-lh);
  color: var(--color-white-85);
  text-align: center;
  justify-self: center;
}

.bl-cta-row {
  display: flex;
  gap: clamp(6px, 0.8vw, 10px);
  align-items: center;
}

.bl-cta-row .cta-btn {
  padding: clamp(10px, 1.2vw, 16px) clamp(12px, 1.3vw, 18px);
  font-size: clamp(16px, 1.4vw, var(--btn-size));
  line-height: 1;
  margin-top: 0;
}


@media (max-width: 1024px) {
  .bl-bottle-item img { height: auto; }
  .bl-panel-content { padding: 0 3%; }
  .bl-bottle-close { right: 0; }
}

@media (min-width: 769px) and (max-width: 880px) {
  .bl-bottle-item:first-child .bl-bottle-controls {
    transform: translateX(calc(-50% + 16px)) translateY(calc(100% + 2px));
  }
  .bl-bottle-item:last-child .bl-bottle-controls {
    transform: translateX(calc(-50% - 16px)) translateY(calc(100% + 2px));
  }
}


/* Mobile — bottle lineup */
@media (max-width: 768px) {

  .bl-section {
    padding: 24px 0 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    --bl-entrance-dur: 250ms;
  }
  /* contain horizontal overflow from bottle row without
     breaking the row's internal scroll */
  .bl-section > :not(.bl-bottle-row) {
    max-width: 100vw;
  }
  .bl-heading { font-size: 44px; line-height: 38px; margin-bottom: 6px; }
  .bl-eyebrow { font-size: 12px; margin-bottom: 6px; }

  .bl-bottle-row {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    overflow-y: clip;
    /* JavaScript owns centering/infinite-row positioning on mobile. Native
       scroll snapping here caused a second, competing reposition. */
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 24px 0 110px;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    scrollbar-width: none;
  }
  .bl-bottle-row::-webkit-scrollbar { display: none; }
  .bl-scroll-spacer {
    flex: 0 0 50vw;
    width: 50vw;
    min-width: 50vw;
    height: 1px;
    pointer-events: none;
  }

  .bl-bottle-item,
  .bl-bottle-item.is-visible,
  .bl-bottle-item.is-ready {
    flex: 0 0 28vw;
    max-width: 28vw;
    scroll-snap-align: center;
    padding: 0 2px;
    margin: 0;
    opacity: 0.45;
    transform: scale(0.75);
    transform-origin: center center;
    pointer-events: auto;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  }
  .bl-bottle-item::before { display: none; }
  .bl-bottle-item img { height: 280px; }

  /* centered bottle grows and brightens */
  .bl-bottle-item.is-centered {
    opacity: 1;
    transform: scale(1.1);
  }

  /* labels visible by default, hide on centered bottle */
  .bl-bottle-label {
    opacity: 0.7;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .bl-bottle-item.is-centered .bl-bottle-label {
    opacity: 0;
    transform: translateY(6px);
  }
  /* override desktop selection states */
  .bl-section.has-selection .bl-bottle-label,
  .bl-section.has-selection .bl-bottle-item.is-selected .bl-bottle-label {
    color: var(--color-white);
  }

  /* controls below bottle — absolutely positioned so they
     don't push bottles up. Out of flex flow entirely. */
  .bl-bottle-controls {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
    margin-top: -12px;
    align-items: center;
    transition: opacity 0.25s ease;
    width: max-content;
  }
  .bl-bottle-item.is-centered .bl-bottle-controls {
    opacity: 1;
    pointer-events: auto;
  }
  .bl-bottle-close { display: none; }

  .bl-bottle-row:has(.is-hovered) .bl-bottle-label { color: var(--color-white); }

  .bl-bottle-controls .bl-proof-selector {
    width: 100%;
    gap: 8px;
  }
  .bl-proof-btn {
    flex: 1;
    min-height: 0;
    padding: 8px 8px;
    font-size: 16px;
    text-align: center;
    line-height: 1;
  }

  .bl-close {
    top: 0;
    right: 20px;
    font-size: 22px;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
  }

  .bl-detail-area {
    display: none;
  }
}

@media (max-width: 480px) {
  .cart-drawer__items {
    padding-inline: 18px;
  }
  .cart-item {
    gap: 12px;
  }
  .cart-item__name {
    font-size: clamp(27px, 8.2vw, 34px);
  }
  .cart-item__eyebrow {
    white-space: normal;
    overflow-wrap: break-word;
    line-height: 1.15;
  }

  .bl-bottle-item,
  .bl-bottle-item.is-visible,
  .bl-bottle-item.is-ready { flex: 0 0 30vw; max-width: 30vw; }
  .bl-bottle-item img { height: 240px; }
  .bl-proof-btn { padding: 6px 10px; font-size: 11px; white-space: nowrap; }
  .bl-bottle-close { min-width: 44px; min-height: 44px; padding: 10px; }
}


/* reduced motion — bottle lineup */
@media (prefers-reduced-motion: reduce) {
  .bl-bottle-item,
  .bl-bottle-item.is-visible,
  .bl-bottle-item.is-ready,
  .bl-bottle-item.is-hovered,
  .bl-section.has-selection .bl-bottle-item,
  .bl-section.is-deselecting .bl-bottle-item,
  .bl-panel,
  .bl-proof-btn,
  .bl-close,
  .bl-bottle-label {
    transition-duration: 0.01ms;
  }
}
