/* ==========================================================================
   Tan Bomb Ltd - Theme Styles
   ========================================================================== */

/* --- Custom properties --------------------------------------------------- */

:root {
  --color-white:     #FFFFFF;
  --color-primary:   #AD2234;
  --color-secondary: #721925;
  --color-dark:      #292624;
  --color-bg:        #FFFFFF;
  --color-text:      #292624;

  --color-gold-light: #F2E0A8;
  --color-gold:       #D4B04A;
  --color-gold-deep:  #B8942F;
  --gold-gradient: linear-gradient(
    135deg,
    #F2E0A8 0%,
    #D4B04A 35%,
    #B8942F 55%,
    #D4B04A 100%
  );
  --gold-gradient-metallic: linear-gradient(
    155deg,
    #FFF8E7 0%,
    #F2E0A8 15%,
    #E8C96A 32%,
    #B8942F 48%,
    #8B6914 55%,
    #D4B04A 70%,
    #F2E0A8 85%,
    #C9A227 100%
  );
  --gold-gradient-logo-text: linear-gradient(
    148deg,
    #FFF8E7 0%,
    #F2E0A8 16%,
    #E8C96A 34%,
    #D4B04A 50%,
    #B8942F 64%,
    #D4B04A 78%,
    #F2E0A8 92%,
    #E8C96A 100%
  );
  --gold-gradient-subtle: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 176, 74, 0.55) 15%,
    rgba(242, 224, 168, 0.95) 50%,
    rgba(212, 176, 74, 0.55) 85%,
    transparent 100%
  );
  --section-divider: linear-gradient(
    90deg,
    rgba(184, 148, 47, 0.12) 0%,
    rgba(212, 176, 74, 0.72) 18%,
    rgba(242, 224, 168, 1) 50%,
    rgba(212, 176, 74, 0.72) 82%,
    rgba(184, 148, 47, 0.12) 100%
  );
  --cherry-gradient: linear-gradient(
    165deg,
    #e86878 0%,
    #d43a4e 22%,
    var(--color-primary) 48%,
    #8f1c2a 68%,
    #b82d40 88%,
    #d64a5c 100%
  );

  --font-heading: 'Arapey', Georgia, serif;
  --font-body:    'Helvetica Neue', Helvetica, Arial, sans-serif;
  --letter-spacing-body: -0.03em;
  --letter-spacing-heading: -0.085em;
  --letter-spacing-button: 0.1em;
  --letter-spacing-button-hover: 0.12em;
  --weight-button: var(--weight-medium);
  --btn-gradient-angle: 135deg;
  --btn-primary-gradient: linear-gradient(
    var(--btn-gradient-angle),
    #ff6b7d 0%,
    #e83a50 22%,
    var(--color-primary) 55%,
    #6b1520 100%
  );
  --btn-outline-gradient: linear-gradient(
    var(--btn-gradient-angle),
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 244, 239, 0.94) 48%,
    rgba(232, 226, 220, 0.9) 100%
  );
  --btn-outline-light-gradient: linear-gradient(
    var(--btn-gradient-angle),
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.1) 52%,
    rgba(255, 255, 255, 0.04) 100%
  );

  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    1.25rem;
  --text-2xl:   1.5rem;
  --text-3xl:   1.875rem;
  --text-4xl:   2.25rem;
  --text-5xl:   3rem;
  --text-6xl:   3.75rem;
  --text-7xl:   4.5rem;

  --weight-extralight: 200;
  --weight-light:    300;
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-xxl: 5rem;

  --container-max: 1200px;
  --header-height: 112px;
  --header-offset: 112px;
  --header-logo-offset: 0.5rem;
  --section-padding: 3.25rem;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(41, 38, 36, 0.08);
  --shadow-md: 0 8px 24px rgba(41, 38, 36, 0.12);
  --shadow-lg: 0 16px 48px rgba(41, 38, 36, 0.16);

  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 600ms ease;
}

/* --- Reset & base -------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-light);
  letter-spacing: var(--letter-spacing-body);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--space-md);
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  letter-spacing: var(--letter-spacing-heading);
  line-height: 1.2;
}

h1 em,
h2 em,
h3 em {
  font-style: italic;
  color: var(--color-primary);
}

p {
  margin: 0 0 var(--space-md);
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* --- Utilities ----------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: max(var(--space-sm), var(--safe-left)) max(var(--space-sm), var(--safe-right));
}

.text-center {
  text-align: center;
}

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

[hidden] {
  display: none !important;
}

.gold-divider {
  width: min(90%, 520px);
  height: 1px;
  margin-inline: auto;
  border: none;
  background: var(--gold-gradient-subtle);
  opacity: 1;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  );
}

.lead {
  font-size: var(--text-lg);
  font-weight: var(--weight-light);
  letter-spacing: var(--letter-spacing-body);
  line-height: 1.7;
}

.cherry-icon {
  display: inline-block;
  width: auto;
  height: auto;
  margin-left: 0.08em;
  vertical-align: -0.14em;
  flex-shrink: 0;
  font-style: normal;
  line-height: 1;
}

.cherry-icon::before {
  content: '🍒';
  display: inline-block;
  font-size: 0.68em;
  line-height: 1;
}

.section--hero__tagline .cherry-icon,
.cherry-popup__tagline .cherry-icon {
  vertical-align: -0.08em;
}

.section--hero__tagline .cherry-icon::before,
.cherry-popup__tagline .cherry-icon::before {
  font-size: 0.76em;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  z-index: 9999;
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* --- Buttons ------------------------------------------------------------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-button);
  letter-spacing: var(--letter-spacing-button);
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-pill);
  isolation: isolate;
  overflow: hidden;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background-position var(--transition-base);
  white-space: nowrap;
}

@media (max-width: 479px) {
  .btn:not(.btn--full) {
    max-width: 100%;
  }

  .btn--full,
  .section--hero__actions .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--gold-gradient);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.75;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
}

.btn:hover {
  transform: scale(1.03);
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  color: var(--color-white);
  background: var(--btn-primary-gradient);
  background-size: 180% 180%;
  background-position: 12% 12%;
  box-shadow:
    0 4px 20px rgba(173, 34, 52, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 0 0 1px rgba(212, 176, 74, 0.32);
}

.btn--primary::before {
  opacity: 0.88;
}

.btn--primary::after {
  background: linear-gradient(
    var(--btn-gradient-angle),
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0.08) 42%,
    transparent 58%,
    rgba(0, 0, 0, 0.14) 100%
  );
}

.btn--primary:hover {
  background-position: 88% 88%;
  box-shadow:
    0 6px 28px rgba(173, 34, 52, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 0 16px rgba(212, 176, 74, 0.32);
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--outline {
  color: var(--color-dark);
  background: var(--btn-outline-gradient);
  box-shadow:
    0 2px 12px rgba(41, 38, 36, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn--outline::before {
  opacity: 0.9;
}

.btn--outline::after {
  background: linear-gradient(
    var(--btn-gradient-angle),
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.18) 45%,
    transparent 70%
  );
}

.btn--outline:hover {
  background: linear-gradient(
    var(--btn-gradient-angle),
    #ffffff 0%,
    #f8f4ef 48%,
    #ece6df 100%
  );
  box-shadow:
    0 4px 16px rgba(41, 38, 36, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 0 14px rgba(212, 176, 74, 0.28);
}

.btn--outline:hover::before {
  opacity: 1;
}

.btn--outline-light {
  color: var(--color-white);
  background: var(--btn-outline-light-gradient);
  backdrop-filter: blur(8px);
  box-shadow:
    0 2px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--outline-light::before {
  opacity: 0.95;
}

.btn--outline-light::after {
  background: linear-gradient(
    var(--btn-gradient-angle),
    rgba(255, 255, 255, 0.26) 0%,
    rgba(255, 255, 255, 0.08) 42%,
    transparent 68%
  );
}

.btn--outline-light:hover {
  background: linear-gradient(
    var(--btn-gradient-angle),
    rgba(255, 255, 255, 0.36) 0%,
    rgba(255, 255, 255, 0.16) 52%,
    rgba(255, 255, 255, 0.08) 100%
  );
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 0 18px rgba(212, 176, 74, 0.36);
}

.btn--outline-light:hover::before {
  opacity: 1;
}

.btn--full {
  width: 100%;
}

/* --- Header -------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  color: var(--color-white);
  background: transparent;
  border: none;
  box-shadow: none;
  transition:
    background-color var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.site-header.is-scrolled {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}

.site-header__scrim {
  display: none;
}

.site-header.is-scrolled .site-header__scrim {
  display: none;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm) var(--space-md);
  min-height: var(--header-height);
  padding-top: calc(var(--space-sm) + var(--safe-top));
  padding-bottom: var(--space-xs);
  pointer-events: auto;
}

.site-header__toggle {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: #000;
  border: 1px solid rgba(212, 176, 74, 0.45);
  border-radius: var(--radius-pill);
  color: var(--color-white);
  z-index: 2;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.site-header__toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 100%;
}

.site-header__toggle-label {
  display: none;
}

.site-header__logo {
  position: absolute;
  left: 50%;
  top: calc(50% + var(--header-logo-offset));
  transform: translate(-50%, -50%);
  z-index: 1;
  flex-shrink: 0;
  line-height: 0;
  pointer-events: auto;
  transition:
    opacity var(--transition-base),
    transform var(--transition-base),
    visibility var(--transition-base);
}

body:has(.section--hero--light) .site-header__logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 0.45rem);
  height: calc(100% + 0.45rem);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #000;
  box-shadow: 0 4px 18px rgba(41, 38, 36, 0.28), 0 2px 6px rgba(0, 0, 0, 0.18);
  z-index: 0;
  transition: opacity var(--transition-base);
}

body:has(.section--hero--light) .site-header__logo img {
  position: relative;
  z-index: 1;
  filter: none;
}

.site-header.is-scrolled .site-header__logo {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.92);
}

.site-header.is-scrolled .site-header__inner {
  min-height: 4.5rem;
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}

.site-header__logo img,
.site-logo__img--header {
  height: 86px;
  max-width: min(44vw, 10.5rem);
  width: auto;
  display: block;
  transition: height var(--transition-base);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}

.site-logo__img--footer {
  height: 56px;
  filter: none;
}

.site-header__actions {
  position: relative;
  flex-shrink: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: #000;
  border: 1px solid rgba(212, 176, 74, 0.45);
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
}

.site-header.is-scrolled .site-header__actions {
  background: #000;
  border-color: rgba(212, 176, 74, 0.45);
}

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 1001;
  pointer-events: none;
  visibility: hidden;
}

.site-nav.is-open {
  pointer-events: auto;
  visibility: visible;
}

.site-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.site-nav.is-open .site-nav__overlay {
  opacity: 1;
}

.site-nav__panel {
  position: absolute;
  top: calc(var(--header-height) - 0.75rem);
  left: max(var(--space-sm), var(--safe-left));
  display: flex;
  flex-direction: column;
  width: min(20rem, calc(100% - max(var(--space-sm), var(--safe-left)) - max(var(--space-sm), var(--safe-right))));
  max-height: calc(100svh - var(--header-height) - var(--space-sm) - var(--safe-bottom));
  padding: 0.75rem 1rem;
  gap: 0;
  color: var(--color-white);
  background: rgba(41, 38, 36, 0.98);
  border: 1px solid rgba(212, 176, 74, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transform: translateY(-0.75rem) scale(0.97);
  opacity: 0;
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
}

.site-header.is-scrolled .site-nav__panel {
  top: calc(5rem - 0.5rem);
  max-height: calc(100svh - 5rem - var(--space-sm));
}

.site-nav.is-open .site-nav__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.site-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-shrink: 0;
  padding-bottom: 0.5rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid rgba(212, 176, 74, 0.3);
}

.site-nav__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.site-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(212, 176, 74, 0.35);
  border-radius: var(--radius-pill);
  color: var(--color-white);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast);
}

.site-nav__close:hover {
  color: var(--color-gold-light);
  border-color: rgba(212, 176, 74, 0.65);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav__list {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  gap: 0;
  padding-top: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.site-nav__link {
  display: block;
  position: relative;
  font-size: var(--text-xs);
  font-weight: var(--weight-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.38rem 0.25rem;
  border-radius: var(--radius-sm);
  opacity: 0.88;
  transition:
    opacity var(--transition-fast),
    color var(--transition-fast),
    background-color var(--transition-fast),
    padding-left var(--transition-base);
}

.site-nav__link::after {
  content: '';
  position: absolute;
  left: 0.35rem;
  bottom: 0.35rem;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: width var(--transition-base);
}

.site-nav__link:hover {
  opacity: 1;
  color: var(--color-gold-light);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 0.65rem;
}

.site-nav__link:hover::after {
  width: 1.5rem;
}

.site-nav__link.is-active {
  opacity: 1;
  color: var(--color-primary);
}

.site-nav__cta {
  flex-shrink: 0;
  margin-top: 0.5rem;
  padding: 0.7rem 1rem;
  font-size: 0.75rem;
  text-align: center;
}

.site-nav.is-open .site-nav__list li {
  animation: nav-link-in 360ms ease backwards;
}

.site-nav.is-open .site-nav__list li:nth-child(1) { animation-delay: 40ms; }
.site-nav.is-open .site-nav__list li:nth-child(2) { animation-delay: 70ms; }
.site-nav.is-open .site-nav__list li:nth-child(3) { animation-delay: 100ms; }
.site-nav.is-open .site-nav__list li:nth-child(4) { animation-delay: 130ms; }
.site-nav.is-open .site-nav__list li:nth-child(5) { animation-delay: 160ms; }
.site-nav.is-open .site-nav__list li:nth-child(6) { animation-delay: 190ms; }
.site-nav.is-open .site-nav__list li:nth-child(7) { animation-delay: 220ms; }
.site-nav.is-open .site-nav__list li:nth-child(8) { animation-delay: 250ms; }

@keyframes nav-link-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header__shop {
  display: none;
  padding: 0.65rem 1.15rem;
  font-size: var(--text-xs);
  font-weight: var(--weight-button);
  letter-spacing: var(--letter-spacing-button);
}

.site-header__logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  letter-spacing: var(--letter-spacing-heading);
  color: var(--color-white);
  text-transform: uppercase;
}

.site-header__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Cart toggle --------------------------------------------------------- */

.cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  height: 38px;
  padding: 0 0.85rem 0 0.7rem;
  background: transparent;
  border: none;
  border-radius: var(--radius-pill);
  color: var(--color-white);
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-button);
  letter-spacing: var(--letter-spacing-button);
  text-transform: uppercase;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.cart-toggle:hover {
  color: var(--color-gold-light);
  background: rgba(255, 255, 255, 0.1);
}

.cart-toggle__label {
  display: none;
}

.cart-toggle__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: transform var(--transition-fast);
}

.cart-toggle__count {
  position: static;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.65rem;
  font-weight: var(--weight-medium);
  line-height: 18px;
  text-align: center;
  color: var(--color-dark);
  background: var(--color-gold-light);
  border-radius: var(--radius-pill);
}

/* --- Cart drawer --------------------------------------------------------- */

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  visibility: hidden;
}

.cart-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(41, 38, 36, 0.55);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.cart-drawer.is-open .cart-drawer__overlay {
  opacity: 1;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(100%, 420px);
  height: 100%;
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  outline: none;
}

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

body.cart-open,
body.nav-open {
  overflow: hidden;
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-md) var(--space-sm);
  border-bottom: 1px solid rgba(212, 176, 74, 0.35);
}

.cart-drawer__heading {
  margin: 0;
  font-size: var(--text-2xl);
}

.cart-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: var(--text-2xl);
  line-height: 1;
  background: none;
  border: none;
  color: var(--color-text);
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.cart-drawer__close:hover {
  opacity: 1;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md);
}

.cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  min-height: 200px;
  text-align: center;
}

.cart-drawer__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cart-drawer__footer {
  padding: var(--space-md);
  padding-bottom: calc(var(--space-md) + var(--safe-bottom));
  border-top: 1px solid rgba(212, 176, 74, 0.35);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0;
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
}

.cart-drawer__note {
  margin: 0;
  font-size: var(--text-sm);
  opacity: 0.75;
}

.cart-drawer__view-cart {
  margin-top: var(--space-xs);
}

/* --- Cart line items ----------------------------------------------------- */

.cart-line {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-sm);
  align-items: start;
}

.cart-line--page {
  grid-template-columns: 120px 1fr auto;
  gap: var(--space-md);
  padding-block: var(--space-md);
  border-bottom: 1px solid rgba(212, 176, 74, 0.25);
}

.cart-line__media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(41, 38, 36, 0.06);
}

.cart-line__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.cart-line__title {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  letter-spacing: var(--letter-spacing-heading);
  margin-bottom: var(--space-xs);
}

.cart-line__variant {
  margin: 0 0 var(--space-xs);
  font-size: var(--text-sm);
  opacity: 0.75;
}

.cart-line__price {
  margin: 0 0 var(--space-sm);
  font-weight: var(--weight-medium);
}

.cart-line__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
}

.cart-line__remove {
  padding: 0;
  font-size: var(--text-sm);
  background: none;
  border: none;
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

/* --- Quantity input ------------------------------------------------------ */

.quantity-input {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(212, 176, 74, 0.45);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--color-white);
}

.quantity-input--compact {
  font-size: var(--text-sm);
}

.quantity-input__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: var(--text-lg);
  line-height: 1;
}

.quantity-input__btn:hover {
  background: rgba(212, 176, 74, 0.15);
}

.quantity-input__field {
  width: 2.5rem;
  padding: 0.35rem 0;
  font-family: inherit;
  font-size: inherit;
  text-align: center;
  border: none;
  background: transparent;
  -moz-appearance: textfield;
}

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

/* --- Shop section -------------------------------------------------------- */

.section--shop {
  padding-block: var(--space-xl);
}

.section--shop .section__heading {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-sm);
}

.section--shop__eyebrow {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.section--shop__subheading {
  max-width: 48ch;
  margin-inline: auto;
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
}

.section--shop__divider {
  margin-bottom: var(--space-lg);
}

.section--shop__inner:has(.shop-grid--single) {
  max-width: 52rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.shop-grid--single {
  max-width: 100%;
  margin-inline: auto;
}

.shop-grid--single .product-card--featured {
  box-shadow: var(--shadow-md);
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 176, 74, 0.3);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.product-card__media {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
}

.product-card__media > img,
.product-card__media .product-card__image {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--transition-slow), filter var(--transition-base);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-sm);
  padding: var(--space-md);
}

.product-card__title {
  margin: 0;
  font-size: var(--text-2xl);
}

.product-card__title a {
  background-image: linear-gradient(var(--color-primary), var(--color-primary));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition:
    color var(--transition-fast),
    background-size var(--transition-base);
}

.product-card__price {
  margin: 0;
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  color: var(--color-primary);
}

.product-card__description {
  margin: 0;
  font-size: var(--text-sm);
  opacity: 0.85;
}

.product-card__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: auto;
  padding-top: var(--space-sm);
}

.product-card__variant-select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: var(--text-sm);
  border: 1px solid rgba(212, 176, 74, 0.45);
  border-radius: var(--radius-pill);
  background: var(--color-white);
}

.product-card__quantity {
  display: flex;
  justify-content: center;
}

.product-card--placeholder .product-card__description {
  font-style: italic;
}

.product-card--featured {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 100%;
}

.product-card--featured .product-card__media {
  display: grid;
  grid-template: 1fr / 1fr;
  overflow: hidden;
  aspect-ratio: 699 / 928;
  width: 100%;
  min-height: 0;
  max-height: min(52vh, 26rem);
  background: #f3f0ec;
  align-self: stretch;
}

.product-card--featured .product-card__media > img,
.product-card--featured .product-card__media .product-card__image {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  object-fit: cover;
  object-position: center center;
}

.product-card--featured .product-card__body {
  padding: var(--space-md);
  text-align: center;
  align-items: center;
  gap: var(--space-sm);
}

.product-card--featured .product-card__title {
  font-size: var(--text-2xl);
  margin-bottom: 0;
}

.product-card--featured .product-card__price {
  font-size: var(--text-lg);
  margin: 0;
}

.product-card--featured .product-card__description {
  font-size: var(--text-sm);
  max-width: 42ch;
  margin: 0;
  line-height: 1.55;
}

.product-card--featured .product-card__form {
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
}

/* --- Instagram section --------------------------------------------------- */

.section--instagram {
  color: var(--color-white);
}

.section--instagram .section__heading {
  color: var(--color-white);
}

.section--instagram .section__heading em {
  color: var(--color-gold-light);
}

.section--instagram__eyebrow {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-sm);
}

.section--instagram__subheading {
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-sm);
  color: rgba(255, 255, 255, 0.88);
}

.section--instagram__handle {
  margin: 0 0 var(--space-lg);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  letter-spacing: var(--letter-spacing-heading);
}

.section--instagram__handle a {
  color: var(--color-gold-light);
  transition: color var(--transition-fast);
}

.section--instagram__handle a:hover {
  color: var(--color-white);
}

.section--instagram__divider {
  margin-bottom: var(--space-xl);
}

