:root {
  --color-ink: #2d2d2d;
  --color-paper: #f2f2f2;
  --color-white: #ffffff;
  --color-acid: #0bb747;
  --font-primary: "Bernie ST", Georgia, "Times New Roman", serif;
  --font-secondary: "Visual", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-neutral: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: var(--font-neutral);
  --font-display: var(--font-primary);
  --header-height: 92px;
}

@font-face {
  font-family: "Bernie ST";
  src: url("fonts/BernieST-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Visual";
  src: url("fonts/Visual-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.skip-to-content-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--color-ink);
  background: var(--color-white);
  border-radius: 999px;
  transition: transform 160ms ease;
}

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

.icon {
  width: 22px;
  height: 22px;
  display: block;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--header-transparent-color);
  background: transparent;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open,
.site-header.is-shop-open {
  color: var(--header-scrolled-color);
  background: var(--header-scrolled-bg);
  box-shadow: 0 1px 0 rgba(45, 45, 45, 0.08);
}

.site-header.is-menu-open {
  background: #f4f1ea;
  box-shadow: none;
}

.site-header.is-shop-open {
  background: #f2f2f2;
  box-shadow: none;
}

.site-header__inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  width: 100%;
  padding: 0 56px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  height: 44px;
  font-family: var(--font-primary);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 44px;
}

.site-header__logo span {
  display: block;
  line-height: 44px;
  transform: translateY(-0.08em);
}

.site-header__logo-image {
  width: auto;
  max-width: 150px;
  max-height: 68px;
  object-fit: contain;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--font-neutral);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-header__nav a,
.site-header__util,
.site-header__account,
.site-header__icon-link,
.site-header__menu-button {
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-header__nav a:hover,
.site-header__util:hover,
.site-header__account:hover,
.site-header__icon-link:hover,
.site-header__menu-button:hover {
  opacity: 0.72;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.site-header__icon-link,
.site-header__account,
.site-header__menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.site-header__util {
  font-family: var(--font-neutral);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: inherit;
  white-space: nowrap;
}

.site-header__cart {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 20px;
  border: 1px solid #2d2d2d;
  border-radius: 999px;
  cursor: pointer;
  background: #ffffff;
  color: #2d2d2d;
  font-family: var(--font-neutral);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: box-shadow 180ms ease;
}

.site-header__cart-count {
  font-weight: 500;
}

.site-header__cart:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

/* ============================================================
   ADD-TO-CART TOAST
   ============================================================ */
.cart-toast {
  position: absolute;
  top: calc(var(--header-height) - 6px);
  right: 56px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding: 0 20px;
  border: 1px solid #2d2d2d;
  border-radius: 999px;
  cursor: pointer;
  background: #ffffff;
  color: #2d2d2d;
  font-family: var(--font-neutral);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(28, 26, 23, 0.18);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cart-toast__link {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cart-toast:hover .cart-toast__link,
.cart-toast:focus-visible .cart-toast__link {
  opacity: 0.75;
}

@media (max-width: 989px) {
  .cart-toast {
    top: calc(var(--header-height) - 2px);
    right: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-toast {
    transition: none;
  }
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
}

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

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 23, 0.42);
  opacity: 0;
  transition: opacity 280ms ease;
}

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

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(560px, 100vw);
  height: 100%;
  background: #ffffff;
  color: #2d2d2d;
  box-shadow: -12px 0 40px rgba(28, 26, 23, 0.18);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media (max-width: 749px) {
  .cart-drawer__panel {
    width: 100%;
    max-width: none;
  }

  .cart-line__sep {
    display: none;
  }

  .cart-line__pack {
    flex-basis: 100%;
  }
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(45, 45, 45, 0.14);
}

.cart-drawer__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.cart-drawer__close {
  padding: 6px 4px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: var(--font-neutral);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 160ms ease;
}

.cart-drawer__close:hover,
.cart-drawer__close:focus-visible {
  opacity: 0.64;
}

.cart-drawer__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}

.cart-drawer__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 32px 36px 56px;
  text-align: center;
}

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

.cart-drawer__empty-art {
  color: #2d2d2d;
}

.cart-drawer__empty-art svg {
  width: 84px;
  height: 84px;
}

.cart-drawer__empty-text {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.15;
  white-space: nowrap;
}

.cart-drawer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 36px;
  border-radius: 18px;
  background: #ff4527;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cart-drawer__cta:hover,
.cart-drawer__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 69, 39, 0.34);
}

.cart-drawer__items {
  display: flex;
  flex-direction: column;
}

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

.cart-drawer__progress {
  padding: 20px 28px 24px;
  border-bottom: 1px solid rgba(45, 45, 45, 0.12);
}

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

.cart-progress__message {
  margin: 0 0 14px;
  font-family: var(--font-neutral);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.cart-progress__map {
  position: relative;
  padding-top: 42px;
  padding-bottom: 24px;
}

.cart-progress__pill {
  position: absolute;
  top: 0;
  left: var(--pos);
  transform: translateX(-50%);
  padding: 6px 11px;
  border: 1px solid rgba(45, 45, 45, 0.3);
  border-radius: 999px;
  background: #ffffff;
  color: #2d2d2d;
  font-family: var(--font-secondary);
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}

.cart-progress__pill.is-hit {
  background: #ff4527;
  border-color: #ff4527;
  color: #ffffff;
}

.cart-progress__at {
  position: absolute;
  bottom: 0;
  left: var(--pos);
  transform: translateX(-50%);
  font-family: var(--font-neutral);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: #2d2d2d;
  transition: color 200ms ease;
}

.cart-progress__at.is-hit {
  color: #ff4527;
}

.cart-progress__track {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(45, 45, 45, 0.14);
}

.cart-progress__fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0%;
  border-radius: 999px;
  background: #ff4527;
  transition: width 320ms ease;
}

.cart-progress__dot {
  position: absolute;
  top: 50%;
  left: var(--pos);
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid rgba(45, 45, 45, 0.3);
  background: #ffffff;
  transition: background-color 200ms ease, border-color 200ms ease;
}

.cart-progress__dot.is-hit {
  background: #ff4527;
  border-color: #ff4527;
}

.cart-line {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  align-items: stretch;
  gap: 22px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(45, 45, 45, 0.12);
}

.cart-line__media {
  width: 130px;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: #e5e5e5;
}

.cart-line__flavor {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 4px;
  font-family: var(--font-neutral);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.cart-line__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
}

.cart-line__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 5px 0 0;
  font-family: var(--font-neutral);
  font-size: 13px;
  line-height: 1.3;
}

.cart-line__price-row strong {
  font-weight: 600;
}

.cart-line__sep {
  color: rgba(45, 45, 45, 0.3);
}

.cart-line__pack {
  font-size: 12px;
  font-weight: 400;
  color: rgba(45, 45, 45, 0.6);
}

.cart-line__detail {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(45, 45, 45, 0.6);
}

.cart-line__sub {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(45, 45, 45, 0.2);
}

.cart-line__sub-label {
  margin: 0;
  font-family: var(--font-neutral);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(45, 45, 45, 0.55);
}

.cart-line__sub-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
}

.cart-line__sub-value {
  margin: 0;
  font-family: var(--font-neutral);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.cart-line__edit {
  flex-shrink: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(45, 45, 45, 0.55);
  cursor: pointer;
  font-family: var(--font-neutral);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 160ms ease;
}

.cart-line__edit:hover,
.cart-line__edit:focus-visible {
  color: #ff4527;
}

.cart-line__editor {
  display: grid;
  gap: 9px;
  margin: 12px 0 2px;
  padding: 13px 14px;
  border: 1px solid rgba(45, 45, 45, 0.14);
  border-radius: 12px;
  background: #ffffff;
}

.cart-line__option {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-neutral);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
}

.cart-line__option input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: #ff4527;
}

.cart-line__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(45, 45, 45, 0.2);
}

.cart-line__remove {
  flex-shrink: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(45, 45, 45, 0.55);
  cursor: pointer;
  font-family: var(--font-neutral);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 160ms ease;
}

.cart-line__remove:hover,
.cart-line__remove:focus-visible {
  color: #ff4527;
}

.cart-line__stepper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 5px 12px;
  border: 1px solid rgba(45, 45, 45, 0.28);
  border-radius: 999px;
  font-family: var(--font-neutral);
  font-size: 13px;
  font-weight: 600;
}

.cart-line__stepper button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  transition: opacity 160ms ease;
}

.cart-line__stepper button:hover {
  opacity: 0.6;
}

.cart-line__savings {
  font-family: var(--font-neutral);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: #ff4527;
  white-space: nowrap;
}


.cart-drawer__upsell {
  padding: 14px 28px 4px;
}

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

.cart-upsell__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 16px;
}

.cart-upsell__track::-webkit-scrollbar {
  display: none;
}

.cart-upsell__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex;
  align-items: stretch;
  gap: 14px;
  padding: 12px;
  border-radius: 16px;
  background: #f2f2f2;
}

.cart-upsell__media {
  display: block;
  flex-shrink: 0;
  width: 74px;
  height: 74px;
  border-radius: 12px;
  overflow: hidden;
  background: #f2f2f2;
}

.cart-upsell__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-upsell__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.cart-upsell__title {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.cart-upsell__pack {
  margin: 3px 0 0;
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(45, 45, 45, 0.55);
}

.cart-upsell__row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cart-upsell__price {
  font-family: var(--font-neutral);
  font-size: 13px;
  font-weight: 600;
}

.cart-upsell__add {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: #ff4527;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cart-upsell__add:hover,
.cart-upsell__add:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(255, 69, 39, 0.32);
}

.cart-upsell__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.cart-upsell__dots:empty {
  display: none;
}

.cart-upsell__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(45, 45, 45, 0.25);
  transition: background-color 160ms ease;
}

.cart-upsell__dot.is-active {
  background: #ff4527;
}

.cart-drawer__footer {
  padding: 22px 28px 26px;
  background: #ffffff;
}

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

.cart-drawer__subscribe-all {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  cursor: pointer;
  font-family: var(--font-neutral);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

.cart-drawer__subscribe-all input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #ff4527;
}

.cart-drawer__subscribe-text {
  flex: 1;
}

.cart-drawer__save-tag {
  padding: 5px 9px;
  border-radius: 6px;
  background: #ffd800;
  color: #2d2d2d;
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cart-drawer__note {
  margin: 12px 0 0;
  font-family: var(--font-neutral);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  color: rgba(45, 45, 45, 0.55);
}

.cart-drawer__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 16px 24px;
  border-radius: 18px;
  background: #ff4527;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cart-drawer__checkout:hover,
.cart-drawer__checkout:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 69, 39, 0.34);
}

@media (prefers-reduced-motion: reduce) {
  .cart-drawer__backdrop,
  .cart-drawer__panel {
    transition: none;
  }
}

.site-header__menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-header__menu-button .icon-close {
  display: none;
}

.site-header.is-menu-open .site-header__menu-button .icon-menu {
  display: none;
}

.site-header.is-menu-open .site-header__menu-button .icon-close {
  display: block;
}

/* ============================================================
   SHOP MEGA MENU (desktop)
   ============================================================ */
.shop-menu__backdrop {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  z-index: -1;
  background: rgba(28, 26, 23, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.site-header.is-shop-open .shop-menu__backdrop {
  opacity: 1;
  pointer-events: auto;
}

.shop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #f2f2f2;
  color: #2d2d2d;
  box-shadow: 0 24px 48px rgba(28, 26, 23, 0.16);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.shop-menu[hidden] {
  display: none;
}

.shop-menu.is-open {
  opacity: 1;
  transform: translateY(0);
}

.shop-menu__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(200px, 0.9fr) minmax(0, 2.1fr);
  gap: clamp(32px, 3.5vw, 72px);
  padding: 44px 56px 52px;
}

.shop-menu__col + .shop-menu__col,
.shop-menu__featured {
  padding-left: clamp(32px, 3.5vw, 72px);
  border-left: 1px solid rgba(45, 45, 45, 0.1);
}

.shop-menu__eyebrow {
  margin: 0 0 20px;
  font-family: var(--font-secondary);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(45, 45, 45, 0.45);
}

.shop-menu__sauces,
.shop-menu__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-menu__sauces a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
  transition: color 160ms ease, transform 160ms ease;
}

.shop-menu__sauces a:hover,
.shop-menu__sauces a:focus-visible {
  color: #ff4527;
  transform: translateX(4px);
}

.shop-menu__sauces .heat-dots {
  margin-right: 0;
  transform: translateY(1px);
}

.shop-menu__links a {
  display: inline-block;
  padding: 8px 0;
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(45, 45, 45, 0.82);
  transition: color 160ms ease, transform 160ms ease;
}

.shop-menu__links a:hover,
.shop-menu__links a:focus-visible {
  color: #ff4527;
  transform: translateX(4px);
}

.shop-menu__featured-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.shop-menu__featured-head .shop-menu__eyebrow {
  margin-bottom: 0;
}

.shop-menu__shop-all {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ff4527;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.shop-menu__shop-all:hover,
.shop-menu__shop-all:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255, 69, 39, 0.32);
}

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

.shop-menu__card-media {
  display: block;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}

.shop-menu__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.shop-menu__card:hover .shop-menu__card-media img,
.shop-menu__card:focus-visible .shop-menu__card-media img {
  transform: scale(1.05);
}

.shop-menu__card-name {
  display: block;
  margin-top: 12px;
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.shop-menu__card:hover .shop-menu__card-name {
  color: #ff4527;
}

.shop-menu__card-price {
  display: block;
  margin-top: 3px;
  font-family: var(--font-neutral);
  font-size: 12.5px;
  color: rgba(45, 45, 45, 0.55);
}

@media (max-width: 989px) {
  .shop-menu,
  .shop-menu__backdrop {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-menu,
  .shop-menu__backdrop {
    transition: none;
  }
}

/* ============================================================
   MOBILE MENU (full-screen takeover)
   ============================================================ */
.site-header__mobile-menu {
  position: fixed;
  inset: 0;
  z-index: -1;
  padding-top: calc(var(--header-height) + 4px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #f4f1ea;
  color: #2d2d2d;
}

.site-header__mobile-menu:not([hidden]) {
  animation: mobileMenuIn 260ms ease;
}

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header__mobile-menu:not([hidden]) {
    animation: none;
  }
}

@media (min-width: 990px) {
  .site-header__mobile-menu {
    display: none !important;
  }
}

.mobile-menu__shop {
  padding: 10px 24px 26px;
  border-bottom: 1px solid rgba(45, 45, 45, 0.12);
}

.mobile-menu__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0 16px;
}

.mobile-menu__card-media {
  display: block;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  background: #e9e5dc;
}

.mobile-menu__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-menu__card-name {
  display: block;
  margin-top: 8px;
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu__shop-all {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 16px;
  background: #ff4527;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu__links {
  display: block;
  padding: 4px 24px 48px;
}

.mobile-menu__links a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
  border-bottom: 1px solid rgba(45, 45, 45, 0.12);
}

.hero-video {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #111111;
  color: var(--color-white);
}

.hero-video__track,
.hero-video__slide,
.hero-video__media,
.hero-video__media picture,
.hero-video__placeholder {
  position: absolute;
  inset: 0;
}

.hero-video__slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.hero-video__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-video__video,
.hero-video__image,
.hero-video__placeholder svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video__placeholder {
  background: #24312d;
}

.hero-video__placeholder svg {
  opacity: 0.32;
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.22) 100%),
    rgba(0, 0, 0, var(--hero-overlay-opacity));
}

.hero-video__content {
  position: absolute;
  z-index: 2;
  top: auto;
  bottom: 72px;
  width: 100%;
  transform: none;
  padding-top: var(--header-height);
}

.hero-video__content--left {
  left: 0;
  padding-left: clamp(24px, 6.5vw, 72px);
  padding-right: clamp(24px, 6.5vw, 72px);
  text-align: left;
}

.hero-video__content--center {
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
}

.hero-video__content--right {
  right: 0;
  padding-left: clamp(24px, 6.5vw, 72px);
  padding-right: clamp(24px, 6.5vw, 72px);
  text-align: left;
}

