:root {
  --acai: #4b135f;
  --acai-dark: #210824;
  --berry: #d91862;
  --lime: #96d742;
  --cream: #fff4df;
  --paper: #fffaf2;
  --ink: #231325;
  --muted: #776577;
  --line: rgba(75, 19, 95, 0.16);
  --glass: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.84);
  --glass-border: rgba(255, 255, 255, 0.72);
  --depth-soft: 0 18px 46px rgba(33, 8, 36, 0.12);
  --shadow: 0 26px 70px rgba(33, 8, 36, 0.2);
  --button-shadow: 0 16px 32px rgba(75, 19, 95, 0.28);
  --button-shadow-hover: 0 20px 42px rgba(75, 19, 95, 0.34);
  --page-x: clamp(16px, 4vw, 64px);
  --content-max: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 244, 223, 0.74), rgba(255, 250, 242, 0.94) 360px),
    var(--paper);
}

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

button,
input,
select {
  font: inherit;
}

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

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  min-height: 68px;
  padding: 12px var(--page-x);
  background: rgba(255, 250, 242, 0.74);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.trust-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  font-weight: 900;
}

.brand span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--berry), var(--acai));
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(217, 24, 98, 0.3);
}

.nav-links {
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--acai);
}

.header-cta,
.primary-button,
.secondary-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  outline-offset: 4px;
  transform: translate3d(0, 0, 0);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
  user-select: none;
}

.header-cta,
.primary-button {
  color: white;
  background: linear-gradient(135deg, var(--berry), var(--acai));
  box-shadow: var(--button-shadow);
}

.secondary-button {
  color: var(--acai);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(33, 8, 36, 0.08);
}

.header-cta::before,
.primary-button::before,
.secondary-button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0;
  transition: opacity 180ms ease, transform 420ms ease;
}

.header-cta::before,
.primary-button::before {
  background: linear-gradient(120deg, transparent 0 18%, rgba(255, 255, 255, 0.26) 36%, transparent 56% 100%);
  transform: translateX(-105%);
}

.secondary-button::before {
  background: linear-gradient(135deg, rgba(217, 24, 98, 0.08), rgba(150, 215, 66, 0.12));
}

.header-cta::after,
.primary-button::after,
.secondary-button::after {
  content: ">";
  font-size: 0.92em;
  transform: translateX(0);
  transition: transform 180ms ease;
}

.primary-button:hover,
.secondary-button:hover,
.header-cta:hover {
  transform: translateY(-3px);
}

.header-cta:hover,
.primary-button:hover {
  box-shadow: var(--button-shadow-hover);
}

.secondary-button:hover {
  border-color: rgba(75, 19, 95, 0.32);
  box-shadow: 0 16px 34px rgba(33, 8, 36, 0.12);
}

.header-cta:hover::before,
.primary-button:hover::before {
  opacity: 1;
  transform: translateX(105%);
}

.secondary-button:hover::before {
  opacity: 1;
}

.header-cta:hover::after,
.primary-button:hover::after,
.secondary-button:hover::after {
  transform: translateX(3px);
}

.header-cta:active,
.primary-button:active,
.secondary-button:active {
  transform: translateY(-1px) scale(0.98);
}

.header-cta:focus-visible,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.checkout-step:focus-visible,
.addon-options button:focus-visible,
.size-options button:focus-visible,
.stepper button:focus-visible,
.extra-fields summary:focus-visible {
  outline: 3px solid rgba(150, 215, 66, 0.68);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(300px, 620px);
  justify-content: center;
  gap: clamp(28px, 5vw, 76px);
  min-height: calc(100vh - 68px);
  min-height: calc(100svh - 68px);
  padding: clamp(42px, 7vw, 92px) var(--page-x) 42px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.96) 0%, rgba(255, 241, 246, 0.86) 46%, rgba(244, 255, 230, 0.9) 100%);
}

.hero-copy {
  align-self: center;
  min-width: 0;
  max-width: 720px;
  animation: fadeSlideUp 680ms ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: 5.8rem;
  line-height: 0.86;
}