.instagram-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  max-width: 900px;
  margin-inline: auto;
}

.instagram-grid__item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
}

.instagram-grid__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.instagram-grid__link::after {
  content: 'View';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  background: linear-gradient(
    165deg,
    rgba(173, 34, 52, 0.15) 0%,
    rgba(41, 38, 36, 0.55) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
}

.instagram-grid__link:focus-visible::after {
  opacity: 1;
}

.instagram-grid__link:focus-visible .instagram-grid__image {
  transform: scale(1.08);
  opacity: 0.88;
}

.instagram-grid__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow), opacity var(--transition-base);
}

.instagram-grid__placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: inherit;
}

.section--instagram__actions {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

/* --- Cart page ----------------------------------------------------------- */

.section--cart__inner {
  max-width: 800px;
}

.cart-empty {
  text-align: center;
  padding-block: var(--space-xl);
}

.cart-empty__text {
  margin-bottom: var(--space-lg);
}

.cart-form__footer {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(212, 176, 74, 0.35);
}

.cart-form__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 0 var(--space-sm);
  font-size: var(--text-xl);
  font-weight: var(--weight-medium);
}

.cart-form__note {
  margin: 0 0 var(--space-lg);
  font-size: var(--text-sm);
  opacity: 0.75;
}

.cart-form__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* --- Sections (shared) --------------------------------------------------- */

.section {
  padding-block: var(--section-padding);
  position: relative;
}

main .section + .section::after,
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: var(--section-divider);
  z-index: 5;
  pointer-events: none;
}

.section--cherry-whip {
  padding-top: 0;
}

.section__heading {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

.section__heading::after {
  content: '';
  display: block;
  width: 64px;
  height: 2px;
  margin-top: var(--space-md);
  background: var(--gold-gradient);
  opacity: 0.9;
}

.text-center.section__heading::after,
.section__heading.text-center::after {
  margin-inline: auto;
}

.section--product-details .section__heading::after,
.section--stockists .section__heading::after,
.cherry-whip__details-inner .section__heading::after {
  margin-inline: auto;
}

.cherry-whip__heading::after {
  content: '';
  display: block;
  width: 64px;
  height: 2px;
  margin: var(--space-md) auto 0;
  background: var(--gold-gradient);
  opacity: 0.9;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Textures ------------------------------------------------------------ */

.texture-marble {
  background-color: #f5f2ee;
  background-image:
    radial-gradient(ellipse 80% 50% at 15% 20%, rgba(255, 255, 255, 0.9) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 75%, rgba(180, 165, 150, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 50%, rgba(200, 190, 180, 0.08) 0%, transparent 45%);
}

.texture-satin {
  position: relative;
  background-color: var(--color-primary);
  background-image: linear-gradient(
    160deg,
    #6b1520 0%,
    var(--color-secondary) 32%,
    var(--color-primary) 55%,
    #8f1c2a 78%,
    var(--color-secondary) 100%
  );
}

.texture-satin > * {
  position: relative;
  z-index: 1;
}

.texture-dark {
  background-color: var(--color-dark);
}

/* --- Image placeholders -------------------------------------------------- */

.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  background: rgba(255, 255, 255, 0.06);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: var(--space-xl);
}

.section--benefits .image-placeholder,
.section--brand-story .image-placeholder,
.section--contact .image-placeholder {
  background: rgba(41, 38, 36, 0.04);
  border-color: rgba(41, 38, 36, 0.15);
  color: rgba(41, 38, 36, 0.45);
}

.image-placeholder--portrait {
  aspect-ratio: 4 / 5;
  min-height: 320px;
}

.image-placeholder--landscape {
  aspect-ratio: 16 / 10;
  min-height: 240px;
}

.image-placeholder--cinema {
  aspect-ratio: 16 / 9;
  min-height: 50vh;
  width: 100%;
  border-radius: 0;
  border: none;
}

.image-placeholder--square {
  aspect-ratio: 1 / 1;
  min-height: 280px;
  width: 100%;
}

.image-placeholder--on-dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.45);
}

.section--cherry-whip .image-placeholder,
.cherry-whip__gallery .image-placeholder {
  background: rgba(41, 38, 36, 0.04);
  border-color: rgba(41, 38, 36, 0.12);
  color: rgba(41, 38, 36, 0.4);
  border-radius: 0;
}

.image-placeholder__label {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  letter-spacing: var(--letter-spacing-heading);
}

.image-placeholder__dims {
  font-size: var(--text-xs);
  opacity: 0.75;
}

.image-placeholder--client {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
}

.image-placeholder--client .image-placeholder__label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-style: italic;
  font-weight: var(--weight-regular);
  line-height: 1.5;
  letter-spacing: normal;
  max-width: 14rem;
  margin: 0;
  text-wrap: balance;
}

.image-placeholder--portrait-34 {
  aspect-ratio: 3 / 4;
  width: 100%;
  min-height: 0;
}

.image-placeholder--square {
  aspect-ratio: 1 / 1;
  width: 100%;
  min-height: 0;
}

.cherry-whip__image-frame .image-placeholder--client {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0;
  background: rgba(41, 38, 36, 0.05);
  color: rgba(41, 38, 36, 0.5);
  text-align: center;
}

.product-card__media .image-placeholder--client {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  border: none;
  border-radius: 0;
  background: rgba(41, 38, 36, 0.04);
  color: rgba(41, 38, 36, 0.5);
  text-align: center;
}

.section--brand-story__media .image-placeholder--client {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  border-radius: var(--radius-lg);
  background: rgba(41, 38, 36, 0.04);
  border-color: rgba(41, 38, 36, 0.12);
  color: rgba(41, 38, 36, 0.5);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.section--hero__media--immersive .image-placeholder__label,
.section--hero__media--immersive .image-placeholder__dims {
  opacity: 0;
  visibility: hidden;
}

/* --- Hero ---------------------------------------------------------------- */

.section--hero {
  position: relative;
  color: var(--color-white);
  overflow: hidden;
}

.section--hero--immersive {
  padding: 0;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  --hero-text-shadow: 0 2px 14px rgba(0, 0, 0, 0.62), 0 1px 4px rgba(0, 0, 0, 0.48);
  --hero-parallax: 0;
}

.section--hero--light {
  color: var(--color-dark);
  --hero-text-shadow: none;
}

.section--hero--light .section--hero__tagline {
  color: var(--color-dark);
  text-shadow: none;
}

.section--hero--light .section--hero__eyebrow {
  color: rgba(41, 38, 36, 0.9);
  font-weight: var(--weight-medium);
  opacity: 1;
  text-shadow: none;
}

.section--hero--light .section--hero__subheading {
  color: var(--color-dark);
  font-weight: var(--weight-regular);
  text-shadow: none;
}

.section--hero--light .section--hero__product-name {
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.85))
    drop-shadow(0 3px 14px rgba(173, 34, 52, 0.22));
}

.section--hero--light .section--hero__divider {
  height: 2px;
  border: none;
  background: linear-gradient(
    90deg,
    #c9a227 0%,
    #e8c96a 25%,
    #f2e0a8 50%,
    #e8c96a 75%,
    #c9a227 100%
  );
  background-size: 220% 100%;
  animation: hero-divider-shimmer 3.6s ease-in-out infinite;
  opacity: 1;
  filter: none;
  border-radius: 0;
  box-shadow: none;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 5%,
    #000 14%,
    #000 86%,
    rgba(0, 0, 0, 0.35) 95%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 5%,
    #000 14%,
    #000 86%,
    rgba(0, 0, 0, 0.35) 95%,
    transparent 100%
  );
}

@keyframes hero-divider-shimmer {
  0%,
  100% {
    background-position: 100% 0;
  }

  50% {
    background-position: 0% 0;
  }
}

.section--hero--light .section--hero__actions {
  filter: none;
}

.section--hero--light .section--hero__actions .btn--primary {
  box-shadow:
    0 6px 24px rgba(173, 34, 52, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 0 0 1px rgba(114, 25, 37, 0.35);
}

.section--hero--light .section--hero__actions .btn--outline {
  color: var(--color-dark);
  background: #fff;
  box-shadow:
    0 4px 18px rgba(41, 38, 36, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 0 0 1px rgba(41, 38, 36, 0.22);
}

.section--hero--light .section--hero__actions .btn--outline::before {
  opacity: 1;
}

.section--hero--light .section--hero__actions .btn--outline:hover {
  background: linear-gradient(
    var(--btn-gradient-angle),
    #ffffff 0%,
    #f3eeea 52%,
    #e8e0d8 100%
  );
  box-shadow:
    0 6px 22px rgba(41, 38, 36, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 0 0 1px rgba(41, 38, 36, 0.28),
    0 0 14px rgba(212, 176, 74, 0.24);
}

.section--hero__media--desktop {
  display: none;
}

.section--hero__media--desktop .section--hero__scrim--desktop {
  display: none;
}

.section--hero__media--mobile {
  display: none;
}

.section--hero__media--mobile .section--hero__scrim--mobile {
  display: none;
}

.section--hero__media--immersive {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
}

.section--hero__media--immersive > .section--hero__image--immersive,
.section--hero__media--immersive > picture {
  position: absolute;
  left: 0;
  width: 100%;
  height: 135%;
  top: -17.5%;
  right: auto;
  bottom: auto;
  object-fit: cover;
  object-position: center center;
  max-width: none;
  max-height: none;
  border-radius: 0;
  box-shadow: none;
  display: block;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  transform: translate3d(0, calc(var(--hero-parallax, 0) * 1px), 0);
}

.section--hero__media--immersive > picture {
  display: block;
}

.section--hero__media--immersive > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 0;
  box-shadow: none;
  max-width: none;
  max-height: none;
}

.section--hero__image--faded {
  filter: brightness(1.08) saturate(1.28) contrast(1.05);
}

.section--hero--immersive .section--hero__scrim {
  display: block;
}

.section--hero__scrim--soft {
  background:
    radial-gradient(ellipse 100% 90% at 50% 42%, transparent 55%, rgba(41, 38, 36, 0.16) 100%);
}

.section--hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 70% at 50% 45%, rgba(41, 38, 36, 0.55) 0%, rgba(41, 38, 36, 0.82) 70%),
    linear-gradient(to bottom, rgba(41, 38, 36, 0.4) 0%, rgba(41, 38, 36, 0.75) 100%);
  pointer-events: none;
}

.section--hero--immersive.texture-dark {
  background-color: var(--color-dark);
}

.section--hero__content--overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: calc(var(--header-offset) + var(--space-lg)) var(--section-padding);
  padding-inline: max(var(--space-xs), var(--safe-left)) max(var(--space-xs), var(--safe-right));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body:not(.template-index) #main-content {
  padding-top: var(--header-offset);
}