.hero-video__eyebrow {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-video__heading {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.hero-video__content--center .hero-video__heading {
  max-width: none;
  margin-inline: auto;
}

.hero-video__mobile-break {
  display: inline;
}

.hero-video__text {
  max-width: 560px;
  margin-top: 20px;
  font-family: var(--font-neutral);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0;
  text-transform: none;
}

.hero-video__text p {
  margin: 0;
}

.hero-video__buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-video__content--center .hero-video__buttons {
  justify-content: center;
}

.hero-video__content--center .hero-video__text {
  margin-inline: auto;
  max-width: min(92vw, 980px);
}

.hero-video__content--left .hero-video__text {
  max-width: min(92vw, 860px);
}

.hero-video__buttons .button {
  min-width: 220px;
  min-height: 46px;
  padding: 0 24px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.hero-video__buttons .button--primary {
  color: #f2f2f2;
  background: transparent;
  border: 1px solid rgba(242, 242, 242, 0.9);
}

.hero-video__buttons .button--secondary {
  color: #2d2d2d;
  background: #e4e4e4;
  border: 1px solid #f2f2f2;
}

.hero-marquee {
  overflow: hidden;
  color: #ffffff;
  background: #ff4527;
}

.hero-marquee__track {
  display: flex;
  width: max-content;
  animation: heroMarquee 34s linear infinite;
  will-change: transform;
}

.hero-marquee__set {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.hero-marquee__set span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 28px;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-marquee__set span::after {
  content: "";
  position: absolute;
  right: -4px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

@keyframes heroMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-25%, 0, 0);
  }
}

.three-panel-story {
  overflow: hidden;
  padding: clamp(28px, 4vw, 54px) clamp(16px, 3vw, 36px);
  color: var(--three-panel-text, #2d2d2d);
  background: #e4e4e4;
}

.three-panel-story__inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(360px, 1.55fr) minmax(220px, 1fr);
  width: min(100%, 1440px);
  min-height: clamp(430px, 38vw, 620px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
}

.three-panel-story__stats {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 46px);
  color: var(--three-panel-text, #2d2d2d);
  background: var(--three-panel-left-bg, #f4ead6);
}

.three-panel-story__kicker {
  max-width: 12ch;
  margin: 0 0 28px;
  font-family: var(--font-neutral);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 800;
  line-height: 1.12;
}

.three-panel-story__stat {
  padding: clamp(18px, 2vw, 28px) 0;
  border-top: 1px solid rgba(45, 45, 45, 0.18);
}

.three-panel-story__stat:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.three-panel-story__stat strong {
  display: block;
  font-family: var(--font-secondary);
  font-size: clamp(38px, 4vw, 72px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}

.three-panel-story__stat span {
  display: block;
  max-width: 19ch;
  margin-top: 8px;
  font-family: var(--font-neutral);
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 500;
  line-height: 1.2;
}

.three-panel-story__photo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: inherit;
  padding: clamp(28px, 4vw, 52px);
  color: var(--three-panel-center-text, #2d2d2d);
  background: var(--three-panel-center-bg, #d9d8d0);
  text-align: center;
}

.three-panel-story__photo img,
.three-panel-story__photo-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.three-panel-story__photo-placeholder {
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.32), transparent 34%),
    linear-gradient(135deg, rgba(45, 45, 45, 0.08), transparent 46%),
    var(--three-panel-center-bg, #d9d8d0);
}

.three-panel-story__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(217, 216, 208, 0.28);
  pointer-events: none;
}

.three-panel-story__photo-label,
.three-panel-story__note,
.three-panel-story__photo h2 {
  position: relative;
  z-index: 1;
}

.three-panel-story__photo-label {
  position: absolute;
  top: 22px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  font-family: var(--font-neutral);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.1;
  color: rgba(45, 45, 45, 0.58);
  white-space: nowrap;
}

.three-panel-story__photo h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-neutral);
  font-size: clamp(28px, 2.6vw, 46px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.three-panel-story__note {
  position: absolute;
  bottom: 22px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  font-family: var(--font-neutral);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: rgba(45, 45, 45, 0.52);
  white-space: nowrap;
}

.three-panel-story__pattern {
  position: relative;
  display: grid;
  place-items: center;
  min-height: inherit;
  overflow: hidden;
  background-color: var(--three-panel-pattern-bg, #ef9278);
  background-image:
    radial-gradient(ellipse at 0 50%, var(--three-panel-pattern-accent, #b12c26) 0 34%, transparent 35%),
    radial-gradient(ellipse at 100% 50%, rgba(255, 216, 1, 0.5) 0 31%, transparent 32%);
  background-size: 108px 76px;
  background-position: 0 0, 54px 38px;
}

.three-panel-story__pattern span {
  display: inline-block;
  max-width: 11ch;
  font-family: var(--font-neutral);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
}

.manifesto-strip {
  width: 100%;
  background: var(--manifesto-bg, #f2f2f2);
  color: var(--manifesto-text, #2d2d2d);
}

.manifesto-strip__inner {
  padding: clamp(64px, 8vw, 112px) max(14px, calc((100% - 1680px) / 2));
}

.manifesto-strip__header {
  margin-bottom: clamp(32px, 4vw, 48px);
  text-align: center;
}

.manifesto-strip__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manifesto-strip__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
  color: inherit;
}

.manifesto-strip__offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  text-align: left;
}

.manifesto-strip__offer {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  background: #ffffff;
  color: #2d2d2d;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.manifesto-strip__offer:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 45, 45, 0.1);
}

.manifesto-strip__offer-media {
  position: relative;
  display: grid;
  place-items: center;
  margin: 14px 14px 0;
  aspect-ratio: 16 / 10;
  height: auto;
  overflow: hidden;
  border-radius: 12px;
  background: #d9d9d9;
}

.manifesto-strip__offer-media img {
  position: absolute;
  top: 9%;
  left: 9%;
  display: block;
  width: 82%;
  height: 82%;
  object-fit: contain;
  object-position: center center;
  transition: transform 320ms ease;
}

/* the variety-pack render carries its own whitespace, so give it the full panel */
.manifesto-strip__offer:last-child .manifesto-strip__offer-media img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.manifesto-strip__offer:hover .manifesto-strip__offer-media img {
  transform: scale(1.03);
}

.manifesto-strip__offer-sticker {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  border-radius: 999px;
  background: #61b8fe;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.manifesto-strip__offer-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px 26px;
  color: #2d2d2d;
}

.manifesto-strip__offer-copy {
  display: grid;
  gap: 6px;
}

.manifesto-strip__offer h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.manifesto-strip__offer p {
  margin: 0;
}

.manifesto-strip__offer-copy p {
  max-width: 40ch;
  font-family: var(--font-neutral);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(45, 45, 45, 0.75);
}

.manifesto-strip__offer-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2d2d2d;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  transition: background-color 180ms ease, transform 180ms ease;
}

.manifesto-strip__offer:hover .manifesto-strip__offer-arrow {
  background: #ff4527;
  transform: translateX(3px);
}

.manifesto-strip__copy {
  display: grid;
  gap: 24px;
  font-family: var(--font-neutral);
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
}

.manifesto-strip__copy p,
.manifesto-strip__final {
  margin: 0;
}

.manifesto-strip__statement-table {
  width: 100%;
  margin-top: 20px;
  border: 1px solid currentColor;
  font-family: var(--font-neutral);
  text-align: left;
}

.manifesto-strip__statement-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.manifesto-strip__statement-row + .manifesto-strip__statement-row {
  border-top: 1px solid currentColor;
}

.manifesto-strip__statement-row--header {
  background: rgba(45, 45, 45, 0.14);
  font-weight: 700;
}

.manifesto-strip__statement-cell {
  min-width: 0;
  padding: 14px;
  border-right: 1px solid currentColor;
  font-size: 16px;
  line-height: 1.35;
}

.manifesto-strip__statement-cell:last-child {
  border-right: 0;
}

.manifesto-strip__statement-copy {
  display: grid;
  gap: 14px;
  font-size: 13px;
  line-height: 1.35;
}

.manifesto-strip__statement-copy p {
  margin: 0;
}

.manifesto-strip__thumbnails {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
  margin: 16px 0 0;
}

.manifesto-strip__example {
  display: grid;
  gap: 8px;
  text-align: center;
}

.manifesto-strip__example p {
  margin: 0;
  font-size: 13px;
  line-height: 1.1;
}

.manifesto-strip__thumbnail {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #159fe3;
  color: inherit;
  cursor: zoom-in;
  font: 700 13px / 1 var(--font-secondary);
  letter-spacing: 0;
  text-transform: uppercase;
}

.manifesto-strip__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manifesto-strip__thumbnail span {
  opacity: 0.72;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}

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

.image-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: zoom-out;
}

.image-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 92vw);
  max-height: 88vh;
  padding: 14px;
  background: #f2f2f2;
  color: #2d2d2d;
}

.image-modal__dialog img {
  display: block;
  width: 100%;
  max-height: calc(88vh - 28px);
  object-fit: contain;
}

.image-modal__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(560px, 70vh);
  border: 1px solid rgba(45, 45, 45, 0.22);
  background: rgba(45, 45, 45, 0.08);
  font-family: var(--font-secondary);
  font-size: clamp(18px, 3vw, 36px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.image-modal__placeholder[hidden] {
  display: none;
}

.image-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(45, 45, 45, 0.25);
  border-radius: 999px;
  background: #f2f2f2;
  color: #2d2d2d;
  cursor: pointer;
  font: 400 28px / 1 var(--font-neutral);
}

.manifesto-strip__final {
  margin-top: 34px;
  font-family: var(--font-neutral);
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

@media (max-width: 749px) {
  .manifesto-strip__offers {
    grid-template-columns: 1fr;
  }

  .manifesto-strip__offer-media {
    margin: 10px 10px 0;
    height: auto;
  }

  .manifesto-strip__offer-body {
    padding: 18px 18px 22px;
  }

  .manifesto-strip__thumbnails {
    gap: 8px;
  }

  .manifesto-strip__statement-row {
    grid-template-columns: 1fr;
  }

  .manifesto-strip__statement-cell {
    border-right: 0;
    border-top: 1px solid currentColor;
  }

  .manifesto-strip__statement-row--header .manifesto-strip__statement-cell:first-child {
    border-top: 0;
  }

  .manifesto-strip__statement-row:not(.manifesto-strip__statement-row--header) .manifesto-strip__statement-cell:first-child {
    border-top: 0;
  }

  .manifesto-strip__thumbnail {
    font-size: 11px;
  }

  .image-modal {
    padding: 14px;
  }

  .image-modal__dialog {
    width: 94vw;
    padding: 10px;
  }

  .image-modal__close {
    top: 16px;
    right: 16px;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 62px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button--primary {
  color: #050505;
  background: #ffd801;
}

.button--secondary {
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.hero-video__arrow {
  position: absolute;
  z-index: 4;
  top: 55%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  color: #164240;
  background: rgba(255, 255, 255, 0.88);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.hero-video__arrow:hover {
  transform: scale(1.04);
  background: var(--color-white);
}

.hero-video__arrow--previous {
  left: 18px;
}

.hero-video__arrow--previous .icon {
  transform: rotate(180deg);
}

.hero-video__arrow--next {
  right: 18px;
}

.hero-video__dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-video__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255, 255, 255, 0.72);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.hero-video__dot.is-active {
  width: 64px;
  background: var(--color-white);
}

@media (max-width: 989px) {
  :root {
    --header-height: 64px;
  }

  .site-header__inner {
    min-height: var(--header-height);
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 0 24px;
  }

  .site-header__logo {
    font-size: 44px;
  }

  .site-header__logo-image {
    max-width: 116px;
    max-height: 46px;
  }

  .site-header__nav,
  .site-header__account,
  .site-header__util,
  .site-header__icon-link {
    display: none;
  }

  .site-header__actions {
    gap: 14px;
  }

  .site-header__menu-button {
    display: inline-flex;
  }

  .hero-video__content {
    top: auto;
    left: 0;
    right: 0;
    bottom: 56px;
    width: 100%;
    transform: none;
    padding: 0 24px;
  }

  .hero-video__content--center,
  .hero-video__content--right {
    left: 0;
    right: 0;
    text-align: center;
    transform: none;
  }

  .hero-video__content--center .hero-video__heading,
  .hero-video__heading {
    margin-inline: auto;
    font-size: 30px;
    white-space: normal;
  }

  .hero-video__content--left .hero-video__heading {
    margin-inline: 0;
  }

  .hero-video__mobile-break {
    display: block;
  }

  .hero-video__content--center .hero-video__text,
  .hero-video__text {
    max-width: 34ch;
    margin-inline: auto;
    margin-top: 14px;
    font-size: 16px;
  }

  .hero-video__content--left .hero-video__text {
    max-width: 34ch;
    margin-inline: 0;
    text-align: left;
  }

  .hero-video__buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .hero-video__content--left .hero-video__buttons {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
    min-height: 58px;
    padding: 0 22px;
    font-size: 16px;
  }

  .hero-video__buttons .button {
    width: auto;
    min-width: 0;
    min-height: 42px;
    padding: 0 16px;
    font-size: 10px;
  }

  .hero-video__arrow {
    top: 45%;
    width: 40px;
    height: 40px;
  }

  .hero-video__arrow--previous {
    left: -12px;
  }

  .hero-video__arrow--next {
    right: -12px;
  }

  .hero-video__dots {
    bottom: 18px;
  }

  .three-panel-story {
    padding: 20px 14px 32px;
  }

  .three-panel-story__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 8px;
  }

  .three-panel-story__stats {
    padding: 24px;
  }

  .three-panel-story__kicker {
    max-width: none;
    margin-bottom: 18px;
  }

  .three-panel-story__stat {
    padding: 16px 0;
  }

  .three-panel-story__stat strong {
    font-size: 42px;
  }

  .three-panel-story__stat span {
    max-width: 22ch;
  }

  .three-panel-story__photo {
    min-height: 420px;
    padding: 52px 24px;
  }

  .three-panel-story__photo h2 {
    font-size: 30px;
  }

  .three-panel-story__pattern {
    min-height: 240px;
    background-size: 86px 62px;
    background-position: 0 0, 43px 31px;
  }

}

.featured-products {
  color: var(--get-sauce-text, #2d2d2d);
  background: var(--get-sauce-bg, #f2f2f2);
  border-top: 1px solid #2d2d2d;
}

.featured-products__header {
  padding: 48px 24px 36px;
  text-align: center;
}

.featured-products__header .featured-products__eyebrow {
  max-width: none;
  margin: 0 0 14px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-products__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.featured-products__header p {
  max-width: 670px;
  margin: 16px auto 0;
  font-family: var(--font-neutral);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
}

.featured-products__intro-break {
  display: inline;
}

.featured-products__viewport {
  padding: 0 14px 28px;
}

.featured-products__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1680px;
  margin: 0 auto;
}

.featured-products__footer {
  display: flex;
  justify-content: center;
  max-width: 1680px;
  margin: 0 auto;
  padding: 56px 14px;
}

.featured-products__shop-all {
  display: inline-flex;
  width: auto;
  min-width: 230px;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 18px 44px;
  color: #ffffff;
  background: #ff4527;
  border: 0;
  border-radius: 18px;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.featured-products__shop-all:hover,
.featured-products__shop-all:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 69, 39, 0.34);
}

.get-sauce-card {
  display: grid;
  grid-template-areas:
    "media"
    "details";
  min-width: 0;
  border-radius: 8px;
}

.get-sauce-card__media {
  grid-area: media;
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  color: var(--get-sauce-button-text, #2d2d2d);
  background: #e5e5e5;
}

.get-sauce-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.get-sauce-card__spice-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 16px;
  border-radius: 999px;
  color: #2d2d2d;
  background: #f2f2f2;
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

.heat-dots {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-right: 8px;
}

.heat-dots i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(45, 45, 45, 0.22);
}

.heat-dots i.is-lit {
  background: #ff4527;
}

.heat-dots--pretty i.is-lit {
  background: #06b747;
}

.heat-dots--real i.is-lit {
  background: #61b8fe;
}

.heat-dots--extra i.is-lit {
  background: #ff4527;
}

.get-sauce-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(45, 45, 45, 0.08);
  opacity: 0;
  transition: opacity 220ms ease;
}

.get-sauce-card__hover-caption {
  position: absolute;
  top: 0;
  right: auto;
  bottom: 118px;
  left: 50%;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  width: min(68%, 380px);
  padding: clamp(24px, 3vw, 44px) 0;
  color: #2d2d2d;
  font-family: var(--font-primary);
  font-size: clamp(30px, 2.45vw, 48px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.get-sauce-card__button {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  color: #2d2d2d;
  background: #f2f2f2;
  border: 1px solid #2d2d2d;
  border-radius: 18px;
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.get-sauce-card__button-strike {
  margin-left: 7px;
  font-weight: 400;
  text-decoration: line-through;
  opacity: 0.55;
}

.get-sauce-card__button-strike[hidden] {
  display: none;
}

.get-sauce-card__purchase {
  grid-area: media;
  position: relative;
  align-self: end;
  min-width: 0;
  margin: 0 28px 28px;
  z-index: 3;
  filter: drop-shadow(0 8px 18px rgba(45, 45, 45, 0.14));
}

.get-sauce-card__purchase-options {
  position: absolute;
  right: 0;
  bottom: calc(100% - 1px);
  left: 0;
  overflow: hidden;
  color: #2d2d2d;
  background: #f2f2f2;
  border: 1px solid #2d2d2d;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.get-sauce-card__purchase-options > * + * {
  border-top: 1px solid rgba(45, 45, 45, 0.24);
}

.get-sauce-card__purchase-option {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  font-family: var(--font-neutral);
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
}

.get-sauce-card__purchase-option input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: #ff4527;
}

.get-sauce-card__purchase-option strong {
  font-weight: 600;
}

.get-sauce-card__frequency {
  padding: 10px 16px 14px 42px;
  font-family: var(--font-neutral);
  font-size: 13px;
  line-height: 1.2;
}

.get-sauce-card__frequency-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
  margin-top: 9px;
}

.get-sauce-card__frequency-buttons button {
  min-width: 0;
  min-height: 34px;
  padding: 6px 3px;
  color: #2d2d2d;
  background: transparent;
  border: 1px solid rgba(45, 45, 45, 0.3);
  border-radius: 7px;
  font: inherit;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.get-sauce-card__frequency-buttons button:hover {
  border-color: #2d2d2d;
}

.get-sauce-card__frequency-buttons button[aria-pressed="true"] {
  color: #2d2d2d;
  background: #f2f2f2;
  border-color: #2d2d2d;
}

.get-sauce-card__purchase.is-one-time .get-sauce-card__frequency {
  display: none;
}

.get-sauce-card__purchase:has(input[value="one-time"]:checked) .get-sauce-card__frequency,
.get-sauce-card__frequency[hidden] {
  display: none;
}

.get-sauce-card__purchase:hover .get-sauce-card__purchase-options,
.get-sauce-card__purchase:focus-within .get-sauce-card__purchase-options,
.get-sauce-card__purchase.is-open .get-sauce-card__purchase-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.get-sauce-card__purchase:hover .get-sauce-card__button,
.get-sauce-card__purchase:focus-within .get-sauce-card__button,
.get-sauce-card__purchase.is-open .get-sauce-card__button {
  color: #f2f2f2;
  background: #2d2d2d;
  border-radius: 0 0 18px 18px;
}

.get-sauce-card__media:hover img,
.get-sauce-card__media:focus-within img,
.get-sauce-card:has(.get-sauce-card__purchase:hover) .get-sauce-card__media img,
.get-sauce-card:has(.get-sauce-card__purchase:focus-within) .get-sauce-card__media img,
.get-sauce-card:has(.get-sauce-card__purchase.is-open) .get-sauce-card__media img {
  transform: scale(1.03);
}

.get-sauce-card__media:hover .get-sauce-card__overlay,
.get-sauce-card__media:focus-within .get-sauce-card__overlay,
.get-sauce-card:has(.get-sauce-card__purchase:hover) .get-sauce-card__overlay,
.get-sauce-card:has(.get-sauce-card__purchase:focus-within) .get-sauce-card__overlay,
.get-sauce-card:has(.get-sauce-card__purchase.is-open) .get-sauce-card__overlay {
  opacity: 1;
}

@media (min-width: 990px) {
  .get-sauce-card__hover-caption {
    display: flex;
  }

  .get-sauce-card__media:hover .get-sauce-card__overlay,
  .get-sauce-card__media:focus-within .get-sauce-card__overlay {
    background:
      radial-gradient(ellipse at center, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 34%, rgba(242, 239, 235, 0.9) 62%, rgba(200, 202, 199, 0.95) 100%);
    opacity: 1;
  }

  .get-sauce-card__media:hover .get-sauce-card__hover-caption,
  .get-sauce-card__media:focus-within .get-sauce-card__hover-caption {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.get-sauce-card__details {
  grid-area: details;
  padding: 18px 0 0;
  font-family: var(--font-neutral);
  text-align: center;
}

.get-sauce-card__title-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 20px;
}

.get-sauce-card__title-row h3,
.get-sauce-card__title-row span,
.get-sauce-card__details p {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}

.get-sauce-card__title-row h3 {
  font-family: var(--font-primary);
  font-size: 28px;
  line-height: 1.05;
}

.get-sauce-card__title-row span {
  font-family: var(--font-secondary);
}

.get-sauce-card__title-row a {
  color: inherit;
  text-decoration: none;
}

.get-sauce-card__details p {
  margin-top: 8px;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: inherit;
  opacity: 0.78;
}

@media (max-width: 989px) {
  .featured-products__header {
    padding: 38px 20px 28px;
  }

  .featured-products__header h2 {
    font-size: clamp(38px, 9vw, 48px);
  }

  .featured-products__header p {
    max-width: 38ch;
    margin-top: 12px;
    font-size: 15px;
  }

  .featured-products__intro-break {
    display: block;
  }

  .featured-products__viewport {
    overflow-x: auto;
    padding: 0 20px 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .featured-products__viewport::-webkit-scrollbar {
    display: none;
  }

  .featured-products__grid {
    display: flex;
    gap: 14px;
    width: max-content;
    max-width: none;
  }

  .featured-products__footer {
    padding: 24px 20px 48px;
  }

  .featured-products__shop-all {
    width: 100%;
    min-height: 48px;
  }

  .get-sauce-card {
    display: block;
    width: min(82vw, 420px);
    scroll-snap-align: center;
  }

  .get-sauce-card__purchase {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: none;
    margin-top: 14px;
    margin-right: 0;
    margin-left: 0;
    filter: none;
  }

  .get-sauce-card__button {
    width: 100%;
    min-height: 48px;
    font-size: 13px;
  }

  .get-sauce-card__details {
    padding-top: 14px;
  }

  .get-sauce-card__title-row h3 {
    font-size: 22px;
  }

  .get-sauce-card__title-row span {
    font-size: 13px;
  }

  .get-sauce-card__details p {
    font-size: 12px;
  }

  .get-sauce-card__purchase-option {
    font-size: 13px;
  }

  .get-sauce-card__frequency {
    font-size: 11px;
  }

  .get-sauce-card__frequency-buttons button {
    font-size: 11px;
  }

  .get-sauce-card__media {
    display: block;
    overflow: hidden;
  }

  .get-sauce-card__media > img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .get-sauce-card__media > .get-sauce-card__overlay {
    display: none;
  }

  .get-sauce-card__purchase-options {
    position: absolute;
    right: 0;
    bottom: calc(100% - 1px);
    left: 0;
    width: 100%;
    z-index: 1;
    border-radius: 18px 18px 0 0;
  }
}

.product-showcase {
  position: relative;
  overflow: hidden;
  color: var(--product-showcase-text);
  background: var(--product-showcase-bg);
  border-top: 1px solid var(--product-showcase-line);
  border-bottom: 1px solid var(--product-showcase-line);
}

.product-showcase__header {
  display: block;
  padding: 54px 24px 0;
  text-align: center;
}

.product-showcase__header h2 {
  margin: 0;
  color: #2d2d2d;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: lowercase;
}

.product-showcase__heading-mobile {
  display: none;
}

.product-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 480px);
  justify-content: center;
}

.product-showcase__footer {
  display: flex;
  justify-content: center;
  padding: 0 24px 55px;
}

.product-showcase__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 34px;
  color: #2d2d2d;
  border: 1px solid #61b8fe;
  border-radius: 999px;
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: #61b8fe;
}

.product-card {
  width: 480px;
  min-width: 0;
  display: flex;
  justify-content: center;
  min-height: 770px;
  padding: 0;
  text-align: center;
}

.product-card__inner {
  width: min(100%, 449px);
  min-height: 770px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 30px 56px;
  container-type: inline-size;
}

.product-card__media {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 380px;
  margin-bottom: 0;
  overflow: hidden;
}

.product-card__image {
  width: 150%;
  max-width: none;
  display: block;
  height: auto;
  transform-origin: center;
  transition: transform 260ms ease;
}

@media (min-width: 990px) {
  .product-card__image {
    width: 150%;
    max-width: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .product-card__media:hover .product-card__image {
    transform: scale(1.15);
  }
}

.product-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: none;
  aspect-ratio: 0.68;
  color: rgba(45, 45, 45, 0.38);
  background: linear-gradient(145deg, #f05d31, #f9b84f 44%, #0bb747);
  border: 1px solid rgba(45, 45, 45, 0.18);
  border-radius: 22px;
}

.product-card__placeholder span {
  font-family: var(--font-primary);
  font-size: 70px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.86);
}

.product-card__media-top,
.product-card__media-bar {
  position: absolute;
  left: 6%;
  right: 6%;
  display: flex;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}

.product-card__media-top {
  top: 4%;
  justify-content: space-between;
}

.product-card__media-bar {
  bottom: 4%;
  justify-content: center;
  text-align: center;
}

.product-card__badge {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #2d2d2d;
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  flex: 0 0 auto;
  clip-path: polygon(
    30% 0,
    70% 0,
    70% 10%,
    90% 10%,
    90% 30%,
    100% 30%,
    100% 70%,
    90% 70%,
    90% 90%,
    70% 90%,
    70% 100%,
    30% 100%,
    30% 90%,
    10% 90%,
    10% 70%,
    0 70%,
    0 30%,
    10% 30%,
    10% 10%,
    30% 10%
  );
  background: #f2f2f2;
}

.product-card__body {
  width: 100%;
}

.product-card__title {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 24px;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2d2d2d;
}

.product-card__heat {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.product-card__subtitle {
  margin: 10px 0 0;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: none;
}

.product-card__reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  color: var(--color-white);
  font-size: 15px;
  line-height: 1;
}

.product-card__reviews span:first-child {
  color: currentColor;
  letter-spacing: 0.02em;
}

.product-card__size {
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.product-card__packs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.product-card__packs button,
.product-card__add {
  min-height: 42px;
  border: 1px solid var(--product-showcase-line);
  border-radius: 8px;
  line-height: 1;
  text-align: center;
}

.product-card__packs button {
  padding: 0 14px;
  color: var(--product-showcase-text);
  font-family: var(--font-neutral);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  background: transparent;
  cursor: pointer;
}

.product-card__add {
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-card__packs button.is-active {
  color: #f2f2f2;
  background: #2d2d2d;
}

.product-card__purchase-options {
  overflow: hidden;
  margin-top: 16px;
  background: var(--product-showcase-bg);
  border: 1px solid var(--product-showcase-line);
  border-radius: 8px;
}

.product-card__purchase-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 14px;
  color: #050505;
  font-family: var(--font-neutral);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
  cursor: pointer;
}

.product-card__purchase-option + .product-card__purchase-option {
  border-top: 1px solid var(--product-showcase-line);
}

.product-card__purchase-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.product-card__radio {
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #050505;
  border-radius: 999px;
}

.product-card__purchase-option.is-selected .product-card__radio,
.product-card__purchase-option input:checked + .product-card__radio {
  box-shadow: inset 0 0 0 4px var(--product-showcase-bg);
  background: #2d2d2d;
}

.product-card__purchase-price {
  white-space: nowrap;
}

.product-card__subscribe-panel {
  padding: 0 14px 14px;
  text-align: left;
}

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

.product-card__subscribe-panel p {
  margin: 12px 0 10px;
  color: #050505;
  font-family: var(--font-neutral);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

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

.product-card__frequency-options button {
  min-height: 42px;
  padding: 0 10px;
  color: #050505;
  background: transparent;
  border: 1px solid var(--product-showcase-line);
  border-radius: 8px;
  font-family: var(--font-neutral);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.product-card__frequency-options button.is-active {
  color: var(--color-white);
  background: #050505;
}

.product-card__add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  color: var(--color-white);
  background: #2d2d2d;
}

.shuffleboard-page {
  min-height: 100vh;
  background: var(--color-paper);
}

.shuffleboard-header.site-header {
  color: var(--color-ink);
  background: var(--color-paper);
}

.shuffleboard-main {
  padding-top: var(--header-height);
  overflow: clip;
}

.shuffleboard-intro {
  display: grid;
  gap: 18px;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 72px) 18px;
}

.shuffleboard-kicker {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shuffleboard-intro h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(54px, 9vw, 132px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0;
}

.shuffleboard-deck {
  max-width: 460px;
  margin: 0;
  font-family: var(--font-neutral);
  font-size: 16px;
  line-height: 1.45;
}

.shuffleboard-canvas {
  position: relative;
  min-height: 2900px;
  margin-top: 12px;
  color: var(--color-ink);
  background:
    linear-gradient(var(--color-paper), var(--color-paper)) padding-box,
    repeating-linear-gradient(90deg, transparent 0 35px, rgba(45, 45, 45, 0.025) 35px 36px) border-box;
  border-top: 1px solid rgba(45, 45, 45, 0.16);
  border-bottom: 1px solid rgba(45, 45, 45, 0.16);
}

.moodboard-item {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 1;
  max-width: min(82vw, 420px);
  transform: translate3d(var(--drag-x, 0px), var(--drag-y, 0px), 0) rotate(var(--drag-rotate, var(--rotate, 0deg)));
  will-change: transform;
}

.moodboard-item--image {
  width: var(--w);
  margin: 0;
  background: transparent;
  cursor: grab;
  touch-action: none;
  user-select: none;
  transition: transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.moodboard-item--image.is-dragging {
  cursor: grabbing;
  transition-duration: 0ms;
}

.moodboard-item--image img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(45, 45, 45, 0.18);
  background: var(--color-paper);
  pointer-events: none;
}

.moodboard-item--text,
.moodboard-item--note,
.moodboard-item--credit,
.moodboard-item--label {
  pointer-events: none;
}

.moodboard-item--text p {
  max-width: 390px;
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(30px, 4vw, 58px);
  line-height: 0.94;
}

.moodboard-item--note {
  width: 270px;
}

.moodboard-item--note h2 {
  margin: 0 0 12px;
  font-family: var(--font-secondary);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.moodboard-item--note p,
.moodboard-item--credit p {
  margin: 0;
  font-family: var(--font-neutral);
  font-size: 14px;
  line-height: 1.38;
}

.moodboard-item--label {
  display: grid;
  gap: 9px;
  font-family: var(--font-secondary);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.moodboard-item--label span {
  display: block;
}

.moodboard-item--credit {
  width: 190px;
}

.moodboard-item--i p {
  max-width: 460px;
  font-size: clamp(42px, 6vw, 86px);
}

.blank-canvas-section {
  position: relative;
  width: 100%;
  height: var(--blank-canvas-height, 400px);
  overflow: hidden;
  background: var(--blank-canvas-bg, #f2f2f2);
  border-bottom: 1px solid var(--color-ink);
}

.blank-canvas-section--postcards {
  isolation: isolate;
}

.postcard-values__heading {
  position: absolute;
  top: 54px;
  left: 50%;
  z-index: 85;
  margin: 0;
  color: #2d2d2d;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
  text-align: center;
  text-transform: lowercase;
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(-50%);
}

.postcard-values__heading-contrast {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: #ffffff;
  pointer-events: none;
  -webkit-mask-image: var(--overlap-mask-image, linear-gradient(transparent, transparent));
  mask-image: var(--overlap-mask-image, linear-gradient(transparent, transparent));
  -webkit-mask-position: var(--overlap-mask-position, 0 0);
  mask-position: var(--overlap-mask-position, 0 0);
  -webkit-mask-size: var(--overlap-mask-size, 0 0);
  mask-size: var(--overlap-mask-size, 0 0);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.homepage-postcard {
  max-width: min(72vw, 300px);
  background: transparent;
}

.homepage-value-note {
  position: absolute;
  z-index: 80;
  width: min(19vw, 245px);
  color: var(--color-ink);
  isolation: isolate;
  pointer-events: none;
}

.homepage-value-note__contrast {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: #ffffff;
  pointer-events: none;
  -webkit-mask-image: var(--overlap-mask-image, linear-gradient(transparent, transparent));
  mask-image: var(--overlap-mask-image, linear-gradient(transparent, transparent));
  -webkit-mask-position: var(--overlap-mask-position, 0 0);
  mask-position: var(--overlap-mask-position, 0 0);
  -webkit-mask-size: var(--overlap-mask-size, 0 0);
  mask-size: var(--overlap-mask-size, 0 0);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.homepage-value-note h3 {
  margin: 0 0 8px;
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.homepage-value-note p {
  margin: 0;
  font-family: var(--font-neutral);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.28;
}

.homepage-value-note--flavor {
  left: 7vw;
  top: 90px;
  transform: rotate(-2deg);
}

.homepage-value-note--weird {
  right: 9vw;
  top: 210px;
  transform: rotate(1.5deg);
}

.homepage-value-note--fresh {
  left: 39vw;
  bottom: 92px;
  transform: rotate(-1deg);
}

.homepage-value-note--everything {
  right: 25vw;
  bottom: 240px;
  transform: rotate(2deg);
}

.homepage-story-button {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(18px, 3vw, 42px);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  color: #2d2d2d;
  border: 1px solid #61b8fe;
  border-radius: 999px;
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #61b8fe;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.homepage-story-button:hover {
  transform: translateY(-1px);
}

.pack-split-features {
  color: var(--pack-split-text, #2d2d2d);
  background: var(--pack-split-bg, #f7f2e8);
  border-top: 1px solid var(--color-ink);
  border-bottom: 1px solid var(--color-ink);
}

.pack-split-features__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: min(760px, 74vw);
}

.pack-split-features__row + .pack-split-features__row {
  border-top: 1px solid currentColor;
}

.pack-split-features__row--reverse .pack-split-features__media {
  order: 2;
}

.pack-split-features__media,
.pack-split-features__content {
  min-width: 0;
}

.pack-split-features__media {
  overflow: hidden;
  padding: 0;
  background: #f2f2f2;
}

.pack-split-features__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.pack-split-features__content {
  display: grid;
  align-items: center;
  padding: clamp(42px, 6vw, 92px);
  background: var(--pack-split-bg, #f7f2e8);
  border-left: 1px solid currentColor;
}

.pack-split-features__row--reverse .pack-split-features__content {
  border-right: 1px solid currentColor;
  border-left: 0;
}

.pack-split-features__copy {
  width: min(100%, 620px);
  margin-inline: auto;
}

.pack-split-features__eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-neutral);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.pack-split-features h2 {
  margin: 0 0 24px;
  font-family: var(--font-primary);
  font-size: clamp(38px, 4.2vw, 70px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.pack-split-features__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 330px);
  min-height: 46px;
  margin-bottom: 30px;
  padding: 0 28px;
  color: #2d2d2d;
  background: var(--pack-split-accent, #ffd801);
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.pack-split-features__body {
  max-width: 620px;
  margin: 0 0 34px;
  font-family: var(--font-neutral);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.pack-split-features__list h3 {
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(45, 45, 45, 0.48);
  font-family: var(--font-neutral);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.pack-split-features__list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pack-split-features__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(45, 45, 45, 0.42);
  font-family: var(--font-neutral);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.build-pack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 100%;
  min-height: 690px;
  max-height: 1000px;
  color: #f2f2f2;
  background: #2d2d2d;
  border-bottom: 1px solid var(--color-ink);
}

.build-pack__media {
  min-height: 690px;
  max-height: 1000px;
  background: #111111;
}

.build-pack__image {
  width: 100%;
  height: 100%;
}

.build-pack__image[hidden],
.build-pack__state[hidden] {
  display: none;
}

.build-pack__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.build-pack__panel {
  display: grid;
  place-items: center;
  min-height: 690px;
  max-height: 1000px;
  padding: clamp(36px, 4vw, 64px);
  color: #f2f2f2;
  background: #2d2d2d;
}

.build-pack__content {
  width: 100%;
  max-width: 640px;
  display: grid;
  justify-items: center;
  justify-self: center;
  text-align: center;
}

.build-pack__header {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 0 0 38px;
  text-align: center;
}

.build-pack__header h2 {
  margin: 0;
  color: #f2f2f2;
  font-family: var(--font-secondary);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.build-pack__header p {
  max-width: 540px;
  margin: 0;
  color: rgba(242, 242, 242, 0.78);
  font-family: var(--font-neutral);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.build-pack__toggle {
  display: inline-flex;
  gap: 2px;
  padding: 4px;
  background: rgba(242, 242, 242, 0.1);
  border-radius: 999px;
}

.build-pack__toggle--pack {
  margin-bottom: 38px;
}

.build-pack__toggle--size {
  margin: 8px 0 30px;
}

.build-pack__toggle button {
  min-width: 82px;
  min-height: 38px;
  padding: 0 16px;
  color: rgba(242, 242, 242, 0.62);
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-family: var(--font-neutral);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.build-pack__toggle--pack button {
  min-width: 118px;
}

.build-pack__toggle button.is-active {
  color: var(--color-white);
  border-color: transparent;
  box-shadow: inset 0 0 0 2px #61b8fe;
}

.build-pack__state {
  width: 100%;
  display: grid;
  justify-items: center;
  justify-self: center;
}

.build-pack__eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-neutral);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.12em;
}

.build-pack__subhead {
  width: min(100%, 620px);
  margin: 0 0 24px;
  font-family: var(--font-primary);
  font-size: 36px;
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-align: center;
}

.build-pack ul {
  display: grid;
  gap: 10px;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
  font-family: var(--font-neutral);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.18;
  justify-self: center;
  width: max-content;
  max-width: 100%;
  text-align: left;
}

.build-pack li {
  position: relative;
  padding-left: 18px;
}

.build-pack li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 999px;
}

.build-pack__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 34px;
  color: #2d2d2d;
  background: #f2f2f2;
  border: 1px solid #f2f2f2;
  border-radius: 999px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.always-reach {
  color: var(--always-reach-text, #2d2d2d);
  background: var(--always-reach-bg, #f2f2f2);
}

.always-reach__inner {
  width: min(100%, 1708px);
  margin: 0 auto;
  padding: 58px 14px 108px;
}

.always-reach__header {
  margin-bottom: 48px;
  text-align: center;
}

.always-reach__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: none;
}

.always-reach__header h2 span {
  display: inline;
}

@media (min-width: 1206px) {
  .always-reach__header h2 span {
    display: block;
  }
}

.always-reach__layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.always-reach__figure {
  margin: 0;
}

.always-reach__figure--counter,
.always-reach__figure--carry,
.always-reach__figure--pocket {
  grid-column: auto;
  grid-row: auto;
  align-self: start;
  margin-top: 0;
}

.always-reach__text-callout {
  grid-column: 1 / -1;
  align-self: start;
  width: min(100%, 860px);
  margin: clamp(40px, 5vw, 72px) auto 0;
  text-align: center;
}

.always-reach__text-callout p {
  margin: 0;
  color: #2d2d2d;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
  white-space: nowrap;
}

.always-reach__media {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #e6e6e6;
}

.always-reach__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 320ms ease;
}

.always-reach__figure:hover .always-reach__media img {
  transform: scale(1.04);
}

.always-reach figcaption {
  max-width: 44ch;
  margin-right: auto;
  margin-left: auto;
  margin-top: 18px;
  font-family: var(--font-secondary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.customer-reviews-marquee {
  overflow: hidden;
  padding: 72px 0 74px;
  color: #2d2d2d;
  background: #f2f2f2;
}

.customer-reviews-marquee__header {
  max-width: 980px;
  margin: 0 auto clamp(36px, 4vw, 52px);
  padding: 0 24px;
  text-align: center;
}

.customer-reviews-marquee__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.customer-reviews-marquee__header h2 {
  max-width: 24ch;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 46px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.customer-reviews-marquee__viewport {
  overflow: hidden;
  scrollbar-width: none;
}

.customer-reviews-marquee__viewport::-webkit-scrollbar {
  display: none;
}

.customer-reviews-marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 0 clamp(24px, 4vw, 52px);
  animation: customerReviewsMarquee 64s linear infinite;
  will-change: transform;
}

.customer-reviews-marquee__track:has(.customer-review-card:hover),
.customer-reviews-marquee__track:has(.customer-review-card:focus-within) {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .customer-reviews-marquee__track {
    animation: none;
  }

  .customer-reviews-marquee__viewport {
    overflow-x: auto;
  }
}

.customer-reviews-marquee__set {
  display: flex;
  gap: 16px;
}

.customer-review-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 clamp(320px, 27vw, 430px);
  min-height: 240px;
  margin: 0;
  padding: 30px 32px 28px;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  background: #ffffff;
  text-align: left;
}

.customer-review-card__quote {
  max-width: 26ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(19px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.customer-review-card__author {
  display: grid;
  gap: 2px;
  margin-top: auto;
  padding-top: 24px;
}

.customer-review-card__author strong {
  font-family: var(--font-neutral);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.customer-review-card__author span {
  font-family: var(--font-neutral);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(45, 45, 45, 0.6);
}

@keyframes customerReviewsMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 16px), 0, 0);
  }
}

.our-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 88px);
  align-items: center;
  padding: clamp(32px, 5vw, 72px) max(14px, calc((100% - 1680px) / 2)) clamp(64px, 7vw, 108px);
  color: #2d2d2d;
  background: #ffffff;
}

.our-story__media {
  aspect-ratio: 618 / 660;
  height: auto;
  min-height: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #dedede;
}

.our-story__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
}

.our-story__content {
  display: grid;
  align-content: center;
  max-width: 600px;
  padding: 0;
}

.our-story__eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.our-story h2 {
  margin: 0;
  font-family: var(--font-display);
  max-width: 100%;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.our-story h2 span {
  display: block;
  white-space: normal;
}

.our-story__copy {
  display: grid;
  gap: 16px;
  max-width: 56ch;
  margin-top: 24px;
  font-family: var(--font-neutral);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

.our-story__copy p {
  margin: 0;
}

.our-story__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 48px;
  margin-top: 30px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #2d2d2d;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.our-story__button:hover,
.our-story__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(45, 45, 45, 0.24);
}

.difference {
  padding: clamp(56px, 7vw, 96px) max(14px, calc((100% - 1680px) / 2)) clamp(64px, 8vw, 108px);
  color: #2d2d2d;
  background: #ffffff;
}

.difference__header {
  margin-bottom: clamp(32px, 4vw, 48px);
  text-align: center;
}

.difference__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.difference__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 48px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.difference__table {
  max-width: 1080px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
}

.difference__row {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

.difference__row + .difference__row {
  border-top: 1px solid #e6e6e6;
}

.difference__row > div {
  padding: 22px 36px;
  font-family: var(--font-neutral);
  font-size: 17px;
  line-height: 1.35;
}

.difference__row > div:nth-child(2) {
  text-align: center;
  background: rgba(255, 69, 39, 0.06);
}

.difference__row > div:nth-child(3) {
  text-align: center;
}

.difference__row--head > div {
  padding-top: 26px;
  padding-bottom: 26px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
}

.difference__row--head > div:nth-child(2) {
  color: #ff4527;
}

.difference__row--head > div:nth-child(3) {
  color: #8a8a8a;
}

.difference__check,
.difference__x {
  display: inline-flex;
}

.difference__check svg,
.difference__x svg {
  display: block;
  width: 20px;
  height: 20px;
}

.difference__check {
  color: #ff4527;
}

.difference__x {
  color: #c7c7c7;
}

.difference__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 40px);
}

.difference__button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 18px 36px;
  color: #ffffff;
  background: #ff4527;
  border-radius: 18px;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease;
}

.difference__button:hover,
.difference__button:focus-visible {
  color: #2d2d2d;
  background: #ffd800;
}

@media (max-width: 989px) {
  .difference__row > div {
    padding: 14px 16px;
    font-size: 14px;
  }

  .difference__row--head > div {
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 19px;
  }
}

.product-showcase__arrow {
  display: none;
}

.product-showcase__dots {
  display: none;
}

@media (max-width: 1330px) {
  .product-showcase__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-showcase__viewport::-webkit-scrollbar {
    display: none;
  }

  .product-showcase__grid {
    display: flex;
    justify-content: flex-start;
  }

  .product-card {
    width: auto;
    scroll-snap-align: start;
  }

  .product-showcase__arrow {
    position: absolute;
    z-index: 3;
    top: 430px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 46px;
    padding: 0;
    color: var(--color-white);
    background: #2d2d2d;
    border: 0;
    box-shadow: 0 1px 2px rgba(45, 45, 45, 0.1);
    cursor: pointer;
    transition: opacity 160ms ease, visibility 160ms ease;
  }

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

  .product-showcase__arrow span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-neutral);
    font-size: 30px;
    font-weight: 400;
    line-height: 0;
    transform: translateY(-1px);
  }

  .product-showcase__arrow--previous {
    left: -18px;
    border-radius: 0 999px 999px 0;
  }

  .product-showcase__arrow--previous span {
    padding-left: 12px;
  }

  .product-showcase__arrow--next {
    right: -18px;
    border-radius: 999px 0 0 999px;
  }

  .product-showcase__arrow--next span {
    padding-right: 12px;
  }
}

@media (min-width: 990px) and (max-width: 1330px) {
  .product-card {
    flex: 0 0 50%;
    min-height: 770px;
  }

  .product-card__inner {
    width: min(100%, 480px);
  }
}

@media (max-width: 989px) {
  .pack-split-features__row,
  .pack-split-features__row--reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .pack-split-features__row--reverse .pack-split-features__media {
    order: 0;
  }

  .pack-split-features__media {
    min-height: 380px;
    padding: 0;
  }

  .pack-split-features__media img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
  }

  .pack-split-features__content,
  .pack-split-features__row--reverse .pack-split-features__content {
    border-right: 0;
    border-left: 0;
    border-top: 1px solid currentColor;
    padding: 44px 24px 58px;
  }

  .pack-split-features__copy {
    width: 100%;
  }

  .pack-split-features h2 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .pack-split-features__body,
  .pack-split-features__list li {
    font-size: 15px;
  }

  .pack-split-features__button {
    width: 100%;
    max-width: 360px;
  }

  .build-pack {
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: none;
    overflow: hidden;
  }

  .build-pack__media {
    min-height: 0;
    max-height: none;
    height: var(--build-pack-mobile-panel-height, min(62vw, 340px));
  }

  .build-pack__panel {
    min-height: 0;
    max-height: none;
    width: 100%;
    padding: 58px 18px 72px;
  }

  .build-pack__content {
    width: 100%;
    max-width: 454px;
    min-width: 0;
    justify-items: center;
    text-align: center;
  }

  .build-pack__state {
    min-width: 0;
  }

  .build-pack__toggle {
    margin-bottom: 36px;
  }

  .build-pack__eyebrow {
    margin-bottom: 16px;
    font-size: 15px;
  }

  .build-pack__header {
    margin-bottom: 34px;
  }

  .build-pack__header h2 {
    font-size: clamp(18px, 2vw, 26px);
  }

  .build-pack__header p {
    max-width: 34ch;
    font-size: 14px;
  }

  .build-pack__subhead {
    margin-bottom: 20px;
    font-size: 36px;
  }

  .build-pack ul {
    justify-items: start;
    width: max-content;
    max-width: 100%;
    margin-bottom: 34px;
    text-align: left;
    font-size: 14px;
  }

  .build-pack__button {
    max-width: 100%;
    min-height: 52px;
    padding-inline: 28px;
    font-size: 12px;
    white-space: nowrap;
  }

  .always-reach__inner {
    padding: 44px 20px 82px;
  }

  .always-reach__header {
    margin-bottom: 38px;
  }

  .always-reach__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 72px;
    min-height: 0;
  }

  .always-reach__figure--counter,
  .always-reach__figure--carry,
  .always-reach__figure--pocket,
  .always-reach__text-callout {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    margin: 0;
  }

  .always-reach__figure--counter {
    justify-self: stretch;
  }

  .always-reach__text-callout p {
    font-size: clamp(30px, 9vw, 40px);
    white-space: normal;
  }

  .always-reach__figure--carry {
    justify-self: stretch;
  }

  .product-showcase {
    border-top-width: 1px;
    min-height: clamp(720px, calc(100svh - var(--header-height)), 820px);
  }

  .product-showcase__header {
    display: block;
    padding: 28px 24px 4px;
    text-align: center;
  }

  .product-showcase__header h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: 0;
    text-transform: lowercase;
  }

  .product-showcase__heading-desktop {
    display: none;
  }

  .product-showcase__heading-mobile {
    display: inline;
  }

  .product-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    min-height: auto;
    padding: 0 24px 18px;
    border-right: 0;
  }

  .product-showcase__footer {
    padding: 22px 24px 48px;
  }

  .product-card__inner {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0;
    container-type: normal;
  }

  .product-card__media {
    width: 100%;
    min-height: auto;
    margin-bottom: 0;
  }

  .product-card__badge {
    width: 28px;
    height: 28px;
    font-size: 15px;
  }

  .product-card__image {
    width: 150%;
    height: auto;
    transform: translateY(-32px);
  }

  .product-card__placeholder {
    width: 100%;
    max-width: none;
  }

  .product-card__body {
    width: 100%;
  }

  .product-card__title {
    font-size: clamp(20px, 5.4vw, 26px);
  }

  .product-card__subtitle {
    margin-top: 6px;
    font-size: clamp(18px, 5vw, 24px);
  }

  .product-card__reviews {
    gap: 8px;
    font-size: 13px;
  }

  .product-card__packs {
    gap: 12px;
    margin-top: 16px;
  }

  .product-card__packs button {
    min-height: 46px;
    font-size: 13px;
  }

  .product-card__add {
    min-height: 56px;
    margin-top: 18px;
    font-size: 15px;
  }

  .product-card__purchase-options {
    margin-top: 16px;
  }

  .product-card__purchase-option {
    min-height: 48px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .product-card__subscribe-panel {
    padding: 0 12px 12px;
  }

  .product-card__frequency-options {
    gap: 8px;
  }

  .product-card__frequency-options button {
    min-height: 38px;
    padding-inline: 6px;
    font-size: 11px;
  }

  .product-showcase__arrow {
    top: calc(74px + ((100vw - 48px) * 0.713));
  }

  .product-showcase__arrow span {
    font-size: 30px;
  }

  .product-showcase__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 2px 24px 22px;
  }

  .product-showcase__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    background: rgba(45, 45, 45, 0.28);
    border: 0;
    border-radius: 999px;
  }

  .product-showcase__dot.is-active {
    width: 28px;
    background: #2d2d2d;
  }
}

@media (min-width: 990px) and (max-width: 1330px) {
  .product-card {
    padding-inline: 0;
  }
}

@media (max-width: 479px) {
  .build-pack__media {
    height: var(--build-pack-mobile-panel-height, 72vw);
    max-height: none;
  }

  .build-pack__panel {
    padding: 52px 16px 88px;
  }

  .build-pack__toggle {
    margin-bottom: 34px;
  }

  .build-pack__toggle button {
    min-width: 76px;
    min-height: 40px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .build-pack__header {
    margin-bottom: 32px;
  }

  .build-pack__header h2 {
    font-size: clamp(18px, 2vw, 26px);
  }

  .build-pack__header p {
    font-size: 13px;
  }

  .build-pack__subhead {
    margin-bottom: 18px;
    font-size: 36px;
    line-height: 0.95;
  }

  .build-pack ul {
    width: min(100%, 330px);
    justify-self: center;
    margin-bottom: 30px;
    font-size: 14px;
  }

  .build-pack__button {
    width: 100%;
    min-height: 52px;
    padding-inline: 16px;
    font-size: 12px;
  }

  .always-reach__inner {
    padding: 38px 20px 72px;
  }

  .always-reach__layout {
    gap: 56px;
  }

  .always-reach__figure--counter,
  .always-reach__figure--carry,
  .always-reach__figure--pocket,
  .always-reach__text-callout {
    width: 100%;
  }

  .always-reach figcaption {
    margin-top: 10px;
    font-size: 12px;
  }

  .product-showcase {
    min-height: clamp(700px, calc(100svh - var(--header-height)), 800px);
  }

  .product-showcase__header {
    padding-top: 30px;
  }

  .product-card {
    padding-inline: 20px;
  }

  .product-showcase__arrow {
    top: calc(70px + ((100vw - 40px) * 0.713));
  }

  .product-card__title {
    font-size: 21px;
  }

  .product-card__subtitle {
    font-size: 20px;
  }

  .product-card__reviews {
    font-size: 12px;
  }

  .product-card__packs {
    gap: 12px;
  }

  .product-card__packs button {
    min-height: 44px;
    font-size: 12px;
  }

  .product-card__add {
    min-height: 54px;
    font-size: 17px;
  }

  .product-card__purchase-option {
    min-height: 46px;
    gap: 10px;
    font-size: 11px;
  }

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

@media (max-width: 479px) {
  .site-header__inner {
    padding-inline: 20px;
  }

  .site-header__actions {
    gap: 12px;
  }

  .hero-video__content {
    bottom: 50px;
    padding-inline: 20px;
  }

  .hero-video__eyebrow {
    font-size: 12px;
  }
}

@media (max-width: 749px) {
  .shuffleboard-main {
    padding-top: 74px;
  }

  .shuffleboard-intro {
    gap: 14px;
    padding: 34px 20px 10px;
  }

  .shuffleboard-intro h1 {
    font-size: 52px;
    line-height: 0.9;
  }

  .shuffleboard-deck {
    max-width: 310px;
    font-size: 14px;
  }

  .shuffleboard-canvas {
    min-height: 2600px;
    margin-top: 18px;
  }

  .moodboard-item {
    max-width: 86vw;
  }

  .homepage-postcard {
    max-width: 42vw;
  }

  .blank-canvas-section--postcards {
    height: 1100px;
  }

  .postcard-values__heading {
    top: 34px;
    width: calc(100% - 48px);
    font-size: 40px;
    white-space: normal;
  }

  .homepage-value-note {
    width: 142px;
  }

  .homepage-value-note h3 {
    margin-bottom: 6px;
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  .homepage-value-note p {
    font-size: 10.5px;
    line-height: 1.24;
  }

  .homepage-value-note--flavor {
    left: 7vw;
    top: 150px;
    transform: rotate(-3deg);
  }

  .homepage-value-note--weird {
    right: 5vw;
    top: 286px;
    transform: rotate(2deg);
  }

  .homepage-value-note--fresh {
    left: auto;
    right: 7vw;
    bottom: 352px;
    transform: rotate(1.5deg);
  }

  .homepage-value-note--everything {
    right: auto;
    left: 9vw;
    bottom: 568px;
    transform: rotate(-2deg);
  }

  .homepage-story-button {
    left: 50%;
    right: auto;
    bottom: 48px;
    min-height: 54px;
    padding: 0 34px;
    font-size: 15px;
    transform: translateX(-50%);
  }

  .homepage-story-button:hover {
    transform: translateX(-50%) translateY(-1px);
  }

  .moodboard-item--a {
    --x: 7vw !important;
    --y: 62px !important;
    --w: 190px !important;
  }

  .moodboard-item--quote {
    --x: 34vw !important;
    --y: 250px !important;
  }

  .moodboard-item--b {
    --x: 55vw !important;
    --y: 390px !important;
    --w: 128px !important;
  }

  .moodboard-item--c {
    --x: 10vw !important;
    --y: 520px !important;
  }

  .moodboard-item--d {
    --x: 28vw !important;
    --y: 660px !important;
    --w: 235px !important;
  }

  .moodboard-item--e {
    --x: 8vw !important;
    --y: 930px !important;
    width: 240px;
  }

  .moodboard-item--f {
    --x: 60vw !important;
    --y: 1010px !important;
    --w: 118px !important;
  }

  .moodboard-item--g {
    --x: 12vw !important;
    --y: 1190px !important;
  }

  .moodboard-item--h {
    --x: 46vw !important;
    --y: 1260px !important;
    --w: 190px !important;
  }

  .moodboard-item--i {
    --x: 8vw !important;
    --y: 1450px !important;
  }

  .moodboard-item--j {
    display: none;
  }

  .moodboard-item--text p {
    max-width: 240px;
    font-size: 30px;
  }

.moodboard-item--i p {
    max-width: 300px;
    font-size: 44px;
  }
}

.site-footer {
  color: var(--footer-text, #2d2d2d);
  background: var(--footer-bg, #f2f2f2);
  border-top: 1px solid var(--footer-line, #2d2d2d);
  font-family: var(--font-neutral);
}

.recipe-carousel {
  padding: 54px max(14px, calc((100% - 1680px) / 2)) 58px;
  color: #2d2d2d;
  background: #ffffff;
}

.recipe-carousel__header {
  margin-bottom: 34px;
  text-align: center;
}

.recipe-carousel__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recipe-carousel__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

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

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

.recipe-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.recipe-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: #e5e5e5;
  border-radius: 18px;
}

.recipe-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.recipe-card__link:hover .recipe-card__image img,
.recipe-card__link:focus-visible .recipe-card__image img {
  transform: scale(1.04);
}

.recipe-card__row {
  margin-top: 14px;
}

.recipe-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
}

.recipe-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-top: 10px;
}

.recipe-card__time {
  font-family: var(--font-neutral);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: rgba(45, 45, 45, 0.6);
}

.recipe-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #f2f2f2;
  color: #2d2d2d;
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recipe-carousel__dots {
  display: none;
}

.social-carousel {
  --social-card-width: clamp(250px, 21vw, 324px);
  --social-card-media-height: clamp(380px, 34vw, 520px);
  color: #2d2d2d;
  background: #f2f2f2;
  overflow: hidden;
}

.social-carousel__header {
  padding: 52px 24px 34px;
  text-align: center;
}

.social-carousel__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-carousel__header h2 {
  margin: 0;
  color: #2d2d2d;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 48px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

.social-carousel__follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 20px;
  padding: 12px 26px;
  border-radius: 999px;
  background: #2d2d2d;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color 160ms ease;
}

.social-carousel__follow:hover,
.social-carousel__follow:focus-visible {
  background: #ff4527;
}

.social-carousel__viewport {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: calc((100vw - var(--social-card-width)) / 2);
  scrollbar-width: none;
}

.social-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.social-carousel__track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  padding: 30px max(18px, calc((100vw - var(--social-card-width)) / 2)) 54px;
}

.social-card {
  position: relative;
  flex: 0 0 var(--social-card-width);
  width: var(--social-card-width);
  scroll-snap-align: center;
  transform-origin: center bottom;
  transition: transform 280ms ease;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  background: #e5e5e5;
}

.social-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.social-card.is-active {
  z-index: 2;
  transform: none;
}

.social-card__media {
  position: relative;
  height: var(--social-card-media-height);
  overflow: hidden;
  border-radius: 0;
  background: #e5e5e5;
}

.social-card__media img,
.social-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.social-card__link:hover .social-card__media img,
.social-card__link:focus-visible .social-card__media img {
  transform: scale(1.04);
}

.social-card__video-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: grid;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.social-card.is-active .social-card__video-controls {
  opacity: 1;
  pointer-events: auto;
}

.social-card__video-control {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  color: #ffffff;
  background: rgba(45, 45, 45, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  backdrop-filter: blur(6px);
}

.social-card__video-control svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-card__video-control svg path:first-child:last-child,
.social-card__video-control svg path:first-child:nth-last-child(2) {
  fill: currentColor;
  stroke: none;
}

.social-card__video-control:focus-visible {
  outline: 2px solid #61b8fe;
  outline-offset: 2px;
}

.social-card__handle {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(242, 242, 242, 0.92);
  color: #2d2d2d;
  font-family: var(--font-neutral);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1;
}

.social-card__product {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  max-width: calc(100% - 28px);
  padding: 7px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #2d2d2d;
  box-shadow: 0 4px 14px rgba(45, 45, 45, 0.18);
  font-family: var(--font-neutral);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  transition: background-color 160ms ease, color 160ms ease;
}

.social-card__product::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff4527;
}

.social-card__link:hover .social-card__product,
.social-card__link:focus-visible .social-card__product {
  background: #2d2d2d;
  color: #ffffff;
}

.social-card__shop {
  display: inline-block;
  max-width: 0;
  margin-left: -8px;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transition: max-width 260ms ease, margin-left 260ms ease, opacity 200ms ease;
}

.social-card__link:hover .social-card__shop,
.social-card__link:focus-visible .social-card__shop {
  max-width: 110px;
  margin-left: 0;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .social-card__shop {
    transition: none;
  }
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(48px, 7vw, 104px);
  padding: 56px 32px 64px;
}

.site-footer h2 {
  margin: 0;
  font-family: var(--font-neutral);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
}

.site-footer__group ul {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__group a,
.site-footer__copyright,
.site-footer__form input {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.site-footer__newsletter {
  display: grid;
  align-content: start;
}

.site-footer__newsletter h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-top: 32px;
  border-bottom: 1px solid var(--footer-line, #2d2d2d);
}

.site-footer__form input {
  min-width: 0;
  height: 42px;
  padding: 0;
  color: inherit;
  border: 0;
  outline: 0;
  background: transparent;
}

.site-footer__form input::placeholder {
  color: currentColor;
  opacity: 0.7;
}

.site-footer__form button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-neutral);
  font-size: 24px;
  line-height: 1;
}

.site-footer__copyright {
  margin: 62px 0 0;
}

.site-footer__brand {
  overflow: hidden;
  padding: 0 32px 42px;
  color: var(--footer-text, #2d2d2d);
  font-family: var(--font-display);
  font-size: clamp(180px, 29vw, 420px);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: 0;
  text-align: center;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 58px;
  padding: 0 32px;
  color: var(--footer-bg, #f2f2f2);
  background: var(--footer-text, #2d2d2d);
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__legal p {
  margin: 0;
}

.site-footer__legal nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: wrap;
}

@media (max-width: 749px) {
  .site-footer__inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
    padding: 0;
  }

  .recipe-carousel {
    padding: 42px 0 48px;
  }

  .recipe-carousel__header {
    padding-inline: 20px;
    margin-bottom: 28px;
  }

  .recipe-carousel__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .recipe-carousel__viewport::-webkit-scrollbar {
    display: none;
  }

  .recipe-carousel__track {
    display: flex;
    gap: 16px;
    width: max-content;
    max-width: none;
    padding: 0 20px;
  }

  .recipe-card {
    flex: 0 0 calc(100vw - 40px);
    width: calc(100vw - 40px);
    scroll-snap-align: center;
  }

  .recipe-card h3 {
    font-size: 22px;
  }

  .recipe-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 28px;
  }

  .recipe-carousel__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    background: rgba(45, 45, 45, 0.28);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: width 180ms ease, background-color 180ms ease;
  }

  .recipe-carousel__dot.is-active {
    width: 24px;
    background: #2d2d2d;
  }

  .recipe-carousel__dot:focus-visible {
    outline: 2px solid #61b8fe;
    outline-offset: 3px;
  }

  .customer-reviews-marquee {
    padding: 52px 0 54px;
  }

  .customer-reviews-marquee__header h2 {
    white-space: normal;
  }

  .customer-reviews-marquee__track,
  .customer-reviews-marquee__set {
    gap: 18px;
  }

  .customer-reviews-marquee__track {
    padding: 0 20px;
    animation-duration: 58s;
  }

  .customer-review-card {
    flex-basis: calc(100vw - 56px);
    min-height: 220px;
    padding: 26px 24px 24px;
  }

  .our-story {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 40px 20px 64px;
  }

  .our-story__media {
    height: auto;
    min-height: 0;
  }

  .our-story__content {
    max-width: none;
    padding: 0;
  }

  .our-story h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .our-story h2 span {
    white-space: normal;
  }

  .our-story__copy {
    font-size: 16px;
  }

  .customer-review-card__quote {
    font-size: 19px;
    line-height: 1.3;
  }

  .social-carousel {
    --social-card-width: min(72vw, 340px);
    --social-card-media-height: min(92vw, 430px);
  }

  .social-carousel__header {
    padding: 44px 18px 26px;
  }

  .social-carousel__header h2 {
    max-width: 390px;
    margin-inline: auto;
  }

  .social-carousel__track {
    gap: 14px;
    padding-top: 24px;
    padding-bottom: 44px;
  }

  .social-card.is-active {
    transform: none;
  }

  .site-footer__newsletter {
    padding: 64px 20px 68px;
    border-bottom: 1px solid var(--footer-line, #2d2d2d);
    text-align: center;
  }

  .site-footer__form {
    margin-top: 42px;
  }

  .site-footer__links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 20px 0;
  }

  .site-footer__group {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
  }

  .site-footer__group h2 {
    grid-column: 1;
  }

  .site-footer__group ul {
    grid-column: 2;
    gap: 16px;
    margin: 0;
  }

  .site-footer__copyright {
    max-width: 230px;
    margin: 46px auto 0;
    line-height: 1.55;
  }

  .site-footer__brand {
    padding: 0 20px 34px;
    font-size: clamp(96px, 28vw, 150px);
  }

  .site-footer__legal {
    display: grid;
    justify-items: center;
    gap: 16px;
    padding: 22px 20px;
    text-align: center;
  }

  .site-footer__legal nav {
    justify-content: center;
    gap: 14px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .moodboard-item--image {
    transition-duration: 0.01ms !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ============================================================
   SHOP ALL PAGE
   ============================================================ */
.site-header--solid {
  color: var(--header-scrolled-color);
  background: var(--header-scrolled-bg);
}

.shop-hero {
  padding: calc(var(--header-height) + 56px) 24px 74px;
  text-align: center;
  background: #ffffff;
}

.shop-hero__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 500;
  line-height: 1.05;
}

.shop-filter {
  position: sticky;
  top: var(--header-height);
  z-index: 40;
  background: #ffffff;
  border-top: 1px solid rgba(45, 45, 45, 0.1);
  border-bottom: 1px solid rgba(45, 45, 45, 0.1);
}

.shop-filter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 14px;
}

.shop-filter__count {
  margin: 0;
  font-family: var(--font-neutral);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(45, 45, 45, 0.55);
  white-space: nowrap;
}

.shop-filter__tabs {
  display: flex;
  align-items: center;
  gap: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

.shop-filter__tabs::-webkit-scrollbar {
  display: none;
}

.shop-filter__tab {
  display: inline-flex;
  align-items: center;
  padding: 17px 2px 15px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: rgba(45, 45, 45, 0.55);
  cursor: pointer;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 160ms ease, border-color 160ms ease;
}

.shop-filter__tab .heat-dots {
  margin-right: 7px;
}

.shop-filter__tab:hover {
  color: #2d2d2d;
}

.shop-filter__tab.is-active {
  color: #2d2d2d;
  border-bottom-color: #2d2d2d;
}

.shop-all-grid {
  background: var(--get-sauce-bg, #ffffff);
  padding: 32px 14px 72px;
}

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

.get-sauce-card[hidden] {
  display: none;
}

.get-sauce-card__hover-img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 260ms ease;
}

.shop-grid .get-sauce-card__media:hover .get-sauce-card__hover-img,
.shop-grid .get-sauce-card__media:focus-within .get-sauce-card__hover-img {
  opacity: 1;
}

.shop-grid .get-sauce-card[data-heat="merch"] .get-sauce-card__hover-img {
  filter: grayscale(1);
}

.shop-grid .get-sauce-card__hover-caption {
  display: none !important;
}

.shop-grid .get-sauce-card__media:hover .get-sauce-card__overlay {
  opacity: 0;
}

.shop-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  font-family: var(--font-secondary);
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #ffffff;
  color: #2d2d2d;
}

.shop-badge--best {
  background: #ffd800;
}

.shop-badge--new {
  background: #61b8fe;
  color: #ffffff;
}

.shop-badge--soldout {
  background: #2d2d2d;
  color: #ffffff;
}

.get-sauce-card__quick {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid #2d2d2d;
  border-right: 0;
  border-radius: 18px 0 0 18px;
  background: #f2f2f2;
  color: #2d2d2d;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.get-sauce-card__quick .icon {
  width: 21px;
  height: 21px;
}

.get-sauce-card__quick:hover,
.get-sauce-card__quick:focus-visible {
  color: #f2f2f2;
  background: #2d2d2d;
}

@media (min-width: 990px) {
  .shop-grid .get-sauce-card__purchase {
    margin-left: 80px;
    transition: margin-left 200ms ease;
  }

  .shop-grid .get-sauce-card:not(.is-sold-out) .get-sauce-card__button {
    border-radius: 0 18px 18px 0;
  }

  .shop-grid .get-sauce-card:not(.is-sold-out) .get-sauce-card__purchase:hover .get-sauce-card__button,
  .shop-grid .get-sauce-card:not(.is-sold-out) .get-sauce-card__purchase:focus-within .get-sauce-card__button,
  .shop-grid .get-sauce-card:not(.is-sold-out) .get-sauce-card__purchase.is-open .get-sauce-card__button {
    border-radius: 0 0 18px 18px;
  }

  .shop-grid .get-sauce-card__purchase:hover,
  .shop-grid .get-sauce-card__purchase:focus-within,
  .shop-grid .get-sauce-card__purchase.is-open {
    margin-left: 28px;
  }

  .shop-grid .get-sauce-card:has(.get-sauce-card__purchase:hover) .get-sauce-card__quick,
  .shop-grid .get-sauce-card:has(.get-sauce-card__purchase:focus-within) .get-sauce-card__quick,
  .shop-grid .get-sauce-card:has(.get-sauce-card__purchase.is-open) .get-sauce-card__quick {
    opacity: 0;
    pointer-events: none;
  }

  .shop-grid .get-sauce-card.is-sold-out .get-sauce-card__purchase {
    margin-left: 28px;
  }
}

.get-sauce-card.is-sold-out .get-sauce-card__media img {
  opacity: 0.55;
  filter: grayscale(25%);
}

.get-sauce-card.is-sold-out .get-sauce-card__purchase {
  filter: none;
}

.get-sauce-card.is-sold-out .get-sauce-card__purchase:hover .get-sauce-card__button,
.get-sauce-card.is-sold-out .get-sauce-card__purchase:focus-within .get-sauce-card__button {
  color: #f2f2f2;
  background: #2d2d2d;
  border-radius: 18px;
}

/* ============================================================
   QUICK VIEW DRAWER
   ============================================================ */
.quick-view {
  position: fixed;
  inset: 0;
  z-index: 220;
}

.quick-view[hidden] {
  display: none;
}

.quick-view__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 23, 0.42);
  opacity: 0;
  transition: opacity 280ms ease;
}

.quick-view.is-open .quick-view__backdrop {
  opacity: 1;
}

.quick-view__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(560px, 100vw);
  height: 100%;
  overflow-y: auto;
  background: #ffffff;
  color: #2d2d2d;
  transform: translateX(100%);
  transition: transform 340ms cubic-bezier(0.32, 0.72, 0, 1);
}

.quick-view.is-open .quick-view__panel {
  transform: translateX(0);
}

.quick-view__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f2f2f2;
}

.quick-view__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-view__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(45, 45, 45, 0.16);
  border-radius: 50%;
  background: #ffffff;
  color: #2d2d2d;
  cursor: pointer;
  transition: box-shadow 160ms ease;
}

.quick-view__close .icon {
  width: 18px;
  height: 18px;
}

.quick-view__close:hover {
  box-shadow: 0 6px 14px rgba(45, 45, 45, 0.18);
}

.quick-view__nav {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.quick-view__nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(45, 45, 45, 0.16);
  border-radius: 50%;
  background: #ffffff;
  color: #2d2d2d;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: box-shadow 160ms ease;
}

.quick-view__nav button:hover {
  box-shadow: 0 6px 14px rgba(45, 45, 45, 0.18);
}

.quick-view__body {
  padding: 22px 28px 34px;
}

.quick-view__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 28px;
  margin-bottom: 14px;
}

.quick-view__meta .shop-badge {
  position: static;
}

.quick-view__rating {
  margin-left: auto;
  font-family: var(--font-neutral);
  font-size: 13px;
  font-weight: 500;
  color: rgba(45, 45, 45, 0.7);
}

.quick-view__pill-slot .get-sauce-card__spice-pill {
  position: static;
  background: #f2f2f2;
}

.quick-view__name {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.05;
}

.quick-view__story {
  margin: 8px 0 0;
  font-family: var(--font-neutral);
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(45, 45, 45, 0.7);
}

.quick-view__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 14px 0 18px;
  font-family: var(--font-neutral);
  font-size: 15px;
}

.quick-view__price-row strong {
  font-weight: 600;
}

.quick-view__sep {
  color: rgba(45, 45, 45, 0.3);
}

.quick-view__pack {
  font-size: 13px;
  color: rgba(45, 45, 45, 0.6);
}

.quick-view__purchase {
  overflow: hidden;
  border: 1px solid rgba(45, 45, 45, 0.24);
  border-radius: 14px;
  background: #ffffff;
}

.quick-view__purchase > * + * {
  border-top: 1px solid rgba(45, 45, 45, 0.16);
}

.quick-view__option {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  font-family: var(--font-neutral);
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
}

.quick-view__option input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: #ff4527;
}

.quick-view__option strong {
  font-weight: 600;
}

.quick-view__frequency {
  padding: 12px 16px 16px 42px;
  font-family: var(--font-neutral);
  font-size: 13px;
  line-height: 1.2;
}

.quick-view__frequency-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
  margin-top: 9px;
}

.quick-view__frequency-buttons button {
  min-width: 0;
  min-height: 34px;
  padding: 6px 3px;
  color: #2d2d2d;
  background: transparent;
  border: 1px solid rgba(45, 45, 45, 0.3);
  border-radius: 7px;
  font: inherit;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.quick-view__frequency-buttons button:hover {
  border-color: #2d2d2d;
}

.quick-view__frequency-buttons button[aria-pressed="true"] {
  color: #2d2d2d;
  background: #f2f2f2;
  border-color: #2d2d2d;
}

.quick-view__purchase:has(input[value="one-time"]:checked) .quick-view__frequency {
  display: none;
}

.quick-view__purchase.is-one-time-only .quick-view__option:has(input[value="subscription"]),
.quick-view__purchase.is-one-time-only .quick-view__frequency {
  display: none;
}

.quick-view__add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 54px;
  margin-top: 16px;
  padding: 14px 24px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  background: #ff4527;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.quick-view__add:hover,
.quick-view__add:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 69, 39, 0.34);
}

.quick-view__add-strike {
  margin-left: 2px;
  font-weight: 400;
  text-decoration: line-through;
  opacity: 0.65;
}

.quick-view__add-strike[hidden] {
  display: none;
}

.quick-view__full {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-neutral);
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: rgba(45, 45, 45, 0.7);
  transition: color 160ms ease;
}