h2 {
  margin: 0;
  font-size: 3.25rem;
  line-height: 1;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
}

.city-line {
  margin: 20px 0 0;
  font-size: 2.25rem;
  font-weight: 900;
}

.city-line strong {
  color: var(--acai);
}

.free-delivery strong {
  color: #138042;
}

.hero-text,
.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-text {
  max-width: 630px;
  margin: 20px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  animation: fadeSlideUp 680ms 140ms ease both;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  animation: fadeSlideUp 680ms 220ms ease both;
}

.trust-row span {
  padding: 9px 12px;
  color: var(--acai-dark);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.trust-row span:hover {
  transform: translateY(-3px);
  background: white;
  box-shadow: 0 10px 22px rgba(33, 8, 36, 0.1);
}

.hero-stage {
  display: grid;
  align-items: center;
  justify-items: center;
  min-width: 0;
  perspective: 1200px;
}

.tilt-card {
  position: relative;
  width: min(100%, 620px);
  transform: rotateY(-10deg) rotateX(7deg);
  transform-style: preserve-3d;
  animation: floatStage 7s ease-in-out infinite;
}

.tilt-card::before {
  position: absolute;
  inset: 11% 1% 1% 10%;
  content: "";
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.18));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
  transform: translateZ(-80px);
  box-shadow: var(--shadow);
}

.tilt-card::after {
  position: absolute;
  inset: 4% 10% auto auto;
  width: 44%;
  height: 36%;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0));
  border-radius: 24px;
  pointer-events: none;
  transform: translateZ(44px) rotate(-8deg);
}

.hero-product {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 36px 44px rgba(33, 8, 36, 0.22));
}

.floating-tag {
  position: absolute;
  z-index: 3;
  padding: 9px 12px;
  color: var(--acai-dark);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 26px rgba(33, 8, 36, 0.12);
  font-size: 0.86rem;
  font-weight: 900;
  animation: bobTag 4.8s ease-in-out infinite;
}

.tag-one {
  top: 10%;
  left: 6%;
  transform: translateZ(70px) rotate(-6deg);
}

.tag-two {
  right: 3%;
  bottom: 31%;
  transform: translateZ(90px) rotate(7deg);
  animation-delay: -1.6s;
}

.tag-three {
  left: 18%;
  bottom: 12%;
  transform: translateZ(60px) rotate(4deg);
  animation-delay: -3.1s;
}

@keyframes floatStage {
  0%,
  100% {
    transform: rotateY(-10deg) rotateX(7deg) translateY(0);
  }

  50% {
    transform: rotateY(-4deg) rotateX(4deg) translateY(-14px);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes bobTag {
  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -10px;
  }
}

.price-band,
.addons-section,
.order-section {
  padding: clamp(48px, 7vw, 86px) var(--page-x);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.price-band > .section-heading,
.combo-section > .section-heading,
.addons-section > .section-heading {
  width: min(100%, var(--content-max));
  max-width: var(--content-max);
  margin-right: auto;
  margin-left: auto;
}

.price-band > .section-heading p,
.combo-section > .section-heading p,
.addons-section > .section-heading p {
  max-width: 780px;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
  gap: 16px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.price-card,
.checkout-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  box-shadow: var(--depth-soft);
  -webkit-backdrop-filter: blur(16px) saturate(132%);
  backdrop-filter: blur(16px) saturate(132%);
}

.price-card {
  position: relative;
  min-height: 260px;
  padding: 0;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.price-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}

.price-card:hover {
  transform: translateY(-6px) rotateX(3deg) rotateY(-2deg);
  box-shadow: 0 24px 58px rgba(75, 19, 95, 0.16);
}

.price-card:nth-child(2),
.addon-pill:nth-child(2n),
.addon-options button:nth-child(2n) {
  transition-delay: 20ms;
}

.price-card:nth-child(3),
.addon-pill:nth-child(3n),
.addon-options button:nth-child(3n) {
  transition-delay: 40ms;
}

.price-card:nth-child(4),
.addon-pill:nth-child(4n),
.addon-options button:nth-child(4n) {
  transition-delay: 60ms;
}

.price-card:nth-child(5),
.addon-pill:nth-child(5n),
.addon-options button:nth-child(5n) {
  transition-delay: 80ms;
}

.price-card strong {
  display: block;
  margin-top: 8px;
  color: var(--acai);
  font-size: 1.85rem;
}

.price-card span {
  color: var(--muted);
  font-weight: 800;
}

.price-media {
  height: 138px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 244, 223, 0.78), rgba(255, 255, 255, 0.38));
}