.section--hero__bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.section--hero__inner {
  position: relative;
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.section--hero__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: var(--space-xs);
  max-width: 680px;
  margin-inline: auto;
  overflow: visible;
}

.section--hero__product-name {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(3.15rem, 15vw, 4rem);
  font-weight: var(--weight-regular);
  letter-spacing: var(--letter-spacing-heading);
  line-height: 1.1;
  padding: 0 0.14em 0;
  white-space: normal;
  text-wrap: balance;
  overflow-wrap: anywhere;
  overflow: visible;
  background: var(--cherry-gradient);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  filter:
    drop-shadow(0 2px 14px rgba(0, 0, 0, 0.62))
    drop-shadow(0 1px 4px rgba(0, 0, 0, 0.48));
}

.section--hero__tagline {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 9vw, 2.65rem);
  font-weight: var(--weight-regular);
  letter-spacing: -0.04em;
  line-height: 1.25;
  color: var(--color-white);
  overflow: visible;
  margin-top: -0.05em;
  text-shadow: var(--hero-text-shadow);
  text-wrap: balance;
}

.section--hero__tagline em {
  font-style: italic;
  display: inline-block;
  padding-inline: 0.08em;
  margin: 0;
  vertical-align: baseline;
  background: var(--gold-gradient-logo-text);
  background-size: 150% 100%;
  background-position: 38% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--color-gold);
  -webkit-text-fill-color: transparent;
  filter: none;
  text-shadow: none;
}

.section--hero__eyebrow {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.75;
  margin: 0 0 var(--space-sm);
  text-shadow: var(--hero-text-shadow);
}

.section--hero__divider {
  margin-top: var(--space-xs);
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}

.section--hero__subheading {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0;
  margin-bottom: var(--space-xl);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.65;
  text-shadow: var(--hero-text-shadow);
}

.section--hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.48)) drop-shadow(0 3px 10px rgba(0, 0, 0, 0.36));
}

.section--hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

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

.section--hero__image {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-height: 560px;
  object-fit: cover;
  width: 100%;
  max-width: 480px;
}

.section--hero--immersive .section--hero__media:not(.section--hero__media--desktop):not(.section--hero__media--mobile) {
  display: block;
}

.section--hero--immersive .section--hero__image {
  max-width: none;
  max-height: none;
  border-radius: 0;
  box-shadow: none;
}

/* --- Cherry Whip --------------------------------------------------------- */

.section--cherry-whip {
  padding: 0;
}

.cherry-whip__hero-media {
  position: relative;
  width: 100%;
}

.cherry-whip__hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  min-height: 50vh;
}

.cherry-whip__hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(245, 242, 238, 0.4) 100%);
  pointer-events: none;
}

.cherry-whip__intro {
  position: relative;
  padding-block: var(--space-xxl);
}

.cherry-whip__intro::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(88%, 560px);
  height: 1px;
  background: var(--gold-gradient-subtle);
  opacity: 0.9;
  pointer-events: none;
}

.cherry-whip__intro-inner {
  text-align: center;
  max-width: 680px;
}

.cherry-whip__eyebrow {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
  margin-bottom: var(--space-sm);
}

.cherry-whip__product-name {
  display: inline-block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(2.25rem, 11vw, var(--text-6xl));
  letter-spacing: var(--letter-spacing-heading);
  line-height: 1.1;
  padding-bottom: 0.14em;
  margin: 0 0 var(--space-md);
  text-wrap: balance;
  overflow-wrap: anywhere;
  background: var(--cherry-gradient);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  filter: drop-shadow(0 2px 12px rgba(173, 34, 52, 0.35));
}

.cherry-whip__heading {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-regular);
  letter-spacing: var(--letter-spacing-heading);
  margin-bottom: var(--space-md);
}

.cherry-whip__subheading {
  margin: 0 auto;
  max-width: 540px;
}

.cherry-whip__gallery {
  padding-inline: 0;
}

.cherry-whip__gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.cherry-whip__gallery-item {
  overflow: hidden;
  min-height: 280px;
}

.cherry-whip__gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow), filter var(--transition-base);
}

.cherry-whip__gallery-item--large {
  min-height: 420px;
}

.cherry-whip__gallery-grid--single {
  max-width: 42rem;
  margin-inline: auto;
}

.cherry-whip__gallery-grid--single .cherry-whip__gallery-item--large {
  min-height: auto;
  aspect-ratio: 3 / 4;
  background: #fff;
}

.cherry-whip__gallery-image--product {
  object-fit: cover;
  background: #fff;
}

.product-card__media .product-card__image--product {
  object-position: center center;
}

.cherry-whip__details {
  padding-block: var(--section-padding);
  color: var(--color-white);
  text-align: left;
}

.cherry-whip__details-inner {
  max-width: 56rem;
}

.cherry-whip__showcase {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.cherry-whip__visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: var(--space-sm);
}

.cherry-whip__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(88%, 18rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(242, 224, 168, 0.22) 0%,
    rgba(173, 34, 52, 0.12) 45%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}

.cherry-whip__image-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 17.5rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(212, 176, 74, 0.45);
  transform: rotate(-2deg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.cherry-whip__visual-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center center;
}

.cherry-whip__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  gap: 0;
}

.cherry-whip__details .cherry-whip__eyebrow {
  color: var(--color-gold-light);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.14em;
  opacity: 0.95;
}

.cherry-whip__details .cherry-whip__product-name {
  display: block;
  width: 100%;
  margin-bottom: var(--space-md);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white);
  filter: none;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  font-size: clamp(2rem, 5vw, var(--text-5xl));
}

.cherry-whip__body {
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.96);
  max-width: 42ch;
  width: 100%;
  line-height: 1.65;
}

.cherry-whip__details .ingredients-list {
  display: block;
  justify-content: flex-start;
  align-items: baseline;
  width: 100%;
  margin-bottom: var(--space-lg);
  padding-inline: 0;
  text-align: left;
  font-size: var(--text-base);
  line-height: 1.65;
}

.cherry-whip__details .ingredients-list__item,
.cherry-whip__details .ingredients-list__sep {
  display: inline;
}

.cherry-whip__details .ingredients-list__item {
  white-space: nowrap;
}

.cherry-whip__details .ingredients-list__sep {
  margin-inline: 0.35rem;
}

.cherry-whip__details .spf-disclaimer {
  color: rgba(255, 255, 255, 0.8);
  margin-inline: 0;
  max-width: 42ch;
  text-align: left;
  opacity: 1;
}

.cherry-whip__actions {
  margin-bottom: var(--space-md);
  width: 100%;
}

/* --- Benefits ------------------------------------------------------------ */

.section--benefits {
  color: var(--color-text);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.benefit-card {
  flex: 1 1 100%;
  max-width: 100%;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(41, 38, 36, 0.06);
  border-top: 1px solid rgba(212, 176, 74, 0.45);
  backdrop-filter: blur(4px);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  transition: transform var(--transition-base), color var(--transition-base), filter var(--transition-base);
}

.benefit-card__icon svg {
  width: 100%;
  height: 100%;
}

.benefit-card__heading {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
}

.benefit-card__description {
  font-size: var(--text-base);
  color: rgba(41, 38, 36, 0.8);
  margin: 0;
}


/* --- Product details ----------------------------------------------------- */

.section--product-details {
  color: var(--color-white);
  text-align: center;
}

.section--product-details__inner {
  max-width: var(--container-max);
}

.section--product-details .section__heading {
  color: var(--color-white);
  margin-inline: auto;
}

.section--product-details__body,
.section--product-details .spf-disclaimer {
  max-width: 720px;
  margin-inline: auto;
}

.section--product-details .section__heading em,
.texture-satin h1 em,
.texture-satin h2 em,
.texture-satin h3 em {
  color: var(--color-gold-light);
}

.section--product-details__body {
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.9);
}

.ingredients-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-xs) var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  letter-spacing: var(--letter-spacing-heading);
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  border-top: 1px solid rgba(212, 176, 74, 0.55);
  border-bottom: 1px solid rgba(212, 176, 74, 0.55);
}

.ingredients-list__sep {
  color: rgba(242, 224, 168, 0.95);
  opacity: 1;
}

.section--product-details .spf-disclaimer {
  color: rgba(255, 255, 255, 0.75);
}

/* --- Brand story --------------------------------------------------------- */

.section--brand-story {
  color: var(--color-text);
}

.section--brand-story .section__heading {
  text-wrap: initial;
}

@media (min-width: 768px) {
  .section--brand-story .section__heading {
    white-space: nowrap;
    font-size: clamp(1.25rem, 1rem + 1.1vw, 2.25rem);
  }
}

@media (min-width: 1024px) {
  .section--brand-story .section__heading {
    font-size: var(--text-4xl);
  }
}

.section--brand-story__media {
  aspect-ratio: 4 / 5;
  max-height: min(78vh, 38rem);
  width: 100%;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.section--brand-story__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.section--brand-story__image--default {
  object-position: center 38%;
}

.section--brand-story__inner {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

.section--brand-story__pull-quote {
  margin: 0 0 var(--space-lg);
  padding: 0;
  border: none;
}

.section--brand-story__pull-quote p {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-style: italic;
  letter-spacing: var(--letter-spacing-heading);
  color: var(--color-primary);
  margin: 0;
}

.section--brand-story__body {
  color: rgba(41, 38, 36, 0.85);
}

/* --- Stockists ----------------------------------------------------------- */

.section--stockists {
  background-color: var(--color-dark);
  color: var(--color-white);
  text-align: center;
}

.section--stockists__subheading {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.85);
}

.section--stockists__actions {
  margin-bottom: var(--space-md);
}

.section--stockists__secondary {
  font-size: var(--text-sm);
  opacity: 0.7;
  margin-bottom: var(--space-xl);
}

.stockist-locator {
  max-width: 56rem;
  margin-inline: auto;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  color: var(--color-text);
  text-align: left;
  box-shadow:
    var(--shadow-md),
    0 0 0 1px rgba(212, 176, 74, 0.2);
}

.stockist-locator__search {
  display: grid;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.stockist-locator__search-field {
  min-width: 0;
}

.stockist-locator__input,
.stockist-locator__select {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid rgba(41, 38, 36, 0.18);
  border-radius: var(--radius-pill);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.stockist-locator__input:focus,
.stockist-locator__select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(173, 34, 52, 0.12);
}

.stockist-locator__submit {
  width: 100%;
  white-space: nowrap;
}

.stockist-locator__status {
  margin: 0 0 var(--space-md);
  font-size: var(--text-sm);
  color: rgba(41, 38, 36, 0.7);
}

.stockist-locator__layout {
  display: grid;
  gap: var(--space-md);
}

.stockist-locator__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-height: 22rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 0.15rem;
}

.stockist-locator__item {
  border: 1px solid rgba(41, 38, 36, 0.12);
  border-radius: var(--radius-md);
  background: #faf9f7;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast);
}

.stockist-locator__item.is-active {
  border-color: rgba(173, 34, 52, 0.45);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(173, 34, 52, 0.12);
}

.stockist-locator__item.is-hidden {
  display: none;
}

.stockist-locator__item-btn {
  display: block;
  width: 100%;
  padding: var(--space-md);
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.stockist-locator__item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: 0.35rem;
}

.stockist-locator__name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  letter-spacing: var(--letter-spacing-heading);
  line-height: 1.2;
}