.quick-view__full:hover {
  color: #ff4527;
}

@media (prefers-reduced-motion: reduce) {
  .quick-view__backdrop,
  .quick-view__panel {
    transition: none;
  }
}

/* ============================================================
   WAITLIST MODAL
   ============================================================ */
.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 230;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.waitlist-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 23, 0.42);
  opacity: 0;
  transition: opacity 240ms ease;
}

.waitlist-modal.is-open .waitlist-modal__backdrop {
  opacity: 1;
}

.waitlist-modal__panel {
  position: relative;
  width: min(460px, 100%);
  padding: 44px 40px 40px;
  border-radius: 18px;
  background: #ffffff;
  color: #2d2d2d;
  text-align: left;
  box-shadow: 0 24px 60px rgba(28, 26, 23, 0.28);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 240ms ease, transform 240ms ease;
}

.waitlist-modal.is-open .waitlist-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.waitlist-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(45, 45, 45, 0.16);
  border-radius: 50%;
  background: #ffffff;
  color: #2d2d2d;
  cursor: pointer;
  transition: box-shadow 160ms ease;
}

.waitlist-modal__close .icon {
  width: 17px;
  height: 17px;
}

.waitlist-modal__close:hover {
  box-shadow: 0 6px 14px rgba(45, 45, 45, 0.18);
}