.price-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.price-card:hover .price-media img {
  transform: scale(1.08);
}

.price-content {
  position: relative;
  z-index: 2;
  padding: 18px;
}

.addon-cloud,
.addon-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.addon-cloud {
  max-width: var(--content-max);
  margin: 0 auto;
}

.addon-pill,
.addon-options button {
  min-height: 40px;
  padding: 0 13px;
  color: var(--acai-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-weight: 800;
  transform: translateZ(0);
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.addon-options button {
  cursor: pointer;
  outline-offset: 4px;
}

.addon-pill:hover,
.addon-options button:hover {
  transform: translateY(-2px);
  border-color: rgba(75, 19, 95, 0.3);
  box-shadow: 0 10px 20px rgba(33, 8, 36, 0.1);
}

.addon-options button.is-selected {
  color: white;
  background: var(--acai);
  border-color: var(--acai);
  box-shadow: 0 12px 24px rgba(75, 19, 95, 0.2);
}

.order-section {
  background:
    linear-gradient(180deg, rgba(255, 244, 223, 0.26), rgba(255, 244, 223, 0.7)),
    #fffaf2;
}

.order-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(16px, 3vw, 28px);
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0;
}

.order-builder,
.checkout-box {
  padding: clamp(18px, 3vw, 30px);
}

.order-builder {
  min-width: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.28));
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  box-shadow: var(--depth-soft);
  -webkit-backdrop-filter: blur(16px) saturate(132%);
  backdrop-filter: blur(16px) saturate(132%);
}

.control-group {
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.control-group legend {
  margin-bottom: 12px;
  font-weight: 950;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 10px;
}

.size-options button {
  position: relative;
  overflow: hidden;
  min-height: 92px;
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  cursor: pointer;
  text-align: left;
  outline-offset: 4px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.size-options button::after {
  position: absolute;
  inset: auto 12px 12px auto;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--lime);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.55);
  transition: opacity 180ms ease, transform 180ms ease;
}

.size-options button:hover {
  transform: translateY(-3px);
  border-color: rgba(75, 19, 95, 0.3);
  box-shadow: 0 14px 28px rgba(33, 8, 36, 0.1);
}

.size-options button strong,
.size-options button span {
  display: block;
}

.size-options button strong {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.size-options button span {
  color: var(--muted);
  font-weight: 900;
}

.size-options button.is-selected {
  color: white;
  background: linear-gradient(135deg, var(--berry), var(--acai));
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(75, 19, 95, 0.22);
}

.size-options button.is-selected span {
  color: white;
}

.size-options button.is-selected::after {
  opacity: 1;
  transform: scale(1);
}

.quantity-row,
.total-row,
.summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.quantity-row {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-weight: 950;
}

.stepper {
  display: grid;
  grid-template-columns: 42px 42px 42px;
  align-items: center;
  height: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  text-align: center;
}

.stepper button {
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 950;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.stepper button:hover {
  color: white;
  background: var(--acai);
}

.stepper button:active {
  transform: scale(0.92);
}

.checkout-box {
  align-self: start;
  min-width: 0;
  transform: translateZ(0);
}

.summary-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  color: var(--muted);
}

.summary-item {
  align-items: flex-start;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(75, 19, 95, 0.1);
  animation: fadeSlideUp 260ms ease both;
}

.summary-item strong {
  color: var(--ink);
  text-align: right;
}

.total-row {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 1.3rem;
  font-weight: 950;
}

.total-row strong {
  transition: color 180ms ease, transform 180ms ease;
}

.total-row.is-updated strong {
  color: var(--berry);
  animation: totalPop 280ms ease both;
}

.checkout-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.checkout-step {
  display: flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  padding: 8px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease,
    opacity 160ms ease;
}

.checkout-step span {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--acai);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 950;
}