.stockist-locator__distance {
  flex-shrink: 0;
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.stockist-locator__address {
  display: block;
  font-size: var(--text-sm);
  line-height: 1.5;
  color: rgba(41, 38, 36, 0.78);
}

.stockist-locator__badge {
  display: inline-block;
  margin-top: var(--space-sm);
  padding: 0.2rem 0.65rem;
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-secondary);
  background: rgba(173, 34, 52, 0.08);
  border: 1px solid rgba(173, 34, 52, 0.18);
  border-radius: var(--radius-pill);
}

.stockist-locator__item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  padding: 0 var(--space-md) var(--space-md);
}

.stockist-locator__link {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.stockist-locator__link--directions {
  color: var(--color-text);
}

.stockist-locator__empty {
  margin: 0;
  padding: var(--space-lg);
  text-align: center;
  font-size: var(--text-sm);
  color: rgba(41, 38, 36, 0.7);
  border: 1px dashed rgba(41, 38, 36, 0.2);
  border-radius: var(--radius-md);
}

.stockist-locator__empty a {
  color: var(--color-primary);
  text-decoration: underline;
}

.stockist-locator__map-panel {
  display: none !important; /* temporarily hidden */
  min-height: 16rem;
}

.stockist-locator__layout {
  grid-template-columns: 1fr;
}

.stockist-locator__map {
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(41, 38, 36, 0.12);
}

.stockist-locator__map-canvas {
  position: relative;
  aspect-ratio: 400 / 520;
  min-height: 16rem;
  background: #292624;
}

.stockist-locator__map-svg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stockist-locator__pins {
  position: absolute;
  inset: 0;
}

.stockist-locator__pin {
  position: absolute;
  left: var(--pin-x);
  top: var(--pin-y);
  transform: translate(-50%, -100%);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 1;
}

.stockist-locator__pin-dot {
  display: block;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.stockist-locator__pin::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 0.45rem;
  margin-left: -1px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 1px;
}

.stockist-locator__pin.is-active .stockist-locator__pin-dot {
  transform: scale(1.25);
  background: var(--color-gold);
}

.stockist-locator__pin.is-hidden {
  display: none;
}

.stockist-locator__map-user {
  position: absolute;
  left: var(--user-x, 50%);
  top: var(--user-y, 50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.stockist-locator__user-dot {
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid #4a90d9;
  box-shadow: 0 0 0 4px rgba(74, 144, 217, 0.25);
}

.stockist-locator__map-caption {
  margin: 0;
  padding: 0.55rem 0.75rem;
  font-size: var(--text-xs);
  text-align: center;
  color: rgba(41, 38, 36, 0.55);
  background: #f5f3f0;
  border-top: 1px solid rgba(41, 38, 36, 0.08);
}

/* --- Contact form -------------------------------------------------------- */

.section--contact {
  color: var(--color-text);
}

.section--contact__header {
  max-width: 40rem;
  margin-inline: auto;
}

.section--contact .section__heading em {
  font-style: italic;
  color: var(--color-primary);
}

.section--contact__subheading {
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 0;
  color: rgba(41, 38, 36, 0.82);
}

.section--contact__divider {
  margin-block: var(--space-lg) var(--space-xl);
}

.section--contact__grid {
  display: grid;
  gap: var(--space-lg);
  align-items: stretch;
}

.contact-form-card,
.contact-details-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow:
    var(--shadow-md),
    0 0 0 1px rgba(212, 176, 74, 0.18);
}

.contact-form-card {
  background: var(--color-white);
}

.contact-form-card__intro {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(41, 38, 36, 0.08);
}

.contact-form-card__title {
  margin: 0 0 var(--space-xs);
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  letter-spacing: var(--letter-spacing-heading);
}

.contact-form-card__text {
  margin: 0;
  font-size: var(--text-sm);
  color: rgba(41, 38, 36, 0.7);
  line-height: 1.55;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-form__grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.form-field--full {
  grid-column: 1 / -1;
}

.section--contact .form-field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: rgba(41, 38, 36, 0.72);
}

.section--contact .form-field input,
.section--contact .form-field select,
.section--contact .form-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(41, 38, 36, 0.16);
  border-radius: var(--radius-pill);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.section--contact .form-field textarea {
  border-radius: var(--radius-md);
  resize: vertical;
  min-height: 8.5rem;
  line-height: 1.55;
}

.section--contact .form-field select {
  appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23292624' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
}

.section--contact .form-field input:focus,
.section--contact .form-field select:focus,
.section--contact .form-field textarea:focus {
  outline: none;
  border-color: rgba(212, 176, 74, 0.75);
  box-shadow: 0 0 0 3px rgba(212, 176, 74, 0.18);
}

.contact-form__submit {
  width: 100%;
  align-self: flex-start;
}

.contact-details-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background: var(--color-dark);
  color: var(--color-white);
  border: 1px solid rgba(212, 176, 74, 0.28);
}

.contact-details__heading {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  letter-spacing: var(--letter-spacing-heading);
}

.contact-details__lead {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.contact-details__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-details__label {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.35rem;
}

.contact-details__list a {
  font-size: var(--text-lg);
  color: var(--color-gold-light);
  transition: color var(--transition-fast);
}

.contact-details__list a:hover {
  color: var(--color-white);
}

.contact-details__social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-details__social .social-icons {
  justify-content: flex-start;
}

.contact-details__social .social-icons__link {
  color: var(--color-gold-light);
  background: rgba(212, 176, 74, 0.08);
  border-color: rgba(212, 176, 74, 0.35);
}

.contact-details__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-details__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 176, 74, 0.35);
  border-radius: var(--radius-pill);
}

.form-message {
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
}

.form-message--success {
  background: rgba(173, 34, 52, 0.08);
  border: 1px solid rgba(173, 34, 52, 0.2);
  color: var(--color-secondary);
}

.form-message--error {
  background: rgba(173, 34, 52, 0.08);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.form-message ul {
  list-style: disc;
  padding-left: var(--space-md);
  margin-top: var(--space-xs);
}

/* --- SPF disclaimer ------------------------------------------------------ */

.spf-disclaimer {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  opacity: 0.75;
  margin: 0;
  max-width: 48ch;
  margin-inline: auto;
  text-align: center;
  line-height: 1.5;
}

/* --- Footer -------------------------------------------------------------- */

.site-footer {
  position: relative;
  background-color: var(--color-dark);
  color: var(--color-white);
  padding-block: var(--space-xl) var(--space-md);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.site-footer__logo img,
.site-footer__logo .site-logo__img {
  height: 56px;
  width: auto;
  margin-inline: auto;
}

.site-footer__logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  letter-spacing: var(--letter-spacing-heading);
}

.site-footer__tagline {
  font-size: var(--text-sm);
  opacity: 0.75;
  margin: 0;
  max-width: 32ch;
}

.site-footer__social {
  margin-top: 0.15rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-icons__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.social-icons__icon {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
}

.social-icons__link:hover,
.social-icons__link:focus-visible {
  color: var(--color-gold-light);
  background: rgba(212, 176, 74, 0.12);
  border-color: rgba(212, 176, 74, 0.35);
}

.social-icons__link:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 2px;
}

.site-footer__nav {
  width: 100%;
}

.site-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2rem var(--space-sm);
  max-width: 36rem;
  margin-inline: auto;
}