.waitlist-modal__eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(45, 45, 45, 0.5);
}

.waitlist-modal__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.08;
}

.waitlist-modal__copy {
  max-width: 36ch;
  margin: 10px 0 0;
  font-family: var(--font-neutral);
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(45, 45, 45, 0.72);
}

.waitlist-modal__copy strong {
  font-weight: 600;
  color: #2d2d2d;
}

.waitlist-modal__form {
  margin-top: 28px;
}

.waitlist-modal__label {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-neutral);
  font-size: 12px;
  font-weight: 500;
  color: rgba(45, 45, 45, 0.55);
}

.waitlist-modal__form input {
  width: 100%;
  padding: 6px 0 10px;
  border: 0;
  border-bottom: 1px solid #2d2d2d;
  border-radius: 0;
  background: transparent;
  color: #2d2d2d;
  font-family: var(--font-neutral);
  font-size: 15px;
}

.waitlist-modal__form input::placeholder {
  color: rgba(45, 45, 45, 0.4);
}

.waitlist-modal__form input:focus-visible {
  outline: none;
  border-bottom: 2px solid #2d2d2d;
  padding-bottom: 9px;
}

.waitlist-modal__form button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 26px;
  padding: 12px 22px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  background: #2d2d2d;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.waitlist-modal__form button:hover,