.checkout-step strong {
  overflow: hidden;
  font-size: 0.74rem;
  font-weight: 950;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.checkout-step:hover:not(:disabled) {
  color: var(--acai);
  background: rgba(255, 255, 255, 0.62);
  transform: translateY(-1px);
}

.checkout-step.is-active {
  color: var(--acai-dark);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 22px rgba(33, 8, 36, 0.08);
}

.checkout-step.is-active span,
.checkout-step.is-complete span {
  color: white;
  background: linear-gradient(135deg, var(--berry), var(--acai));
  border-color: transparent;
}

.checkout-step:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.checkout-step-panel {
  display: grid;
  gap: 10px;
  animation: fadeSlideUp 220ms ease both;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.checkout-form input,
.checkout-form select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.checkout-form input:focus,
.checkout-form select:focus {
  border-color: var(--berry);
  box-shadow: 0 0 0 3px rgba(217, 24, 98, 0.12);
}

.checkout-form input.is-invalid,
.checkout-form select.is-invalid {
  border-color: #d81f43;
  background: #fff7f8;
}

.field-error {
  color: #b61535;
  font-size: 0.76rem;
  font-weight: 850;
}

.form-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 10px;
}

.checkout-review {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
}

.review-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(75, 19, 95, 0.1);
  color: var(--muted);
  font-size: 0.9rem;
}

.review-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.review-row strong {
  color: var(--ink);
  text-align: right;
}

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

.wizard-actions .primary-button,
.wizard-actions .secondary-button {
  flex: 1 1 132px;
}

.wizard-actions [data-checkout-button] {
  flex-basis: 100%;
}

.combo-section {
  padding: clamp(48px, 7vw, 86px) var(--page-x);
  background:
    linear-gradient(115deg, rgba(75, 19, 95, 0.06), transparent 40%),
    linear-gradient(180deg, #fffaf2, #ffffff);
}

.combo-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.1fr) minmax(260px, 1.1fr);
  gap: 18px;
  align-items: stretch;
  max-width: var(--content-max);
  margin: 0 auto;
}

.combo-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  isolation: isolate;
  background: var(--acai-dark);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transform: translateZ(0);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.combo-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.combo-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, transparent 34%, rgba(20, 6, 24, 0.88));
}

.combo-card:hover img {
  transform: scale(1.06);
}

.combo-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: 0 30px 76px rgba(33, 8, 36, 0.24);
}

.combo-card div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: white;
}

.combo-card span,
.checkout-head span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: var(--acai-dark);
  background: var(--lime);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.combo-card h3 {
  margin-top: 10px;
  font-size: 2.1rem;
}