.site-footer__nav-list a {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  padding: 0.2rem 0.35rem;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.site-footer__nav-list a:hover {
  opacity: 1;
  color: var(--color-gold-light);
}

.site-footer__payments {
  width: 100%;
  max-width: none;
}

.site-footer__payments .payment-icons__list {
  flex-wrap: wrap;
  gap: 0.3rem;
}

.site-footer__payments .payment-icons__item {
  width: 2.45rem;
}

.payment-icons__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.payment-icons__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  flex: 0 0 auto;
  border-radius: 0.3rem;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.payment-icons__icon {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 38 / 24;
  object-fit: contain;
}

.payment-icons__icon svg {
  display: block;
  width: 100%;
  height: auto;
}

.payment-icons__fallback {
  font-size: 0.45rem;
  font-weight: var(--weight-medium);
  letter-spacing: 0.04em;
  color: var(--color-dark);
  padding-inline: 0.2rem;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  width: 100%;
  padding-top: var(--space-md);
  margin-top: 0;
  border-top: 1px solid rgba(212, 176, 74, 0.22);
}

.site-footer__disclaimer .spf-disclaimer {
  max-width: 40ch;
  margin-inline: auto;
  font-size: 0.7rem;
  line-height: 1.45;
  opacity: 0.55;
  text-align: center;
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.85rem;
}

.site-footer__legal {
  font-size: 0.7rem;
  opacity: 0.45;
  margin: 0;
}

.site-footer__credit {
  margin: 0;
  padding: 0;
  border: 0;
  width: auto;
  max-width: none;
  font-size: 0.7rem;
  font-weight: var(--weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__credit a {
  color: var(--color-gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 224, 168, 0.55);
  transition:
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.site-footer__legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* --- Legal / privacy pages ----------------------------------------------- */

.site-header--simple .site-header__inner {
  justify-content: space-between;
}

.site-header--simple .site-header__logo {
  position: static;
  left: auto;
  top: auto;
  transform: none;
}

.legal-page {
  padding-block: calc(var(--header-offset) + var(--space-xl)) var(--space-xxl);
  background: linear-gradient(180deg, #ffffff 0%, #faf8f5 40%, #f5f2ee 100%);
  color: var(--color-dark);
  min-height: 70svh;
}

.legal-page__inner {
  max-width: 44rem;
}

.legal-page__eyebrow {
  margin: 0 0 var(--space-xs);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

.legal-page__title {
  margin: 0 0 var(--space-xs);
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  color: var(--color-primary);
  letter-spacing: var(--letter-spacing-heading);
}

.legal-page__updated {
  margin: 0 0 var(--space-xl);
  font-size: var(--text-sm);
  opacity: 0.65;
}

.legal-page__content h2 {
  margin: var(--space-xl) 0 var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
}

.legal-page__content p,
.legal-page__content li {
  font-size: var(--text-base);
  line-height: 1.7;
}

.legal-page__content p {
  margin: 0 0 var(--space-sm);
}

.legal-page__content ul {
  margin: 0 0 var(--space-md);
  padding-left: 1.25rem;
}

.legal-page__content li {
  margin-bottom: 0.4rem;
}

.legal-page__content a {
  color: var(--color-primary);
}

.site-footer__credit a:hover {
  color: var(--color-white);
  border-color: var(--color-white);
}

/* --- Hover effects ------------------------------------------------------- */

@media (hover: hover) and (pointer: fine) {
  .site-header__logo img {
    transition:
      height var(--transition-base),
      filter var(--transition-base),
      transform var(--transition-base);
  }

  .site-header__logo:hover img {
    transform: scale(1.06);
    filter: drop-shadow(0 4px 24px rgba(212, 176, 74, 0.55));
  }

  .site-header__toggle,
  .site-header__actions {
    transition:
      transform var(--transition-fast),
      box-shadow var(--transition-fast),
      background-color var(--transition-fast),
      border-color var(--transition-fast);
  }

  .site-header__toggle:hover,
  .site-header__actions:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }

  .cart-toggle {
    transition:
      color var(--transition-fast),
      background-color var(--transition-fast),
      transform var(--transition-fast);
  }

  .cart-toggle:hover {
    transform: scale(1.04);
  }

  .cart-toggle:hover .cart-toggle__icon {
    animation: cart-wiggle 420ms ease;
  }

  @keyframes cart-wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
  }

  .product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 176, 74, 0.75);
    box-shadow:
      var(--shadow-md),
      0 0 28px rgba(212, 176, 74, 0.22);
  }

  .product-card:hover .product-card__image {
    transform: scale(1.07);
    filter: brightness(1.04) saturate(1.08);
  }

  .product-card__title a:hover {
    color: var(--color-primary);
    background-size: 100% 1px;
  }

  .benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 176, 74, 0.55);
    box-shadow:
      var(--shadow-md),
      0 0 24px rgba(212, 176, 74, 0.18);
  }

  .benefit-card:hover .benefit-card__icon {
    transform: scale(1.12) translateY(-2px);
    color: var(--color-secondary);
    filter: drop-shadow(0 4px 12px rgba(173, 34, 52, 0.25));
  }

  .cherry-whip__gallery-item:hover .cherry-whip__gallery-image {
    transform: scale(1.07);
    filter: brightness(1.06) saturate(1.12);
  }

  .cherry-whip__image-frame:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow:
      0 28px 56px rgba(0, 0, 0, 0.32),
      0 0 0 1px rgba(242, 224, 168, 0.55);
  }

  .instagram-grid__link:hover::after {
    opacity: 1;
  }

  .instagram-grid__link:hover .instagram-grid__image,
  .instagram-grid__link:focus-visible .instagram-grid__image {
    transform: scale(1.08);
    opacity: 0.88;
  }

  .section--instagram__handle a {
    background-image: linear-gradient(var(--color-white), var(--color-white));
    background-size: 0% 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition:
      color var(--transition-fast),
      background-size var(--transition-base);
  }

  .section--instagram__handle a:hover {
    color: var(--color-white);
    background-size: 100% 1px;
  }

  .section--contact .contact-details__list a {
    background-image: linear-gradient(var(--color-gold-light), var(--color-gold-light));
    background-size: 0% 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition:
      color var(--transition-fast),
      background-size var(--transition-base);
  }

  .section--contact .contact-details__list a:hover {
    color: var(--color-white);
    background-size: 100% 1px;
  }

  .stockist-locator__item:hover {
    border-color: rgba(212, 176, 74, 0.45);
  }

  .stockist-locator__item-btn:hover .stockist-locator__name {
    color: var(--color-primary);
  }

  .stockist-locator__pin:hover .stockist-locator__pin-dot {
    transform: scale(1.15);
  }

  .site-footer__nav-list a {
    background-image: linear-gradient(var(--color-gold-light), var(--color-gold-light));
    background-size: 0% 1px;
    background-position: 50% 100%;
    background-repeat: no-repeat;
    transition:
      opacity var(--transition-fast),
      color var(--transition-fast),
      background-size var(--transition-base),
      transform var(--transition-fast);
  }

  .site-footer__nav-list a:hover {
    opacity: 1;
    color: var(--color-gold-light);
    background-size: 80% 1px;
    transform: translateY(-1px);
  }

  .social-icons__link:hover {
    transform: translateY(-1px);
  }

  .btn--primary {
    transition:
      transform var(--transition-fast),
      box-shadow var(--transition-fast),
      background-position var(--transition-base),
      letter-spacing var(--transition-base);
  }

  .btn--primary:hover {
    letter-spacing: var(--letter-spacing-button-hover);
  }

  .btn--outline-light:hover {
    letter-spacing: var(--letter-spacing-button-hover);
  }
}

/* --- Cherry rain (add to cart) ------------------------------------------- */

body.splash-active {
  overflow: hidden;
}

body.splash-active .site-header {
  visibility: hidden;
  pointer-events: none;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-dark);
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
  -webkit-font-smoothing: antialiased;
}

.splash-screen.is-hiding {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-screen__rain {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.splash-screen__logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(42vw, 168px);
  aspect-ratio: 1;
  isolation: isolate;
}

.splash-screen__logo::after {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(173, 34, 52, 0.38) 0%, transparent 72%);
  z-index: -1;
  pointer-events: none;
}