.waitlist-modal__form button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(45, 45, 45, 0.28);
}

.waitlist-modal [data-waitlist-success] {
  text-align: center;
}

.waitlist-modal [data-waitlist-success] .waitlist-modal__copy {
  margin-left: auto;
  margin-right: auto;
}

.waitlist-modal__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #2d2d2d;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.waitlist-modal__done {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 22px;
  padding: 12px 32px;
  border: 1px solid #2d2d2d;
  border-radius: 12px;
  cursor: pointer;
  background: #ffffff;
  color: #2d2d2d;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease;
}

.waitlist-modal__done:hover,
.waitlist-modal__done:focus-visible {
  color: #f2f2f2;
  background: #2d2d2d;
}

@media (prefers-reduced-motion: reduce) {
  .waitlist-modal__backdrop,
  .waitlist-modal__panel {
    transition: none;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 76px 24px 88px;
  background: #ffffff;
}

.faq__inner {
  max-width: 880px;
  margin: 0 auto;
}

.faq__header {
  margin-bottom: 34px;
  text-align: center;
}

.faq__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 500;
  line-height: 1;
}

.faq__list details {
  border-bottom: 1px solid rgba(45, 45, 45, 0.16);
}

.faq__list summary {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-neutral);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

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

.faq__num {
  flex-shrink: 0;
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(45, 45, 45, 0.45);
}