.combo-card p {
  max-width: 300px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.featured-combo {
  min-height: 500px;
}

.delivery-card {
  min-height: 500px;
}

.compact-checkout {
  position: sticky;
  top: 88px;
  max-height: calc(100vh - 108px);
  overflow: auto;
  scrollbar-width: thin;
}

.checkout-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.checkout-head .eyebrow {
  margin-bottom: 5px;
}

.compact-checkout .summary-list {
  margin: 14px 0;
}

.compact-checkout .summary-item {
  padding-bottom: 8px;
  font-size: 0.92rem;
}

.compact-checkout .total-row {
  padding: 12px 0;
}

.compact-checkout .checkout-form {
  gap: 10px;
  margin-top: 14px;
}

.compact-checkout .checkout-form input,
.compact-checkout .checkout-form select {
  min-height: 40px;
}

.extra-fields {
  padding: 10px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: rgba(255, 244, 223, 0.42);
}

.extra-fields summary {
  cursor: pointer;
  color: var(--acai);
  font-weight: 950;
  outline-offset: 4px;
  transition: color 160ms ease;
}

.extra-fields summary:hover {
  color: var(--berry);
}

.extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.span-2 {
  grid-column: span 2;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.reveal.is-visible .price-card,
.reveal.is-visible .combo-card,
.reveal.is-visible .addon-pill,
.reveal.is-visible .order-panel {
  animation: revealItem 560ms ease both;
}

.reveal.is-visible .price-card:nth-child(2),
.reveal.is-visible .combo-card:nth-child(2),
.reveal.is-visible .addon-pill:nth-child(2n) {
  animation-delay: 70ms;
}

.reveal.is-visible .price-card:nth-child(3),
.reveal.is-visible .combo-card:nth-child(3),
.reveal.is-visible .addon-pill:nth-child(3n) {
  animation-delay: 120ms;
}

.reveal.is-visible .price-card:nth-child(4),
.reveal.is-visible .addon-pill:nth-child(4n) {
  animation-delay: 170ms;
}

.reveal.is-visible .price-card:nth-child(5),
.reveal.is-visible .addon-pill:nth-child(5n) {
  animation-delay: 220ms;
}

@keyframes revealItem {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

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

@keyframes totalPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

.primary-button.full {
  width: 100%;
}

.primary-button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: var(--button-shadow);
}

.primary-button[disabled]::after {
  content: "...";
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 24px var(--page-x);
  color: white;
  background: var(--acai-dark);
  text-align: center;
}

@media (min-width: 1280px) {
  .hero {
    grid-template-columns: minmax(0, 720px) minmax(420px, 620px);
  }

  .hero-product {
    max-height: 680px;
    object-fit: contain;
  }
}

@media (max-width: 1020px) {
  .hero,
  .order-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .city-line {
    font-size: 1.9rem;
  }

  .combo-card h3 {
    font-size: 1.9rem;
  }

  .hero-stage {
    max-width: 620px;
    margin: 0 auto;
  }

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

  .combo-grid {
    grid-template-columns: 1fr;
  }

  .combo-card,
  .featured-combo,
  .delivery-card {
    min-height: 360px;
  }

  .compact-checkout {
    position: static;
    max-height: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: center;
    gap: 10px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .header-cta::after {
    display: none;
  }

  .hero {
    padding-top: 34px;
    gap: 24px;
  }

  h1 {
    font-size: 3.25rem;
    line-height: 0.94;
  }

  h2 {
    font-size: 2.1rem;
    line-height: 1.05;
  }

  .city-line {
    font-size: 1.45rem;
  }

  .combo-card h3 {
    font-size: 1.55rem;
  }

  .hero-text,
  .section-heading p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .price-grid,
  .form-grid,
  .extra-grid {
    grid-template-columns: 1fr;
  }

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

  .span-2 {
    grid-column: auto;
  }

  .price-card {
    min-height: 220px;
  }

  .price-media {
    height: 128px;
  }

  .combo-card,
  .featured-combo,
  .delivery-card {
    min-height: 320px;
  }

  .floating-tag {
    display: none;
  }

  .tilt-card {
    transform: rotateY(-4deg) rotateX(3deg);
  }
}

@media (max-width: 520px) {
  :root {
    --page-x: 14px;
  }

  .site-header {
    position: static;
  }

  .brand {
    max-width: 190px;
  }

  .hero-actions,
  .hero-actions a,
  .header-cta {
    width: 100%;
  }

  .header-cta {
    flex: 1 1 100%;
  }

  .trust-row span,
  .addon-pill,
  .addon-options button {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
    text-align: center;
  }

  .checkout-step {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 8px 4px;
    text-align: center;
  }

  .checkout-step strong {
    font-size: 0.66rem;
  }

  .size-options {
    grid-template-columns: 1fr;
  }

  .quantity-row,
  .total-row,
  .summary-item,
  .checkout-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .summary-item strong {
    text-align: left;
  }

  .review-row {
    flex-direction: column;
    gap: 4px;
  }

  .review-row strong {
    text-align: left;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 2.72rem;
  }

  .brand span:last-child {
    max-width: 128px;
  }

  .order-builder,
  .checkout-box {
    padding: 16px;
  }
}