.site-logo__img--splash {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.splash-screen.is-ready .site-logo__img--splash {
  animation: splash-logo-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes splash-logo-in {
  from {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.splash-screen__rain .cherry-rain__item {
  animation-duration: calc(2s + (var(--cherry-speed, 0.5) * 2.4s));
}

/* --- Cherry Whip popup --------------------------------------------------- */

body.cherry-popup-open {
  overflow: hidden;
}

.cherry-popup {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: grid;
  place-items: center;
  padding:
    calc(var(--space-md) + var(--safe-top))
    max(var(--space-sm), var(--safe-right))
    calc(var(--space-md) + var(--safe-bottom))
    max(var(--space-sm), var(--safe-left));
}

.cherry-popup[hidden] {
  display: none;
}

.cherry-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(41, 38, 36, 0.72);
  backdrop-filter: blur(4px);
}

.cherry-popup__rain {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cherry-popup__rain .cherry-rain__item {
  animation-duration: calc(2.1s + (var(--cherry-speed, 0.5) * 2.2s));
  opacity: 0.88;
}

.cherry-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 44rem);
  max-height: calc(100dvh - 2rem);
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  outline: none;
  animation: cherry-popup-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cherry-popup.is-hiding .cherry-popup__dialog {
  animation: cherry-popup-out 0.45s ease forwards;
}

.cherry-popup__card {
  width: 100%;
  max-height: calc(100dvh - 2rem - var(--safe-top) - var(--safe-bottom));
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.cherry-popup .cherry-popup__card.product-card,
.cherry-popup .cherry-popup__card.product-card:hover {
  transform: none;
  border-color: rgba(212, 176, 74, 0.3);
  box-shadow: var(--shadow-md);
}

.cherry-popup .cherry-popup__card.product-card:hover .product-card__image {
  transform: none;
  filter: none;
}

.cherry-popup .cherry-popup__card.product-card--featured {
  max-height: calc(100dvh - 2rem - var(--safe-top) - var(--safe-bottom));
}

.cherry-popup .cherry-popup__card.product-card--featured .product-card__media {
  aspect-ratio: 5 / 4;
  max-height: min(42vh, 18.5rem);
  flex-shrink: 0;
  background: #fff;
}

.cherry-popup .cherry-popup__card.product-card--featured .product-card__media > img,
.cherry-popup .cherry-popup__card.product-card--featured .product-card__media .product-card__image {
  object-fit: cover;
  object-position: center 42%;
  min-height: 0;
}

.cherry-popup .cherry-popup__card .product-card__image--product {
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

.cherry-popup .cherry-popup__card .product-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: var(--space-md) var(--space-sm);
  gap: var(--space-sm);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  min-height: 0;
  flex: 1 1 auto;
}

.cherry-popup .cherry-popup__card .product-card__title {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  font-size: var(--text-2xl);
  line-height: 1.3;
  padding: 0 0.12em 0.1em;
  text-align: center;
  white-space: normal;
  text-wrap: balance;
  overflow-wrap: anywhere;
  overflow: visible;
}

.cherry-popup .cherry-popup__card .product-card__description {
  font-size: var(--text-sm);
  text-align: center;
  max-width: 26ch;
  margin: 0;
  line-height: 1.55;
}

.cherry-popup__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 50%;
  background: rgba(41, 38, 36, 0.08);
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  outline: none;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast);
}

.cherry-popup__close:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.cherry-popup__close:hover {
  background: rgba(173, 34, 52, 0.12);
  color: var(--color-primary);
}

.cherry-popup__eyebrow {
  margin: 0;
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  text-align: center;
}

.cherry-popup__tagline {
  margin: 0;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  letter-spacing: -0.04em;
  line-height: 1.35;
  text-align: center;
  overflow: visible;
}

.cherry-popup__tagline em {
  font-style: italic;
  color: var(--color-primary);
  display: inline-block;
  padding-inline: 0.08em;
  margin: 0;
  vertical-align: baseline;
}

@media (max-width: 767px) {
  .cherry-popup .cherry-popup__card.product-card--featured .product-card__media {
    aspect-ratio: 5 / 4;
    max-height: min(40vh, 17rem);
  }

  .cherry-popup .cherry-popup__card.product-card--featured .product-card__media > img,
  .cherry-popup .cherry-popup__card.product-card--featured .product-card__media .product-card__image,
  .cherry-popup .cherry-popup__card .product-card__image--product {
    object-fit: cover;
    object-position: center 40%;
  }

  .cherry-popup .cherry-popup__card .product-card__title {
    font-size: clamp(1.85rem, 8.5vw, 2.35rem);
    white-space: normal;
  }

  .cherry-popup__tagline {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
  }
}

.cherry-popup__actions {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: var(--space-sm);
  flex-shrink: 0;
}

.cherry-popup__cta {
  width: auto;
  min-width: 0;
  max-width: 100%;
  padding-inline: 1.25rem;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
}

.cherry-popup__cta.btn--primary {
  box-shadow:
    0 4px 16px rgba(173, 34, 52, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cherry-popup__cta.btn--primary::before {
  opacity: 0.7;
}

.cherry-popup__cta.btn:hover {
  transform: scale(1.02);
}

@media (min-width: 768px) {
  .cherry-popup .cherry-popup__card.product-card--featured {
    grid-template-columns: 1fr 1fr;
    max-height: min(88dvh, 26rem);
    display: grid;
    flex-direction: unset;
  }

  .cherry-popup .cherry-popup__card.product-card--featured .product-card__media {
    aspect-ratio: auto;
    max-height: none;
    height: 100%;
  }

  .cherry-popup .cherry-popup__card.product-card--featured .product-card__media > img,
  .cherry-popup .cherry-popup__card.product-card--featured .product-card__media .product-card__image,
  .cherry-popup .cherry-popup__card .product-card__image--product {
    object-fit: cover;
    object-position: center center;
  }

  .cherry-popup .cherry-popup__card .product-card__body {
    padding: var(--space-lg);
    justify-content: center;
    overflow-y: visible;
  }

  .cherry-popup .cherry-popup__card .product-card__title {
    white-space: nowrap;
  }
}

@keyframes cherry-popup-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cherry-popup-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
}

.cherry-rain {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  overflow: hidden;
}

.cherry-rain__item {
  position: absolute;
  top: -2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: var(--cherry-size, 1.4rem);
  opacity: 0.95;
  animation: cherry-fall linear forwards;
  will-change: transform, opacity;
  width: auto;
  height: auto;
}

@keyframes cherry-fall {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate3d(var(--cherry-drift, 0), 110vh, 0) rotate(var(--cherry-spin, 360deg)) scale(0.85);
    opacity: 0.35;
  }
}

@media (min-width: 768px) {
  .splash-screen__logo {
    width: min(48vw, 200px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .splash-screen.is-ready .site-logo__img--splash {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .section--hero__media--immersive > .section--hero__image--immersive,
  .section--hero__media--immersive > picture {
    height: 100%;
    top: 0;
    will-change: auto;
    transform: none;
  }

  .cherry-popup__dialog {
    animation: none;
  }

  .section--hero--light .section--hero__divider {
    animation: none;
    background-position: 50% 0;
  }

  .cherry-rain__item {
    animation: none;
    display: none;
  }

  .site-nav.is-open .site-nav__list li {
    animation: none;
  }

  @media (hover: hover) and (pointer: fine) {
    .cart-toggle:hover .cart-toggle__icon {
      animation: none;
    }

    .product-card:hover,
    .benefit-card:hover,
    .site-header__toggle:hover,
    .site-header__actions:hover {
      transform: none;
    }
  }
}

/* --- RTE (rich text) ----------------------------------------------------- */

.rte p + p {
  margin-top: var(--space-md);
}

/* ==========================================================================
   Tablet - 768px+
   ========================================================================== */

@media (min-width: 768px) {
  :root {
    --header-height: 132px;
    --header-offset: 132px;
    --header-logo-offset: 0.65rem;
    --section-padding: 4rem;
  }

  .container {
    padding-inline: max(var(--space-md), var(--safe-left)) max(var(--space-md), var(--safe-right));
  }

  .site-header__inner {
    padding-top: calc(var(--space-md) + var(--safe-top));
  }

  .site-header__logo img,
  .site-logo__img--header {
    height: 100px;
    max-width: none;
  }

  .site-header__shop {
    display: inline-flex;
  }

  .cart-toggle__label {
    display: inline;
  }

  .section__heading {
    font-size: var(--text-4xl);
  }

  .section--product-details .section__heading {
    white-space: normal;
    text-wrap: balance;
    font-size: var(--text-2xl);
  }

  .section--hero__product-name {
    font-size: clamp(3.5rem, 9vw, 5.25rem);
    white-space: nowrap;
    text-wrap: initial;
  }

  .section--hero__tagline {
    font-size: var(--text-4xl);
  }

  .section--hero__content--overlay {
    padding-block: calc(var(--header-offset) + var(--space-xl)) var(--section-padding);
    padding-inline: 0;
  }

  .product-card--featured {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    min-height: 0;
    max-height: min(62vh, 28rem);
    align-items: stretch;
  }

  .cherry-whip__image-frame {
    width: 100%;
    max-width: 20rem;
  }

  .cherry-whip__showcase {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: var(--space-xxl);
  }

  .product-card--featured .product-card__media {
    aspect-ratio: unset;
    height: 100%;
    min-height: 0;
    max-height: none;
  }

  .product-card--featured .product-card__body {
    padding: var(--space-lg);
    text-align: left;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-sm);
  }

  .product-card--featured .product-card__title {
    font-size: var(--text-2xl);
  }

  .product-card--featured .product-card__form {
    max-width: none;
    margin-inline: 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
  }

  .product-card--featured .product-card__quantity {
    justify-content: flex-start;
  }

  .product-card--featured .product-card__variant-select {
    flex: 1 1 100%;
  }

  .product-card--featured [data-add-to-cart] {
    flex: 1 1 auto;
    min-width: 12rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .section--brand-story__inner {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: var(--space-xl);
    align-items: center;
  }

  .section--brand-story--image-left .section--brand-story__content {
    order: 2;
  }

  .section--brand-story--image-left .section--brand-story__media {
    order: 1;
  }

  .section--brand-story__media {
    max-height: min(64vh, 36rem);
  }

  .section--hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
  }

  .cherry-whip__heading {
    font-size: var(--text-4xl);
  }

  .cherry-whip__product-name {
    font-size: var(--text-7xl);
  }

  .cherry-whip__gallery-grid {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .cherry-whip__gallery-item--large {
    grid-row: 1 / 3;
    min-height: 100%;
  }

  .cherry-whip__body {
    max-width: none;
  }

  .benefit-card {
    flex: 1 1 calc(50% - var(--space-lg));
    max-width: calc(50% - var(--space-lg));
  }

  .section--contact__grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
    gap: var(--space-xl);
    align-items: stretch;
  }

  .contact-form__grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-card,
  .contact-details-card {
    padding: var(--space-xl);
  }

  .contact-form__submit {
    width: auto;
    min-width: 12rem;
  }

  .stockist-locator {
    padding: var(--space-xl);
  }

  .stockist-locator__search {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }

  .stockist-locator__submit {
    width: auto;
    min-width: 10rem;
  }

  .stockist-locator__layout {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .stockist-locator__list {
    max-height: 24rem;
  }

  .stockist-locator__map-canvas {
    min-height: 100%;
    height: 100%;
  }
}

/* ==========================================================================
   Mobile hero image - below 1024px
   ========================================================================== */

@media (max-width: 1023px) {
  .section--hero.section--hero--has-mobile-image {
    overflow: hidden;
  }

  .section--hero--has-mobile-image.section--hero--immersive {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: 0;
    background-color: #f5f2ee;
    overflow: hidden;
  }

  .section--hero--has-mobile-image.texture-marble {
    background-color: #f5f2ee;
    background-image: none;
  }

  .section--hero__media--mobile {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .section--hero__image--mobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    filter: brightness(1.12) saturate(1.14) contrast(0.94);
  }

  .section--hero--has-mobile-image.section--hero--immersive .section--hero__media--mobile .section--hero__scrim,
  .section--hero--has-mobile-image.section--hero--immersive .section--hero__scrim--mobile {
    display: none;
    background: transparent;
    background-image: none;
  }

  .section--hero--has-mobile-image .section--hero__content--overlay {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      #faf8f5 46%,
      #f5f2ee 100%
    );
    padding-block: calc(var(--safe-top) + var(--header-height) + 1.85rem) var(--space-lg);
    padding-inline: max(var(--space-sm), var(--safe-left)) max(var(--space-sm), var(--safe-right));
    margin-bottom: -2.25rem;
  }

  .section--hero--has-mobile-image .section--hero__content--overlay::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4.5rem;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      #f5f2ee 0%,
      rgba(245, 242, 238, 0.82) 35%,
      rgba(245, 242, 238, 0.35) 68%,
      transparent 100%
    );
  }

  .section--hero--has-mobile-image .section--hero__eyebrow {
    margin-bottom: var(--space-xs);
  }

  .section--hero--has-mobile-image .section--hero__heading {
    margin-bottom: var(--space-xs);
  }

  .section--hero--has-mobile-image .section--hero__heading,
  .section--hero--has-mobile-image .section--hero__eyebrow,
  .section--hero--has-mobile-image .section--hero__subheading {
    margin-inline: auto;
    text-align: center;
    max-width: min(92vw, 21.5rem);
  }

  .section--hero--has-mobile-image .section--hero__product-name {
    margin-inline: auto;
    font-size: clamp(3.25rem, 14vw, 4.15rem);
  }

  .section--hero--has-mobile-image .section--hero__tagline {
    font-size: clamp(2rem, 8.5vw, 2.55rem);
  }

  .section--hero--has-mobile-image .section--hero__divider {
    margin-top: var(--space-xs);
    margin-bottom: var(--space-sm);
    margin-inline: auto;
    width: min(82%, 14rem);
  }

  .section--hero--has-mobile-image .section--hero__subheading {
    margin-bottom: var(--space-md);
    line-height: 1.55;
    font-size: var(--text-base);
    max-width: min(92vw, 20rem);
  }

  .section--hero--has-mobile-image .section--hero__actions {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: min(92vw, 18.5rem);
    gap: var(--space-sm);
    margin-top: 0;
  }
}

/* ==========================================================================
   Desktop - 1024px+
   ========================================================================== */

@media (min-width: 1024px) {
  :root {
    --header-height: 148px;
    --header-offset: 148px;
    --header-logo-offset: 0.85rem;
    --section-padding: var(--space-xxl);
  }

  .site-header__inner {
    gap: var(--space-md) var(--space-lg);
    padding-top: calc(var(--space-lg) + var(--safe-top));
    padding-bottom: var(--space-sm);
  }

  .site-header__toggle {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: auto;
    height: auto;
    min-height: 46px;
    padding: 4px 0.95rem 4px 0.75rem;
    background: #000;
    border: 1px solid rgba(212, 176, 74, 0.45);
    border-radius: var(--radius-pill);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
    transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  }

  .site-header.is-scrolled .site-header__toggle {
    background: #000;
    border-color: rgba(212, 176, 74, 0.45);
  }

  .site-header__toggle:hover {
    background: #141414;
    color: var(--color-gold-light);
    border-color: rgba(212, 176, 74, 0.62);
  }

  .site-header__toggle-bars {
    width: 18px;
    flex-shrink: 0;
  }

  .site-header__toggle-label {
    display: inline;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--weight-button);
    letter-spacing: var(--letter-spacing-button);
    text-transform: uppercase;
  }

  .site-header__logo img,
  .site-logo__img--header {
    height: 124px;
  }

  .site-header.is-scrolled .site-header__inner {
    min-height: 5rem;
  }

  .site-nav__panel {
    top: calc(var(--header-height) - 1rem);
    left: max(var(--space-md), calc((100vw - var(--container-max)) / 2 + var(--space-md)));
    width: min(20rem, calc(100vw - var(--space-md) * 2));
    max-height: calc(100svh - var(--header-height) - var(--space-sm));
  }

  .site-header.is-scrolled .site-nav__panel {
    top: calc(5rem - 0.5rem);
    max-height: calc(100svh - 5rem - var(--space-sm));
  }

  .site-header__shop {
    display: inline-flex;
  }

  .cart-toggle__label {
    display: inline;
  }

  .site-header__actions {
    gap: 3px;
    padding: 4px;
  }

  .cart-toggle {
    align-self: center;
  }

  .section--shop .section__heading {
    font-size: var(--text-4xl);
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-grid--single {
    grid-template-columns: 1fr;
  }

  .product-card--featured {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: 0;
    max-height: min(70vh, 26rem);
    align-items: stretch;
  }

  .product-card--featured .product-card__media {
    aspect-ratio: unset;
    height: 100%;
    min-height: 0;
    max-height: none;
  }

  .product-card--featured .product-card__body {
    padding: var(--space-lg);
    text-align: left;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-sm);
  }

  .product-card--featured .product-card__title {
    font-size: var(--text-3xl);
  }

  .product-card--featured .product-card__description {
    font-size: var(--text-sm);
  }

  .product-card--featured .product-card__form {
    max-width: none;
    margin-inline: 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md);
  }

  .cherry-popup .cherry-popup__card.product-card--featured .product-card__body {
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
  }

  .cherry-popup .cherry-popup__card .product-card__title {
    font-size: var(--text-2xl);
    text-align: center;
    white-space: nowrap;
  }

  .cherry-popup .cherry-popup__card .product-card__description {
    text-align: center;
    max-width: 26ch;
  }

  .product-card--featured .product-card__quantity {
    justify-content: flex-start;
  }

  .product-card--featured .product-card__variant-select {
    flex: 1 1 100%;
  }

  .product-card--featured [data-add-to-cart] {
    flex: 1 1 auto;
    min-width: 220px;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

  .cart-form__actions {
    flex-direction: row;
    justify-content: flex-end;
  }

  .cart-line--page {
    align-items: center;
  }

  .section--hero--immersive {
    min-height: 100vh;
  }

  .section--hero__media--mobile {
    display: none;
  }

  .section--hero--has-mobile-image.section--hero--immersive {
    padding-top: 0;
    justify-content: center;
  }

  .section--hero--has-mobile-image .section--hero__content--overlay {
    order: unset;
    background-color: transparent;
    flex: unset;
    padding-block: calc(var(--header-offset) + var(--space-lg)) var(--section-padding);
  }

  .section--hero__media--desktop {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .section--hero__image--desktop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
    display: block;
  }

  .section--hero--has-desktop-image.texture-marble {
    background-color: #f5f2ee;
    background-image: none;
  }

  .section--hero--has-desktop-image .section--hero__scrim--desktop {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(
        to right,
        rgba(245, 242, 238, 1) 0%,
        rgba(245, 242, 238, 0.96) 14%,
        rgba(245, 242, 238, 0.88) 28%,
        rgba(245, 242, 238, 0.68) 42%,
        rgba(245, 242, 238, 0.38) 54%,
        rgba(245, 242, 238, 0.12) 66%,
        transparent 78%
      );
  }

  .section--hero--has-desktop-image .section--hero__content--overlay {
    align-items: flex-start;
    text-align: left;
    max-width: none;
    width: 100%;
    padding-inline: max(5vw, calc((100vw - var(--container-max)) / 2 + var(--space-lg)));
  }

  .section--hero--has-desktop-image .section--hero__heading {
    margin-inline: 0;
    max-width: min(40vw, 540px);
    align-items: flex-start;
    width: 100%;
  }

  .section--hero--has-desktop-image .section--hero__eyebrow {
    width: 100%;
    max-width: min(40vw, 540px);
    text-align: left;
  }

  .section--hero--has-desktop-image .section--hero__product-name {
    margin-inline: 0;
    padding-left: 0;
    padding-right: 0.14em;
    align-self: flex-start;
  }

  .section--hero--has-desktop-image .section--hero__tagline {
    margin-inline: 0;
    width: 100%;
    text-align: left;
    align-self: stretch;
  }

  .section--hero--has-desktop-image .section--hero__tagline em {
    padding-left: 0;
    margin-left: 0;
  }

  .section--hero--has-desktop-image .section--hero__subheading {
    margin-inline: 0;
    max-width: min(36vw, 480px);
    text-align: left;
  }

  .section--hero--has-desktop-image .section--hero__divider {
    margin-inline: 0;
  }

  .section--hero--has-desktop-image .section--hero__actions {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .section__heading {
    font-size: var(--text-5xl);
  }

  .section--product-details .section__heading {
    white-space: normal;
    text-wrap: balance;
    font-size: var(--text-4xl);
  }

  .section--hero__tagline {
    font-size: var(--text-5xl);
  }

  .benefit-card__heading {
    font-size: var(--text-3xl);
  }

  .cherry-whip__hero-image {
    min-height: 70vh;
  }

  .benefit-card {
    flex: 1 1 calc(33.333% - var(--space-lg));
    max-width: calc(33.333% - var(--space-lg));
  }

  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .shop-grid--single {
    grid-template-columns: 1fr;
  }

  .product-card--featured {
    max-height: min(68vh, 28rem);
  }

  .product-card--featured .product-card__media {
    height: 100%;
    max-height: none;
  }

  .product-card--featured .product-card__body {
    padding: var(--space-lg) var(--space-xl);
  }

  .instagram-grid {
    gap: var(--space-lg);
  }

  .section--brand-story__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: var(--space-xxl);
  }

  .section--brand-story__media {
    max-height: min(72vh, 40rem);
  }

  .site-footer__payments .payment-icons__list {
    flex-wrap: nowrap;
    gap: 0.35rem;
  }

  .site-footer__payments .payment-icons__item {
    width: 2.75rem;
  }

  .site-footer__nav-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: var(--space-md);
    max-width: none;
  }

  .site-footer__inner {
    gap: var(--space-sm) var(--space-md);
  }
}