.faq__toggle {
  margin-left: auto;
  font-family: var(--font-neutral);
  font-size: 20px;
  font-weight: 400;
  color: rgba(45, 45, 45, 0.55);
}

.faq__toggle::before {
  content: "+";
}

.faq__list details[open] .faq__toggle::before {
  content: "−";
}

.faq__answer {
  max-width: 660px;
  padding: 0 4px 24px 44px;
  font-family: var(--font-neutral);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(45, 45, 45, 0.75);
}

/* ============================================================
   SOCIAL MARQUEE
   ============================================================ */
[data-social-marquee] .social-carousel__viewport {
  overflow-x: hidden;
  scroll-snap-type: none;
}

.social-carousel__track.is-marquee {
  padding-left: 0;
  padding-right: 0;
  animation: socialMarquee 60s linear infinite;
  will-change: transform;
}

.social-carousel__track.is-marquee:has(.social-card:hover),
.social-carousel__track.is-marquee:has(.social-card:focus-within) {
  animation-play-state: paused;
}

.social-carousel__set {
  display: flex;
  align-items: center;
  gap: 16px;
}

@keyframes socialMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 8px), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-carousel__track.is-marquee {
    animation: none;
  }

  [data-social-marquee] .social-carousel__viewport {
    overflow-x: auto;
  }
}

/* ============================================================
   SHOP ALL RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 989px) {
  .get-sauce-card__quick {
    display: none;
  }

  .shop-grid .get-sauce-card {
    width: auto;
    min-width: 0;
  }

  .shop-filter {
    top: var(--header-height);
  }

  .shop-filter__inner {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 0;
    padding: 0 24px;
  }

  .shop-filter__count {
    padding: 10px 0 12px;
  }

  .shop-filter__tabs {
    gap: 24px;
  }
}

@media (max-width: 749px) {
  .shop-hero {
    padding: calc(var(--header-height) + 36px) 20px 30px;
  }

  .shop-grid {
    gap: 10px;
  }

  .shop-all-grid {
    padding: 22px 10px 56px;
  }

  .shop-grid .get-sauce-card__spice-pill {
    top: 10px;
    left: 10px;
    min-height: 22px;
    padding: 0 9px;
    font-size: 9px;
  }

  .shop-grid .shop-badge {
    top: 40px;
    right: auto;
    left: 10px;
    min-height: 22px;
    padding: 0 9px;
    font-size: 9px;
  }

  .shop-grid .get-sauce-card__purchase {
    margin-top: 10px;
  }

  .shop-grid .get-sauce-card__purchase-options {
    display: none !important;
  }

  .shop-grid .get-sauce-card__button {
    min-height: 40px;
    padding: 9px 12px;
    border-radius: 12px;
    font-size: 11px;
  }

  .shop-grid .get-sauce-card__hover-caption {
    display: none !important;
  }

  .quick-view__panel {
    width: 100%;
  }
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.get-sauce-card[data-pdp-slug] .get-sauce-card__media {
  cursor: pointer;
}

.pdp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.17fr) minmax(0, 1fr);
  gap: 0;
  padding: var(--header-height) 0 76px;
  background: #ffffff;
}

.pdp-hero .pdp-buy {
  width: 100%;
  max-width: 669px;
  margin-inline: auto;
  padding: 44px 32px 0;
}

.pdp-gallery {
  position: sticky;
  top: var(--header-height);
  align-self: start;
  height: calc(100vh - var(--header-height));
}

.pdp-gallery__media {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #ececec;
}

.pdp-gallery__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-gallery__thumbs {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}

.pdp-gallery__thumbs button {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #ececec;
  transition: border-color 160ms ease, transform 160ms ease;
}

.pdp-gallery__thumbs button:hover {
  transform: translateY(-2px);
}

.pdp-gallery__thumbs button.is-active {
  border-color: #2d2d2d;
}

.pdp-gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-buy {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
}

.pdp-buy__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 28px;
}

.pdp-pill[hidden] {
  display: none;
}

.pdp-badge {
  position: static;
  top: auto;
  right: auto;
}

.pdp-buy__rating {
  margin-left: auto;
  font-family: var(--font-neutral);
  font-size: 13px;
  font-weight: 500;
  color: rgba(45, 45, 45, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pdp-buy__rating:hover {
  color: #ff4527;
}

.pdp-buy__name {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 500;
  line-height: 1.02;
}

.pdp-buy__story {
  margin: 10px 0 0;
  font-family: var(--font-neutral);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(45, 45, 45, 0.72);
}

.pdp-buy__pack {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 12px 0 0;
  font-family: var(--font-neutral);
  font-size: 15px;
  font-weight: 500;
}

.pdp-buy__pack strong {
  font-weight: 700;
}

.pdp-buy__pack span:not(.pdp-buy__pack-sep) {
  color: rgba(45, 45, 45, 0.6);
}

.pdp-buy__pack-sep {
  color: rgba(45, 45, 45, 0.28);
}

.pdp-sizes {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.pdp-sizes[hidden] {
  display: none;
}

.pdp-sizes__label {
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(45, 45, 45, 0.55);
}

.pdp-sizes__opts {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.pdp-size {
  padding: 2px 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: rgba(45, 45, 45, 0.5);
  cursor: pointer;
  font-family: var(--font-neutral);
  font-size: 13px;
  font-weight: 600;
  transition: color 160ms ease, border-color 160ms ease;
}

.pdp-size:hover {
  color: #2d2d2d;
}

.pdp-size.is-active {
  color: #2d2d2d;
  border-bottom-color: #2d2d2d;
}

.pdp-size.is-sold-out {
  color: rgba(45, 45, 45, 0.4);
}

.pdp-size__note {
  font-weight: 400;
  font-size: 12px;
}

.pdp-flavors {
  margin-top: 22px;
}

.pdp-flavors[hidden] {
  display: none;
}

.pdp-flavor-select {
  position: relative;
}

.pdp-flavor-select__trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  padding: 8px 16px 8px 10px;
  border: 1px solid rgba(45, 45, 45, 0.25);
  border-radius: 14px;
  background: #ffffff;
  color: #2d2d2d;
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease;
}

.pdp-flavor-select__trigger:hover {
  border-color: #2d2d2d;
}

.pdp-flavor-select__trigger img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  background: #ececec;
}

.pdp-flavor-select__label {
  display: block;
  font-family: var(--font-neutral);
  font-size: 11px;
  font-weight: 500;
  color: rgba(45, 45, 45, 0.55);
}

.pdp-flavor-select__name {
  display: block;
  margin-top: 1px;
  font-family: var(--font-neutral);
  font-size: 14px;
  font-weight: 600;
}

.pdp-flavor-select__chevron {
  width: 18px;
  height: 18px;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.pdp-flavor-select__trigger[aria-expanded="true"] .pdp-flavor-select__chevron {
  transform: rotate(180deg);
}

.pdp-flavor-select__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 30;
  padding: 6px;
  border: 1px solid rgba(45, 45, 45, 0.2);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(28, 26, 23, 0.16);
}

.pdp-flavor-select__menu[hidden] {
  display: none;
}

.pdp-flavor-select__option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #2d2d2d;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-neutral);
  font-size: 14px;
  font-weight: 500;
  transition: background-color 140ms ease;
}

.pdp-flavor-select__option:hover {
  background: #f2f2f2;
}

.pdp-flavor-select__option img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  background: #ececec;
}

.pdp-flavor-select__option .heat-dots {
  margin-left: auto;
  margin-right: 4px;
}

.pdp-bottles {
  margin-top: 20px;
}

.pdp-bottles[hidden] {
  display: none;
}

.pdp-bottles__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.pdp-bottles__label {
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(45, 45, 45, 0.55);
}

.pdp-bottles__unit {
  font-family: var(--font-neutral);
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(45, 45, 45, 0.6);
  white-space: nowrap;
}

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

.pdp-set {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 10px;
  border: 1px solid rgba(45, 45, 45, 0.25);
  border-radius: 12px;
  background: #ffffff;
  color: #2d2d2d;
  cursor: pointer;
  text-align: center;
  transition: color 160ms ease, background-color 160ms ease;
}

.pdp-set__num {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.pdp-set__unit {
  margin-top: 4px;
  font-family: var(--font-neutral);
  font-size: 11px;
}

.pdp-set:hover {
  border-color: #2d2d2d;
}

.pdp-set.is-active {
  border-color: #2d2d2d;
  background: #f2f2f2;
  color: #2d2d2d;
}

.pdp-purchase {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(45, 45, 45, 0.2);
  border-radius: 14px;
  background: #ffffff;
}

.pdp-purchase > * + * {
  border-top: 1px solid rgba(45, 45, 45, 0.16);
}

.pdp-option {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  font-family: var(--font-neutral);
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
}

.pdp-option input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: #ff4527;
}

.pdp-option strong {
  font-weight: 600;
}

.pdp-option__prices {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.pdp-option__strike {
  color: rgba(45, 45, 45, 0.45);
  text-decoration: line-through;
}

.pdp-option__strike[hidden] {
  display: none;
}

.pdp-frequency {
  padding: 12px 16px 16px 42px;
  font-family: var(--font-neutral);
  font-size: 13px;
  line-height: 1.2;
}

.pdp-frequency > span {
  color: rgba(45, 45, 45, 0.6);
  font-size: 12.5px;
}

.pdp-frequency-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
  margin-top: 9px;
}

.pdp-frequency-buttons button {
  min-width: 0;
  min-height: 34px;
  padding: 6px 3px;
  color: #2d2d2d;
  background: transparent;
  border: 1px solid rgba(45, 45, 45, 0.3);
  border-radius: 7px;
  font: inherit;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.pdp-frequency-buttons button:hover {
  border-color: #2d2d2d;
}

.pdp-frequency-buttons button[aria-pressed="true"] {
  color: #2d2d2d;
  background: #f2f2f2;
  border-color: #2d2d2d;
}

.pdp-purchase:has(input[value="one-time"]:checked) .pdp-frequency {
  display: none;
}

.pdp-purchase.is-one-time-only .pdp-option:has(input[value="subscription"]),
.pdp-purchase.is-one-time-only .pdp-frequency {
  display: none;
}

.pdp-purchase[hidden] {
  display: none;
}

.pdp-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 56px;
  margin-top: 14px;
  padding: 14px 24px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  background: #ff4527;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.pdp-add:hover,
.pdp-add:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 69, 39, 0.34);
}

.pdp-add-strike {
  margin-left: 2px;
  font-weight: 400;
  text-decoration: line-through;
  opacity: 0.65;
}

.pdp-add-strike[hidden] {
  display: none;
}

.pdp-add-note,
.quick-view__add-note {
  margin: 10px 0 0;
  text-align: center;
  font-family: var(--font-neutral);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(45, 45, 45, 0.6);
}

.pdp-add-note[hidden],
.quick-view__add-note[hidden] {
  display: none;
}

.pdp-guarantee {
  margin-top: 18px;
  padding: 16px 24px;
  border-radius: 14px;
  background: #f2f2f2;
  text-align: center;
}

.pdp-guarantee[hidden] {
  display: none;
}

.pdp-guarantee p {
  margin: 0;
  font-family: var(--font-neutral);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(45, 45, 45, 0.75);
}

.pdp-guarantee strong {
  font-weight: 700;
  color: #2d2d2d;
}

.pdp-guarantee a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pdp-guarantee a:hover {
  color: #ff4527;
}

.pdp-tabs {
  margin-top: 26px;
}

.pdp-tabs__strip {
  display: flex;
  gap: 26px;
  border-bottom: 1px solid rgba(45, 45, 45, 0.14);
}

.pdp-tabs__tab {
  padding: 0 0 12px;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: transparent;
  color: rgba(45, 45, 45, 0.45);
  cursor: pointer;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 160ms ease, border-color 160ms ease;
}

.pdp-tabs__tab:hover {
  color: #2d2d2d;
}

.pdp-tabs__tab.is-active {
  border-bottom-color: #2d2d2d;
  color: #2d2d2d;
}

.pdp-tabs__panel {
  padding: 18px 0 0;
  font-family: var(--font-neutral);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(45, 45, 45, 0.78);
}

.pdp-tabs__panel p {
  margin: 0;
}

.pdp-tabs__panel p + p {
  margin-top: 12px;
}

.pdp-tabs__panel strong {
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2d2d2d;
}

.pdp-tabs__panel a {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #2d2d2d;
}

.pdp-tabs__panel a:hover {
  color: #ff4527;
}

.pdp-statement {
  padding: 88px 24px;
  background: #ffffff;
  text-align: center;
}

.pdp-statement h2 {
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 500;
  line-height: 1.08;
}

.pdp-statement a {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pdp-statement a:hover {
  color: #ff4527;
}

.pdp-inside {
  padding: 68px max(14px, calc((100% - 1680px) / 2)) 80px;
  background: #f2f2f2;
}

.pdp-inside[hidden] {
  display: none;
}

.pdp-inside__header {
  margin-bottom: 0;
  text-align: center;
}

.pdp-inside__header h2 {
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 500;
  line-height: 1.08;
}

.pdp-inside__eyebrow,
.pdp-crosssell__eyebrow,
.pdp-reviews__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pdp-crosssell__header h2,
.pdp-reviews__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 500;
  line-height: 1.02;
}

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

.pdp-inside__tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  background: #e5e5e5;
}

.pdp-inside__tile h3 {
  margin: 12px 0 0;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pdp-inside__tile p {
  margin: 4px 0 0;
  font-family: var(--font-neutral);
  font-size: 14px;
  line-height: 1.45;
  color: rgba(45, 45, 45, 0.7);
}

.pdp-crosssell {
  padding: 68px 14px 80px;
  background: #f2f2f2;
}

.pdp-crosssell__header {
  margin-bottom: 36px;
  text-align: center;
}

.pdp-crosssell .shop-grid {
  max-width: 1480px;
}

.pdp-bundles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1480px;
  margin: 0 auto;
}

.pdp-bundle {
  display: flex;
  flex-direction: column;
  padding: 16px 16px 22px;
  border: 1px solid rgba(45, 45, 45, 0.16);
  border-radius: 22px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.pdp-bundle:hover {
  border-color: rgba(45, 45, 45, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(45, 45, 45, 0.08);
}

.pdp-bundle__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 11;
  padding: 32px;
  border-radius: 16px;
  background: #f2f2f2;
  overflow: hidden;
}

.pdp-bundle__media img {
  max-width: 78%;
  max-height: 100%;
  object-fit: contain;
}

.pdp-bundle__pill {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  background: #61b8fe;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pdp-bundle__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 6px 0;
}

.pdp-bundle__text h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.05;
}

.pdp-bundle__text p {
  margin: 8px 0 0;
  font-family: var(--font-neutral);
  font-size: 15px;
  line-height: 1.45;
  color: rgba(45, 45, 45, 0.62);
}

.pdp-bundle__arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #2d2d2d;
  color: #ffffff;
  transition: background-color 180ms ease;
}

.pdp-bundle__arrow svg {
  width: 22px;
  height: 22px;
}

.pdp-bundle:hover .pdp-bundle__arrow {
  background: #ff4527;
}

.pdp-reviews {
  padding: 72px 24px 88px;
  background: #ffffff;
}

.pdp-reviews__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.pdp-reviews__header {
  margin-bottom: 34px;
  text-align: center;
}

.pdp-reviews__summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 72px);
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(45, 45, 45, 0.18);
}

.pdp-reviews__score {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 300px;
}

.pdp-reviews__score-top {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.pdp-reviews__big {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}

.pdp-reviews__stars {
  color: #ff4527;
  font-size: 15px;
  letter-spacing: 2px;
}

.pdp-reviews__count {
  font-family: var(--font-neutral);
  font-size: 13px;
  color: rgba(45, 45, 45, 0.6);
}

.pdp-reviews__bars {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.pdp-reviews__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-neutral);
  font-size: 12px;
  color: rgba(45, 45, 45, 0.6);
}

.pdp-reviews__bar span {
  flex: 0 0 24px;
}

.pdp-reviews__bar i {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: #f2f2f2;
  overflow: hidden;
}

.pdp-reviews__bar b {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: #2d2d2d;
}

.pdp-reviews__bar em {
  flex: 0 0 38px;
  font-style: normal;
  text-align: right;
}

.pdp-reviews__social {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.pdp-reviews__recommend {
  margin: 0;
  font-family: var(--font-neutral);
  font-size: 15px;
  color: rgba(45, 45, 45, 0.75);
}

.pdp-reviews__recommend strong {
  font-weight: 700;
  color: #2d2d2d;
}

.pdp-reviews__strip {
  display: flex;
  gap: 4px;
  overflow: hidden;
  border-radius: 10px;
}

.pdp-reviews__strip img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  background: #f2f2f2;
}

.pdp-reviews__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 8px;
}

.pdp-reviews__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 24px;
  border: 1px solid #2d2d2d;
  border-radius: 999px;
  cursor: pointer;
  background: #ffffff;
  color: #2d2d2d;
  font-family: var(--font-secondary);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease;
}

.pdp-reviews__btn svg {
  width: 16px;
  height: 16px;
}

.pdp-reviews__btn:hover {
  color: #ffffff;
  background: #2d2d2d;
}

.pdp-reviews__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0 6px;
  font-family: var(--font-neutral);
  font-size: 13.5px;
  color: rgba(45, 45, 45, 0.65);
}

.pdp-reviews__sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pdp-reviews__sort strong {
  font-weight: 600;
  color: #2d2d2d;
}

.pdp-reviews__sort svg {
  width: 14px;
  height: 14px;
  color: #2d2d2d;
}

.pdp-reviews__list {
  display: grid;
}

.pdp-review {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  padding: 26px 0;
  border-top: 1px solid rgba(45, 45, 45, 0.14);
}

.pdp-review:first-child {
  border-top: 0;
}

.pdp-review__who {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  border-radius: 14px;
  background: #f2f2f2;
}

.pdp-review__id {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-neutral);
  font-size: 14px;
}

.pdp-review__id strong {
  font-weight: 700;
}

.pdp-review__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #2d2d2d;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
}

.pdp-review__product {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-neutral);
  font-size: 13px;
}

.pdp-review__product img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  background: #ffffff;
}

.pdp-review__product span {
  display: block;
  color: rgba(45, 45, 45, 0.55);
}

.pdp-review__product strong {
  font-weight: 600;
}

.pdp-review__recommends {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: var(--font-neutral);
  font-size: 13px;
  color: rgba(45, 45, 45, 0.75);
}

.pdp-review__recommends svg {
  width: 15px;
  height: 15px;
  color: #2d2d2d;
}

.pdp-review__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}

.pdp-review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pdp-review__stars {
  color: #ff4527;
  font-size: 14px;
  letter-spacing: 2px;
}

.pdp-review__date {
  font-family: var(--font-neutral);
  font-size: 12.5px;
  color: rgba(45, 45, 45, 0.5);
}

.pdp-review__body h3 {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
}

.pdp-review__body > p {
  margin: 0;
  font-family: var(--font-neutral);
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(45, 45, 45, 0.78);
}

.pdp-review__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
}

.pdp-review__verified {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f2f2f2;
  font-family: var(--font-neutral);
  font-size: 12px;
  color: rgba(45, 45, 45, 0.7);
}

.pdp-review__helpful {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-neutral);
  font-size: 12.5px;
  color: rgba(45, 45, 45, 0.55);
}

.pdp-review__helpful button {
  padding: 4px 8px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  background: transparent;
  color: rgba(45, 45, 45, 0.65);
  font: inherit;
  transition: background-color 140ms ease;
}

.pdp-review__helpful button:hover {
  background: #f2f2f2;
}

.pdp-reviews__more {
  display: flex;
  justify-content: center;
  padding-top: 26px;
  border-top: 1px solid rgba(45, 45, 45, 0.14);
}

@media (max-width: 1199px) {
  .pdp-inside__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 989px) {
  .pdp-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: var(--header-height) 0 56px;
  }

  .pdp-hero .pdp-buy {
    padding: 28px 20px 0;
  }

  .pdp-buy {
    position: static;
  }

  .pdp-gallery {
    position: static;
    height: auto;
  }

  .pdp-gallery__media {
    height: auto;
    aspect-ratio: 4 / 4.6;
  }

  .pdp-gallery__thumbs {
    position: static;
    transform: none;
    flex-direction: row;
    padding: 12px 20px 0;
  }

  .pdp-reviews__summary {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .pdp-review {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .pdp-reviews__toolbar {
    flex-wrap: wrap;
  }
}

@media (max-width: 749px) {
  .pdp-bundles {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
}

/* Bundle builder */
.bundle-hero {
  padding: calc(var(--header-height) + 64px) 24px 0;
  background: #ffffff;
  text-align: center;
}

.bundle-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 500;
  line-height: 1.02;
}

.bundle-hero p {
  margin: 12px 0 0;
  font-family: var(--font-neutral);
  font-size: 16px;
  color: rgba(45, 45, 45, 0.65);
}

.bundle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: clamp(28px, 3.5vw, 56px);
  align-items: start;
  padding: 72px max(24px, calc((100% - 1480px) / 2)) 96px;
  background: #ffffff;
}

.bundle__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: stretch;
  flex: 1;
  gap: 20px;
}

.bundle-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(45, 45, 45, 0.14);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  transition: border-color 180ms ease;
}

.bundle-card.is-picked {
  border-color: #2d2d2d;
}

.bundle-card__media {
  position: relative;
  flex: 1 0 auto;
  aspect-ratio: 4 / 3.4;
  background: #f2f2f2;
}

.bundle-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bundle-card.is-sold-out .bundle-card__media img {
  opacity: 0.5;
  filter: grayscale(0.6);
}

.bundle-card__pill {
  align-self: center;
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f2f2f2;
  font-family: var(--font-secondary);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bundle-card__body {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  gap: 6px;
  padding: 20px 18px 22px;
  text-align: center;
}

.bundle-card__body h3 {
  margin: 0 0 22px;
  font-family: var(--font-primary);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.1;
}

.bundle-card__body > p {
  margin: 0 0 14px;
  font-family: var(--font-neutral);
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(45, 45, 45, 0.65);
}

.bundle-card__add,
.bundle-card__waitlist {
  margin-top: auto;
  min-height: 46px;
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: #2d2d2d;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color 160ms ease;
}

.bundle-card__add:hover:not(:disabled),
.bundle-card__waitlist:hover {
  background: #ff4527;
}

.bundle-card__add:disabled {
  opacity: 0.35;
  cursor: default;
}

.bundle-card__stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  min-height: 46px;
  padding: 4px;
  border: 1px solid #2d2d2d;
  border-radius: 999px;
  background: #f2f2f2;
}

.bundle-card__stepper span {
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bundle-card__stepper button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: #ffffff;
  color: #2d2d2d;
  font-size: 17px;
  line-height: 1;
  transition: background-color 140ms ease, color 140ms ease;
}

.bundle-card__stepper button:hover:not(:disabled) {
  background: #2d2d2d;
  color: #ffffff;
}

.bundle-card__stepper button:disabled {
  opacity: 0.3;
  cursor: default;
}

.bundle__panel {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 26px 28px;
  border: 1px solid rgba(45, 45, 45, 0.14);
  border-radius: 20px;
  background: #ffffff;
}

.bundle__panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.bundle__panel-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
}

.bundle__tagline {
  margin: -6px 0 2px;
  font-family: var(--font-neutral);
  font-size: 13.5px;
  line-height: 1.5;
  color: #2d2d2d;
}

.bundle__status {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  column-gap: 12px;
  row-gap: 10px;
  margin-top: 4px;
}

.bundle__status .bundle__bar {
  grid-column: 1 / -1;
}

.bundle__status-count {
  font-family: var(--font-secondary);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2d2d2d;
}

.bundle__status-remaining {
  font-family: var(--font-neutral);
  font-size: 12.5px;
  color: rgba(45, 45, 45, 0.5);
}

.bundle__bar {
  height: 2px;
  border-radius: 999px;
  background: rgba(45, 45, 45, 0.14);
  overflow: hidden;
}

.bundle__bar b {
  display: block;
  height: 100%;
  background: #2d2d2d;
  transition: width 240ms ease;
}

.bundle__main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bundle__mobile-head {
  display: none;
}

.bundle__sheet-chevron {
  display: none;
}

.bundle__toolbar {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.bundle__sizes {
  display: flex;
  width: 100%;
  padding: 4px;
  border: 1px solid rgba(45, 45, 45, 0.16);
  border-radius: 999px;
  background: #f2f2f2;
}

.bundle__sizes button {
  flex: 1;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  color: rgba(45, 45, 45, 0.55);
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}

.bundle__sizes button:hover {
  color: #2d2d2d;
}

.bundle__sizes button[aria-pressed="true"] {
  border-color: rgba(45, 45, 45, 0.12);
  background: #ffffff;
  color: #2d2d2d;
  box-shadow: 0 2px 6px rgba(45, 45, 45, 0.08);
}

.bundle__size-note {
  margin: 0;
  font-family: var(--font-neutral);
  font-size: 12.5px;
  color: rgba(45, 45, 45, 0.5);
}

.bundle__swap-note {
  margin: 0;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff4ec;
  font-family: var(--font-neutral);
  font-size: 12.5px;
  line-height: 1.45;
  color: #b3400f;
}

.bundle__slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 10px;
  margin-bottom: 16px;
}

.bundle-slot {
  position: relative;
}

.bundle-slot__box {
  position: relative;
  aspect-ratio: 1;
  border: 1.5px dashed rgba(45, 45, 45, 0.28);
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
}

.bundle-slot.is-filled .bundle-slot__box {
  border: 1.5px solid var(--slot-accent, #2d2d2d);
}

.bundle-slot__box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bundle-slot > span {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  overflow: hidden;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
  text-overflow: ellipsis;
  color: #2d2d2d;
}

.bundle-slot button {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: #2d2d2d;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
}

.bundle__pick {
  align-self: flex-start;
  min-height: 50px;
  padding: 13px 36px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: #2d2d2d;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 160ms ease, transform 160ms ease;
}

.bundle__pick:hover {
  background: #ff4527;
  transform: translateY(-1px);
}

.bundle__purchase {
  display: grid;
  border: 1px solid rgba(45, 45, 45, 0.25);
  border-radius: 14px;
  overflow: hidden;
}

.bundle__purchase > * + * {
  border-top: 1px solid rgba(45, 45, 45, 0.14);
}

.bundle__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  cursor: pointer;
  font-family: var(--font-neutral);
  font-size: 14px;
}

.bundle__option input {
  flex: 0 0 auto;
  accent-color: #ff4527;
}

.bundle__option > span:first-of-type {
  flex: 1;
  white-space: nowrap;
}

.bundle__option strong {
  min-width: 58px;
  font-weight: 600;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.bundle__option-prices {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.bundle__option-prices s {
  color: rgba(45, 45, 45, 0.45);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.bundle__add {
  margin-top: 10px;
  min-height: 56px;
  padding: 15px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: #ff4527;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.bundle__add:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 69, 39, 0.32);
}

.bundle__add:disabled {
  cursor: default;
  background: #f2f2f2;
  color: rgba(45, 45, 45, 0.45);
}

.bundle__savings {
  margin: -2px 0 0;
  font-family: var(--font-neutral);
  font-size: 12.5px;
  text-align: center;
  color: rgba(45, 45, 45, 0.55);
}

@media (max-width: 989px) {
  .bundle {
    grid-template-columns: minmax(0, 1fr);
    padding: 28px 16px calc(140px + env(safe-area-inset-bottom));
  }

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

  .bundle__mobile-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .bundle__mobile-head p {
    margin: 0;
    font-family: var(--font-neutral);
    font-size: 14px;
    color: #2d2d2d;
  }

  .bundle__mobile-head .bundle__pick {
    align-self: center;
  }

  /* builder panel becomes a sticky bottom sheet */
  .bundle__panel {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 40;
    gap: 12px;
    max-height: min(78vh, 640px);
    overflow-y: auto;
    padding: 14px 20px calc(18px + env(safe-area-inset-bottom));
    border: 0;
    border-top: 1px solid rgba(45, 45, 45, 0.12);
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -16px 44px rgba(45, 45, 45, 0.16);
  }

  /* sheet always hides the desktop-panel header bits (they live at the top of the page on mobile) */
  .bundle__panel .bundle__panel-head,
  .bundle__panel .bundle__tagline,
  .bundle__panel .bundle__pick {
    display: none;
  }

  /* collapsed: only the status block (count + bar + remaining) shows */
  .bundle__panel:not(.is-open) > *:not(.bundle__status) {
    display: none;
  }

  .bundle__status {
    grid-template-columns: 1fr auto;
    align-items: center;
    cursor: pointer;
  }

  .bundle__status-count {
    grid-row: 1;
    grid-column: 1;
  }

  .bundle__status .bundle__sheet-chevron {
    grid-row: 1;
    grid-column: 2;
  }

  .bundle__status .bundle__bar {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .bundle__status-remaining {
    grid-row: 3;
    grid-column: 1 / -1;
    justify-self: start;
  }

  .bundle__sheet-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: -4px -6px -4px 0;
    padding: 0;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: transparent;
    color: #2d2d2d;
  }

  .bundle__sheet-chevron svg {
    width: 16px;
    height: 16px;
    transition: transform 200ms ease;
  }

  .bundle__panel.is-open .bundle__sheet-chevron svg {
    transform: rotate(180deg);
  }
}

.bundle__frequency {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px 16px;
  background: #fafafa;
}

.bundle__frequency[hidden] {
  display: none;
}

.bundle__frequency > span {
  font-family: var(--font-neutral);
  font-size: 12.5px;
  color: rgba(45, 45, 45, 0.6);
}

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

.bundle__frequency-buttons button {
  min-height: 38px;
  padding: 8px 6px;
  border: 1px solid rgba(45, 45, 45, 0.25);
  border-radius: 10px;
  cursor: pointer;
  background: #ffffff;
  color: #2d2d2d;
  font-family: var(--font-neutral);
  font-size: 12.5px;
  transition: border-color 140ms ease, background-color 140ms ease;
}

.bundle__frequency-buttons button[aria-pressed="true"] {
  border-color: #2d2d2d;
  background: #f2f2f2;
}

/* Store locator */
.locator-hero {
  padding: calc(var(--header-height) + 64px) 24px 56px;
  background: #ffffff;
  text-align: center;
}

.locator-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 500;
  line-height: 1.02;
}

.locator {
  background: #ffffff;
}

.locator__map {
  position: relative;
  height: min(72vh, 720px);
  min-height: 520px;
  overflow: hidden;
  background: #f7f6f4;
}

.locator__tiles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.locator-pin {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: #ff4527;
  border: 2.5px solid #ffffff;
  box-shadow: 0 6px 14px rgba(45, 45, 45, 0.22);
  cursor: pointer;
  transition: transform 160ms ease;
}

.locator-pin:hover {
  transform: translate(-50%, -50%) scale(1.12);
}

.locator-pin span {
  font-family: var(--font-secondary);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.locator__controls {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 5;
  display: flex;
  gap: 12px;
}

.locator__filters {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid rgba(45, 45, 45, 0.25);
  border-radius: 999px;
  cursor: pointer;
  background: #ffffff;
  color: #2d2d2d;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(45, 45, 45, 0.08);
  transition: border-color 160ms ease;
}

.locator__filters:hover {
  border-color: #2d2d2d;
}

.locator__filters svg {
  width: 16px;
  height: 16px;
}

.locator__search {
  display: flex;
  align-items: center;
  width: min(380px, 40vw);
  min-height: 48px;
  padding: 4px 4px 4px 18px;
  border: 1px solid rgba(45, 45, 45, 0.25);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(45, 45, 45, 0.08);
}

.locator__search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-family: var(--font-neutral);
  font-size: 13.5px;
  color: #2d2d2d;
}

.locator__search button {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: #2d2d2d;
  color: #ffffff;
  transition: background-color 160ms ease;
}

.locator__search button:hover {
  background: #ff4527;
}

.locator__search svg {
  width: 16px;
  height: 16px;
}

.locator__zoom {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(45, 45, 45, 0.16);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(45, 45, 45, 0.08);
}

.locator__zoom button {
  width: 40px;
  height: 40px;
  border: 0;
  cursor: pointer;
  background: #ffffff;
  color: #2d2d2d;
  font-size: 18px;
  line-height: 1;
  transition: background-color 140ms ease;
}

.locator__zoom button:hover {
  background: #f2f2f2;
}

.locator__zoom button + button {
  border-top: 1px solid rgba(45, 45, 45, 0.12);
}

.locator__panel {
  position: absolute;
  top: 22px;
  left: 24px;
  bottom: 22px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  width: min(360px, calc(100% - 48px));
  border: 1px solid rgba(45, 45, 45, 0.1);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(45, 45, 45, 0.14);
}

.locator__tabs {
  display: flex;
  gap: 6px;
  flex: 0 0 auto;
  padding: 12px 12px 0;
  background: #ffffff;
}

.locator__tabs button {
  flex: 1;
  min-height: 44px;
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  background: transparent;
  color: rgba(45, 45, 45, 0.5);
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 160ms ease, border-color 160ms ease;
}

.locator__tabs button:hover {
  color: #2d2d2d;
}

.locator__tabs button.is-active {
  border-bottom-color: #2d2d2d;
  color: #2d2d2d;
}

.locator__list {
  flex: 1;
  overflow-y: auto;
  padding: 6px 22px 22px;
}

.locator-store {
  padding: 18px 0;
}

.locator-store + .locator-store {
  border-top: 1px solid rgba(45, 45, 45, 0.12);
}

.locator-store__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.locator-store__head h3 {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.1;
}

.locator-store__logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--logo-bg, #2d2d2d);
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 600;
}

.locator-store__logo--sm {
  width: 28px;
  height: 28px;
  font-size: 9.5px;
}

.locator-store__addr,
.locator-store__meta {
  margin: 0 0 3px;
  font-family: var(--font-neutral);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(45, 45, 45, 0.65);
}

.locator-store__count {
  margin: 6px 0 0;
  font-family: var(--font-neutral);
  font-size: 13px;
  font-weight: 600;
  color: #2d2d2d;
}

.locator-group {
  padding: 18px 0;
}

.locator-group + .locator-group {
  border-top: 1px solid rgba(45, 45, 45, 0.12);
}

.locator-group h3 {
  margin: 0 0 12px;
  font-family: var(--font-primary);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.25;
}

.locator-group__row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.locator-group__row > img {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  background: #f2f2f2;
}

.locator-group__retailers {
  flex: 1;
  display: grid;
  gap: 8px;
}

.locator-retailer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.locator-retailer[hidden] {
  display: none;
}

.locator-retailer__name {
  flex: 1;
  font-family: var(--font-neutral);
  font-size: 13px;
  color: #2d2d2d;
}

.locator-retailer__shop {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #2d2d2d;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color 160ms ease;
}

.locator-retailer__shop:hover {
  background: #ff4527;
}

.locator-group__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: transparent;
  color: rgba(45, 45, 45, 0.6);
  font-family: var(--font-neutral);
  font-size: 12.5px;
  transition: color 140ms ease;
}