/* ==========================================================================
   Mobile & short-viewport refinements
   ========================================================================== */

@media (max-width: 767px) {
  .contact-form-card,
  .contact-details-card {
    padding: var(--space-md);
  }

  .stockist-locator {
    padding: var(--space-md);
  }

  .section--contact__divider {
    margin-block: var(--space-md) var(--space-lg);
  }

  .lead {
    font-size: var(--text-base);
  }

  .section--hero--immersive {
    min-height: max(78svh, 32rem);
  }

  .section--hero--has-mobile-image.section--hero--immersive {
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: 0;
  }

  .section--hero__media--immersive > .section--hero__image--immersive,
  .section--hero__media--immersive > picture,
  .section--hero__media--immersive > picture img {
    object-position: 28% center;
  }

  .section--hero__product-name {
    font-size: clamp(3.15rem, 15vw, 4rem);
    line-height: 1.05;
  }

  .section--hero__tagline {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .section--hero__heading {
    gap: 0.35rem;
  }

  .cart-drawer__header {
    padding-top: calc(var(--space-md) + var(--safe-top));
  }

  .site-footer__inner {
    gap: var(--space-sm);
  }

  .site-footer__nav-list {
    gap: 0.15rem var(--space-xs);
  }

  .section--shop__subheading,
  .section--instagram__subheading,
  .section--stockists__subheading {
    font-size: var(--text-sm);
  }

  .cherry-whip__gallery-item {
    min-height: 220px;
  }

  .cherry-whip__gallery-item--large {
    min-height: 280px;
  }

  .cherry-whip__showcase {
    gap: var(--space-lg);
  }

  .cherry-whip__content {
    align-items: center;
    text-align: center;
  }

  .cherry-whip__body {
    max-width: 34ch;
  }

  .cherry-whip__details .ingredients-list {
    text-align: center;
  }

  .cherry-whip__details .spf-disclaimer {
    margin-inline: auto;
    text-align: center;
    max-width: 34ch;
  }

  .cherry-whip__actions {
    display: flex;
    justify-content: center;
  }

  .cherry-whip__image-frame {
    transform: none;
    width: min(78vw, 15.5rem);
  }

  .cherry-whip__visual {
    padding-inline: 0;
    width: 100%;
  }

  .section--product-details .section__heading {
    font-size: var(--text-2xl);
    text-wrap: balance;
    padding-inline: var(--space-xs);
  }

  .section--product-details__body {
    font-size: var(--text-base);
    padding-inline: var(--space-xs);
  }

  .section--hero__subheading {
    font-size: var(--text-base);
    padding-inline: var(--space-xs);
  }
}

@media (max-width: 400px) {
  .site-footer__payments .payment-icons__item {
    width: 2.1rem;
  }

  .site-footer__payments .payment-icons__list {
    gap: 0.2rem;
    justify-content: center;
  }

  .cherry-whip__details .cherry-whip__product-name {
    font-size: clamp(1.75rem, 9vw, 2.25rem);
  }

  .site-header__logo img,
  .site-logo__img--header {
    height: 76px;
    max-width: min(40vw, 9.25rem);
  }
}

@media (max-height: 600px) and (max-width: 900px) {
  .section--hero--immersive {
    min-height: auto;
  }

  .section--hero--has-mobile-image.section--hero--immersive,
  .section--hero--has-mobile-image .section--hero__content--overlay {
    min-height: 0;
  }

  .section--hero--has-mobile-image .section--hero__content--overlay {
    padding-block: calc(var(--safe-top) + var(--header-height) + 0.85rem) var(--space-md);
    margin-bottom: -1.75rem;
  }

  .section--hero__content--overlay {
    padding-block: calc(var(--header-offset) + var(--space-md)) var(--space-lg);
  }

  .cherry-popup .cherry-popup__card.product-card--featured .product-card__media {
    max-height: min(34vh, 15rem);
  }

  .cherry-popup .cherry-popup__card.product-card--featured .product-card__media > img,
  .cherry-popup .cherry-popup__card.product-card--featured .product-card__media .product-card__image,
  .cherry-popup .cherry-popup__card .product-card__image--product {
    object-fit: cover;
    object-position: center 38%;
  }

  .product-card--featured .product-card__media {
    max-height: min(42vh, 18rem);
  }
}