.locator-group__more:hover {
  color: #2d2d2d;
}

.locator-group__more svg {
  width: 13px;
  height: 13px;
}

.locator-crosssell {
  padding: 72px max(24px, calc((100% - 1480px) / 2)) 96px;
  background: #ffffff;
}

.locator-crosssell__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.locator-crosssell__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.05;
}

.locator-crosssell__header a {
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.locator-crosssell__header a:hover {
  color: #ff4527;
}

.pdp-bundles--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
}

@media (max-width: 989px) {
  .locator__map {
    height: auto;
    min-height: 0;
    padding-bottom: 380px;
  }

  .locator__tiles {
    height: 380px;
    top: auto;
    bottom: 0;
  }

  .locator__panel {
    position: static;
    width: auto;
    margin: 0 16px;
    max-height: 480px;
  }

  .locator__controls {
    position: static;
    flex-wrap: wrap;
    padding: 0 16px 16px;
  }

  .locator__search {
    width: 100%;
  }

  .locator__zoom {
    bottom: 16px;
    right: 16px;
  }

  .locator-pin {
    display: none;
  }

  .pdp-bundles--three {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Wholesale */
.ws-hero {
  padding: calc(var(--header-height) + 64px) 24px 48px;
  background: #ffffff;
  text-align: center;
}

.ws-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 500;
  line-height: 1.02;
}

.ws-intro {
  padding: 0 max(24px, calc((100% - 1180px) / 2)) 88px;
  background: #ffffff;
}

.ws-intro[hidden] {
  display: none;
}

.ws-intro__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  border: 1px solid rgba(45, 45, 45, 0.14);
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
}

.ws-intro__pitch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(32px, 4vw, 56px);
}

.ws-intro__eyebrow {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(45, 45, 45, 0.5);
}

.ws-intro__pitch h2 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 500;
  line-height: 1.08;
}

.ws-intro__perks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.ws-intro__perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-neutral);
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(45, 45, 45, 0.8);
}

.ws-intro__perks svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: #ff4527;
}

.ws-intro__cta {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  margin-top: 6px;
  padding: 14px 34px;
  border-radius: 999px;
  background: #2d2d2d;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 160ms ease, transform 160ms ease;
}

.ws-intro__cta:hover {
  background: #ff4527;
  transform: translateY(-1px);
}

.ws-intro__note {
  margin: 0;
  font-family: var(--font-neutral);
  font-size: 12.5px;
  color: rgba(45, 45, 45, 0.55);
}

.ws-intro__note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ws-intro__note a:hover {
  color: #ff4527;
}

.ws-intro__media {
  min-height: 340px;
  background: #f2f2f2;
}

.ws-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ws-app {
  padding: 0 0 96px;
  background: #f7f7f7;
}

.ws-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 22px max(24px, calc((100% - 1480px) / 2));
  background: #ffffff;
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
}

.ws-progress button {
  padding: 10px 2px 12px;
  border: 0;
  border-bottom: 2px solid rgba(45, 45, 45, 0.15);
  cursor: pointer;
  background: transparent;
  color: rgba(45, 45, 45, 0.45);
  font-family: var(--font-secondary);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  transition: color 160ms ease, border-color 160ms ease;
}

.ws-progress button.is-active {
  border-bottom-color: #2d2d2d;
  color: #2d2d2d;
}

.ws-progress button.is-done {
  color: rgba(45, 45, 45, 0.7);
}

.ws-progress button:disabled {
  cursor: default;
}

.ws-step {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 0;
}

.ws-step__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-secondary);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(45, 45, 45, 0.55);
}

.ws-step h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 500;
  line-height: 1.05;
  text-align: center;
}

.ws-step__sub {
  margin: 14px 0 0;
  font-family: var(--font-neutral);
  font-size: 14.5px;
  line-height: 1.55;
  text-align: center;
  color: rgba(45, 45, 45, 0.65);
}

.ws-form {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

.ws-grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ws-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 18px 13px;
  border: 1px solid rgba(45, 45, 45, 0.12);
  border-radius: 14px;
  background: #ffffff;
  cursor: text;
  transition: border-color 140ms ease;
}

.ws-field:focus-within {
  border-color: #2d2d2d;
}

.ws-field > span {
  font-family: var(--font-neutral);
  font-size: 11.5px;
  color: rgba(45, 45, 45, 0.55);
}

.ws-field input,
.ws-field select {
  border: 0;
  padding: 0;
  outline: none;
  background: transparent;
  font-family: var(--font-neutral);
  font-size: 15px;
  color: #2d2d2d;
  appearance: none;
}

.ws-field input[readonly] {
  color: rgba(45, 45, 45, 0.65);
}

.ws-field--select {
  cursor: pointer;
}

.ws-field--select::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 1.8px solid #2d2d2d;
  border-bottom: 1.8px solid #2d2d2d;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.ws-field select:invalid,
.ws-field select option[disabled] {
  color: rgba(45, 45, 45, 0.55);
}

.ws-checks {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.ws-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-family: var(--font-neutral);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(45, 45, 45, 0.8);
}

.ws-check input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: #2d2d2d;
}

.ws-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
}

.ws-nav__right {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.ws-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 32px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-secondary);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.ws-btn--continue {
  background: #2d2d2d;
  color: #ffffff;
}

.ws-btn--continue:hover:not(:disabled) {
  background: #ff4527;
}

.ws-btn--continue:disabled {
  cursor: default;
  background: #ececec;
  color: rgba(45, 45, 45, 0.4);
}

.ws-btn--back {
  border: 1px solid rgba(45, 45, 45, 0.3);
  background: #ffffff;
  color: #2d2d2d;
}

.ws-btn--back:hover {
  border-color: #2d2d2d;
}

.ws-btn--submit {
  background: #ff4527;
  color: #ffffff;
}

.ws-btn--submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(255, 69, 39, 0.32);
}

.ws-later {
  padding: 0;
  border: 0;
  cursor: pointer;
  background: transparent;
  color: rgba(45, 45, 45, 0.7);
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ws-later:hover {
  color: #ff4527;
}

.ws-tierhints {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 22px;
  font-family: var(--font-neutral);
  font-size: 12.5px;
  color: rgba(45, 45, 45, 0.6);
}

.ws-products {
  display: grid;
  margin-top: 34px;
}

.ws-product {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
}

.ws-product + .ws-product {
  border-top: 1px solid rgba(45, 45, 45, 0.12);
}

.ws-product > img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 12px;
  background: #f2f2f2;
}

.ws-product.is-sold-out > img {
  opacity: 0.5;
  filter: grayscale(0.6);
}

.ws-product__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.ws-product__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(45, 45, 45, 0.6);
}

.ws-product__info h3 {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
}

.ws-product__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  font-family: var(--font-neutral);
  font-size: 13px;
  color: rgba(45, 45, 45, 0.6);
}

.ws-product__price strong {
  font-size: 14px;
  font-weight: 600;
  color: #2d2d2d;
}

.ws-product__details {
  margin-top: 3px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: transparent;
  color: rgba(45, 45, 45, 0.7);
  font-family: var(--font-neutral);
  font-size: 12.5px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ws-product__details:hover {
  color: #ff4527;
}

.ws-qty select {
  min-width: 110px;
  min-height: 46px;
  padding: 10px 38px 10px 20px;
  border: 1px solid rgba(45, 45, 45, 0.25);
  border-radius: 999px;
  cursor: pointer;
  background: #ffffff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d2d2d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 16px center / 14px;
  font-family: var(--font-neutral);
  font-size: 14px;
  color: #2d2d2d;
  appearance: none;
}

.ws-product__qty .shop-badge {
  position: static;
}

.ws-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(45, 45, 45, 0.2);
}

.ws-summary h3 {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 19px;
  font-weight: 500;
}

.ws-summary h3 em {
  font-style: normal;
  color: rgba(45, 45, 45, 0.5);
}

.ws-summary p {
  margin: 6px 0 0;
  font-family: var(--font-neutral);
  font-size: 12.5px;
  color: rgba(45, 45, 45, 0.55);
}

.ws-summary strong {
  font-family: var(--font-neutral);
  font-size: 18px;
  font-weight: 700;
}

.ws-review {
  margin-top: 40px;
  text-align: left;
}

.ws-review h3 {
  margin: 0 0 14px;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
}

.ws-review p {
  margin: 0 0 7px;
  font-family: var(--font-neutral);
  font-size: 14px;
  line-height: 1.55;
  color: #2d2d2d;
}

.ws-review p > span {
  color: rgba(45, 45, 45, 0.5);
}

.ws-review ul {
  margin: 0 0 10px;
  padding-left: 20px;
  font-family: var(--font-neutral);
  font-size: 14px;
  line-height: 1.7;
}

.ws-review hr {
  margin: 26px 0;
  border: 0;
  border-top: 1px dashed rgba(45, 45, 45, 0.25);
}

.ws-review__total strong {
  font-weight: 700;
}

.ws-review__none {
  color: rgba(45, 45, 45, 0.6);
}

.ws-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 30px 0 10px;
  text-align: center;
}

.ws-success__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #ff4527;
  color: #ffffff;
}

.ws-success__badge svg {
  width: 28px;
  height: 28px;
}

.ws-success h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 500;
}

.ws-success p {
  margin: 0;
  max-width: 46ch;
  font-family: var(--font-neutral);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(45, 45, 45, 0.7);
}

.ws-success .ws-btn {
  margin-top: 8px;
}

/* Wholesale product modal */
.ws-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.ws-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 45, 45, 0.6);
}

.ws-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: min(1020px, 100%);
  height: min(620px, calc(100vh - 48px));
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 40px 90px rgba(20, 18, 16, 0.4);
}

.ws-modal__left {
  position: relative;
  background: #2d2d2d;
  color: #ffffff;
  overflow: hidden;
}

.ws-modal__slides,
.ws-slide {
  position: absolute;
  inset: 0;
}

.ws-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 48px;
  text-align: center;
}

.ws-slide.is-active {
  display: flex;
}

.ws-slide--img {
  padding: 0;
}

.ws-slide--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ws-slide__stars {
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 3px;
}

.ws-slide--quote blockquote {
  margin: 0;
  max-width: 22ch;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.2;
}

.ws-slide__name {
  margin: 0;
  font-family: var(--font-neutral);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.ws-slide__verified {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-family: var(--font-secondary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ws-slide__notes {
  position: absolute;
  bottom: 34px;
  left: 48px;
  right: 48px;
  margin: 0;
  font-family: var(--font-neutral);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.ws-slide--margin h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.15;
}

.ws-slide--margin > p {
  margin: 0 0 10px;
  font-family: var(--font-neutral);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.ws-tiertable {
  border-collapse: collapse;
  font-family: var(--font-neutral);
  font-size: 13.5px;
}

.ws-tiertable th,
.ws-tiertable td {
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.ws-tiertable thead th {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  font-family: var(--font-primary);
  font-size: 14.5px;
  font-weight: 500;
}

.ws-tiertable th:first-child,
.ws-tiertable td:first-child {
  border-left: 0;
  color: rgba(255, 255, 255, 0.7);
}

.ws-tiertable .is-hi {
  background: #ffffff;
  color: #2d2d2d;
  font-weight: 600;
}

.ws-tiertable thead .is-hi {
  border-radius: 8px 8px 0 0;
}

.ws-modal__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transform: translateY(-50%);
  background: #ffffff;
  color: #2d2d2d;
  transition: transform 140ms ease;
}

.ws-modal__arrow:hover {
  transform: translateY(-50%) scale(1.08);
}

.ws-modal__arrow--prev { left: 18px; }
.ws-modal__arrow--next { right: 18px; }

.ws-modal__arrow svg {
  width: 17px;
  height: 17px;
}

.ws-modal__right {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.ws-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(45, 45, 45, 0.2);
  border-radius: 999px;
  cursor: pointer;
  background: #ffffff;
  color: #2d2d2d;
}

.ws-modal__close svg {
  width: 15px;
  height: 15px;
}

.ws-modal__scroll {
  flex: 1;
  overflow-y: auto;
  padding: 30px 34px 20px;
}

.ws-modal__rating {
  margin: 0 0 10px;
  font-family: var(--font-neutral);
  font-size: 13px;
  color: rgba(45, 45, 45, 0.7);
}

.ws-modal__right h3 {
  margin: 0 0 8px;
  padding-right: 40px;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.12;
}

.ws-modal__story {
  margin: 0 0 22px;
  font-family: var(--font-neutral);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(45, 45, 45, 0.7);
}

.ws-acc {
  border-top: 1px dashed rgba(45, 45, 45, 0.25);
}

.ws-acc:last-of-type {
  border-bottom: 1px dashed rgba(45, 45, 45, 0.25);
}

.ws-acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-neutral);
  font-size: 14px;
  font-weight: 600;
  color: #2d2d2d;
}

.ws-acc summary::-webkit-details-marker { display: none; }

.ws-acc summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 1.8px solid #2d2d2d;
  border-bottom: 1.8px solid #2d2d2d;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.ws-acc[open] summary::after {
  transform: rotate(-135deg);
}

.ws-acc__body {
  padding: 0 0 18px;
}

.ws-acc__body p {
  margin: 0 0 8px;
  font-family: var(--font-neutral);
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(45, 45, 45, 0.75);
}

.ws-modal__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 34px 20px;
  border-top: 1px solid rgba(45, 45, 45, 0.12);
  background: #fafafa;
}

.ws-modal__qty select {
  min-width: 96px;
  min-height: 50px;
  padding: 12px 38px 12px 22px;
  border: 1px solid rgba(45, 45, 45, 0.25);
  border-radius: 999px;
  cursor: pointer;
  background: #ffffff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d2d2d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 16px center / 14px;
  font-family: var(--font-neutral);
  font-size: 14px;
  appearance: none;
}

.ws-modal__add {
  flex: 1;
  min-height: 50px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: #2d2d2d;
  color: #ffffff;
  font-family: var(--font-secondary);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 160ms ease;
}

.ws-modal__add:hover:not(:disabled) {
  background: #ff4527;
}

.ws-modal__add:disabled {
  cursor: default;
  background: #ececec;
  color: rgba(45, 45, 45, 0.4);
}

@media (max-width: 989px) {
  .ws-intro__card {
    grid-template-columns: minmax(0, 1fr);
  }

  .ws-intro__media {
    order: -1;
    min-height: 240px;
  }

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

  .ws-grid2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .ws-product {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .ws-product > img {
    width: 64px;
    height: 64px;
  }

  .ws-product__qty {
    grid-column: 2;
    justify-self: start;
  }

  .ws-nav {
    flex-wrap: wrap;
  }

  .ws-modal__dialog {
    grid-template-columns: minmax(0, 1fr);
    height: min(720px, calc(100vh - 32px));
    overflow-y: auto;
  }

  .ws-modal__left {
    min-height: 320px;
  }
}
