/* SnappyMeals Design System */
:root {
  --color-primary: #C93A1A;
  --color-secondary: #E8622A;
  --color-bg: #FDF5EC;
  --color-bg-alt: #F0DCC8;
  --color-dark: #1C0F07;
  --color-dark-mid: #3D1F0E;
  --color-text-body: #5C3D2A;
  --color-text-muted: #9B7B65;
  --color-text-light: #D4B8A8;
  --color-white-warm: #FFF8F2;
  --color-success: #2D6A4F;
  --color-overlay: rgba(28, 15, 7, 0.55);
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 100px;
  --space-2xl: 140px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", Arial, sans-serif;
  --text-hero: clamp(52px, 8vw, 96px);
  --text-h1: clamp(40px, 5vw, 64px);
  --text-h2: clamp(30px, 4vw, 48px);
  --text-h3: clamp(20px, 2.5vw, 28px);
  --shadow-card: 0 2px 12px rgba(28, 15, 7, 0.06);
  --shadow-card-hover: 0 12px 40px rgba(28, 15, 7, 0.14);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

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

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

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--color-dark);
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

.section-noise {
  position: relative;
  overflow: hidden;
}

.section-noise::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background: var(--color-white-warm);
  filter: url(#noise);
}

.section-noise > * {
  position: relative;
  z-index: 1;
}

.section-label {
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.section-header h2 {
  max-width: 600px;
  font-size: var(--text-h2);
  font-weight: 700;
}

.split-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-md);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms var(--ease-smooth);
}

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

/* Logo */
.logo-link {
  display: inline-flex;
  align-items: center;
  height: 48px;
}

.brand-logo {
  width: 208px;
  height: 50px;
  overflow: visible;
}

.logo-word {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0;
}

.logo-snappy {
  fill: var(--color-dark);
}

.logo-meals {
  fill: var(--color-primary);
}

.logo-fork {
  fill: var(--color-bg);
}

.logo--light .logo-snappy,
.logo--light .logo-meals {
  fill: var(--color-white-warm);
}

.logo--light .logo-fork {
  fill: var(--color-dark);
}

/* Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  background: rgba(253, 245, 236, 0.88);
  backdrop-filter: blur(20px);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  border-bottom: 1px solid rgba(240, 220, 200, 0.6);
  box-shadow: 0 10px 30px rgba(28, 15, 7, 0.05);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-md);
  width: min(1240px, calc(100% - 40px));
  height: 72px;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.nav-links a {
  position: relative;
  color: var(--color-text-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--color-primary);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.cart-icon-button,
.icon-button,
.circle-button {
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--color-text-body);
}

.cart-icon-button {
  position: relative;
  width: 44px;
  height: 44px;
  font-size: 19px;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white-warm);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.cart-count.pop {
  animation: badgePop 360ms var(--ease-spring);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--color-bg-alt);
  box-shadow: 0 10px 26px rgba(28, 15, 7, 0.08);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--color-dark);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 7vw, 52px);
  background:
    radial-gradient(circle at 18% 16%, rgba(232, 98, 42, 0.26), rgba(232, 98, 42, 0) 32%),
    radial-gradient(circle at 88% 82%, rgba(240, 220, 200, 0.16), rgba(240, 220, 200, 0) 34%),
    linear-gradient(145deg, var(--color-dark) 0%, var(--color-dark-mid) 54%, var(--color-dark) 100%);
  color: var(--color-white-warm);
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 260ms ease, transform 260ms var(--ease-smooth);
}

.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  filter: url(#noise);
  background: var(--color-white-warm);
}

.mobile-menu::after {
  content: "Order hot. Move fast.";
  position: absolute;
  z-index: 0;
  left: clamp(24px, 8vw, 52px);
  right: clamp(24px, 8vw, 52px);
  bottom: clamp(28px, 8vw, 54px);
  min-height: 138px;
  display: flex;
  align-items: end;
  border-radius: 24px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(28, 15, 7, 0.08), rgba(28, 15, 7, 0.78)),
    url("https://images.unsplash.com/photo-1567620832903-9fc6debc209f?auto=format&fit=crop&w=900&q=80") center / cover;
  box-shadow: 0 24px 80px rgba(28, 15, 7, 0.34);
  color: var(--color-white-warm);
  font-family: var(--font-display);
  font-size: clamp(22px, 7vw, 34px);
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  transform: translateY(18px);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-menu a,
.mobile-menu .btn {
  position: relative;
  z-index: 1;
  width: fit-content;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  opacity: 0;
  transform: translateX(-20px);
}

.mobile-menu.open a,
.mobile-menu.open .btn {
  animation: mobileLinkIn 460ms var(--ease-smooth) forwards;
}

.mobile-menu.open::after {
  animation: fadeUp 560ms var(--ease-smooth) 360ms forwards;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 420px);
  border-bottom: 1px solid rgba(255, 248, 242, 0.16);
  padding: 12px 0;
}

.mobile-menu a::after {
  content: "→";
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
}

.mobile-menu .btn {
  width: min(100%, 360px);
  min-height: 62px;
  margin-top: 10px;
  border-width: 2px;
  font-size: clamp(18px, 5vw, 24px);
}

.mobile-menu.open a:nth-of-type(2) { animation-delay: 70ms; }
.mobile-menu.open a:nth-of-type(3) { animation-delay: 140ms; }
.mobile-menu.open a:nth-of-type(4) { animation-delay: 210ms; }
.mobile-menu.open .btn { animation-delay: 280ms; }

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255, 248, 242, 0.35);
  border-radius: 50%;
  background: rgba(255, 248, 242, 0.12);
  color: var(--color-white-warm);
  font-size: 22px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 60px;
  padding: 14px 32px;
  border: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  transition: transform 220ms var(--ease-spring), box-shadow 220ms var(--ease-spring), background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white-warm);
}

.btn-secondary {
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
}

.btn-ghost {
  border: 1.5px solid rgba(255, 248, 242, 0.4);
  background: rgba(255, 248, 242, 0.12);
  color: var(--color-white-warm);
  backdrop-filter: blur(8px);
}

.btn-small {
  min-height: 42px;
  padding: 11px 24px;
}

.btn-full {
  width: 100%;
}

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

@media (hover: hover) {
  .btn-primary:hover {
    background: var(--color-secondary);
    box-shadow: 0 8px 24px rgba(201, 58, 26, 0.35);
    transform: translateY(-2px);
  }

  .btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white-warm);
  }

  .btn-ghost:hover {
    background: rgba(255, 248, 242, 0.22);
  }
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  align-items: center;
  min-height: 100svh;
  padding: 104px max(40px, calc((100vw - 1180px) / 2)) 40px;
  background: var(--color-bg);
}

.hero-copy {
  width: 100%;
  max-width: 620px;
  min-width: 0;
}

.label-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 20px;
  border-radius: 60px;
  padding: 9px 15px;
  background: rgba(201, 58, 26, 0.12);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.hero-label {
  opacity: 0;
  transform: translateX(-18px);
  animation: heroSlideIn 520ms var(--ease-smooth) 100ms forwards;
}

.hero-title {
  display: block;
  max-width: 660px;
  font-size: var(--text-hero);
  font-weight: 800;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.clip-word {
  display: inline-block;
  margin-right: 0.22em;
  clip-path: inset(0 100% 0 0);
  animation: clipWord 720ms var(--ease-smooth) forwards;
}

.word-1 { animation-delay: 200ms; }
.word-2 { animation-delay: 320ms; }
.word-3 { animation-delay: 440ms; }
.word-4 { animation-delay: 560ms; }

.hero-subtitle {
  max-width: 440px;
  margin-top: 22px;
  color: var(--color-text-body);
  font-size: 18px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 560ms ease 680ms forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 560ms ease 800ms forwards;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  animation: fadeOnly 600ms ease 920ms forwards;
}

.trust-row span:nth-child(even) {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-bg-alt);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: 5%;
  top: 8%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(232, 98, 42, 0.4);
}

.hero-visual::after {
  content: "";
  position: absolute;
  left: 6%;
  bottom: 12%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 98, 42, 0.38), rgba(232, 98, 42, 0));
}

.hero-blob {
  position: absolute;
  inset: 44px 0 28px 50px;
  clip-path: polygon(17% 3%, 78% 0, 100% 22%, 94% 76%, 65% 100%, 18% 92%, 0 55%, 5% 19%);
  transform: scale(0.88);
  opacity: 0;
  animation: blobIn 760ms var(--ease-smooth) 300ms forwards;
}

.hero-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-order-card,
.rating-badge {
  position: absolute;
  z-index: 3;
  box-shadow: 0 18px 50px rgba(28, 15, 7, 0.16);
  opacity: 0;
  animation: floatingIn 650ms var(--ease-spring) 760ms forwards, floatY 4s ease-in-out 1.5s infinite;
}

.floating-order-card {
  left: 0;
  bottom: 85px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 12px;
  width: min(320px, 82%);
  border-radius: 16px;
  padding: 12px;
  background: var(--color-white-warm);
}

.floating-order-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.floating-order-card strong {
  display: block;
  color: var(--color-dark);
  font-size: 14px;
  line-height: 1.2;
}

.floating-order-card span {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
}

.floating-order-card button {
  border: 0;
  border-radius: 60px;
  padding: 8px 12px;
  background: var(--color-primary);
  color: var(--color-white-warm);
  font-size: 12px;
  font-weight: 800;
}

.rating-badge {
  top: 92px;
  right: 0;
  border-radius: 60px;
  padding: 13px 18px;
  background: var(--color-dark);
  color: var(--color-text-light);
  font-size: 13px;
  font-weight: 700;
  animation-delay: 900ms, 1.7s;
}

/* Marquee */
.marquee-strip {
  display: flex;
  align-items: center;
  height: 52px;
  overflow: hidden;
  background: var(--color-primary);
  color: var(--color-white-warm);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  flex: 0 0 auto;
  padding-right: 42px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track b {
  color: var(--color-secondary);
  font-weight: 800;
}

/* Cards */
.meal-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 4px 28px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.meal-carousel::-webkit-scrollbar,
.filter-scroll::-webkit-scrollbar {
  display: none;
}

.meal-card,
.product-card,
.testimonial-card,
.form-card,
.checkout-summary,
.confirmation-card {
  border-radius: 20px;
  background: var(--color-bg-alt);
  box-shadow: var(--shadow-card);
}

.meal-card,
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 280ms var(--ease-smooth), box-shadow 280ms var(--ease-smooth);
}

.meal-image,
.product-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: var(--color-bg-alt);
}

.meal-image img,
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.meal-content,
.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
  background: var(--color-bg-alt);
}

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 60px;
  padding: 6px 10px;
  background: var(--color-bg);
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.meal-card h3,
.product-card h3 {
  display: -webkit-box;
  min-height: 44px;
  margin-top: 12px;
  overflow: hidden;
  color: var(--color-dark);
  font-size: 20px;
  font-weight: 700;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.meal-card p,
.product-card p {
  display: -webkit-box;
  margin-top: 5px;
  overflow: hidden;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}

.price {
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.add-circle {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white-warm);
  transition: transform 220ms var(--ease-spring), background-color 220ms ease;
}

.wishlist-button {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 248, 242, 0.72);
  color: var(--color-text-muted);
  backdrop-filter: blur(10px);
  transition: color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.wishlist-button.active,
.wishlist-button:hover {
  color: var(--color-primary);
  animation: heartBeat 420ms var(--ease-spring);
}

.product-card .btn {
  min-height: 44px;
  padding: 12px 18px;
  opacity: 0;
  transform: translateY(100%);
}

.popular-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  border-radius: 60px;
  padding: 7px 12px;
  background: var(--color-secondary);
  color: var(--color-white-warm);
  font-size: 12px;
  font-weight: 800;
}

@media (hover: hover) {
  .meal-card:hover,
  .product-card:hover,
  .testimonial-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px);
  }

  .meal-card:hover img,
  .product-card:hover img {
    transform: scale(1.06);
  }

  .add-circle:hover {
    background: var(--color-secondary);
    transform: rotate(90deg);
  }

  .product-card:hover .btn {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.circle-button {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--color-bg-alt);
  transition: background-color 180ms ease, color 180ms ease;
}

.circle-button:hover {
  background: var(--color-primary);
  color: var(--color-white-warm);
}

/* How it works */
.how-section {
  background: var(--color-dark);
  color: var(--color-text-light);
}

.how-section .section-label {
  color: var(--color-secondary);
}

.how-section h2,
.how-section h3 {
  color: var(--color-white-warm);
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: 52px;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 57px;
  left: 18%;
  right: 18%;
  border-top: 1px dashed var(--color-dark-mid);
}

.step-card {
  position: relative;
  min-height: 240px;
}

.step-number {
  position: absolute;
  top: -48px;
  left: 0;
  color: rgba(201, 58, 26, 0.3);
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
}

.step-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--color-dark-mid);
  color: var(--color-secondary);
  font-size: 21px;
}

.step-card h3 {
  font-size: 22px;
  font-weight: 700;
}

.step-card p {
  max-width: 260px;
  margin-top: 10px;
  color: var(--color-text-light);
  font-size: 15px;
}

/* Story */
.story-section {
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
  background: var(--color-bg);
  padding-right: max(40px, calc((100vw - 1180px) / 2));
}

.story-image {
  height: 680px;
  overflow: hidden;
  border-radius: 0 24px 24px 0;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy {
  max-width: 560px;
}

.story-copy h2 {
  margin-bottom: 24px;
  font-size: var(--text-h1);
  font-weight: 700;
}

.story-copy p + p {
  margin-top: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-body);
  font-weight: 600;
}

.check-list i {
  color: var(--color-primary);
}

/* Testimonials and CTA */
.testimonials-section {
  background: var(--color-bg-alt);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  position: relative;
  padding: 28px;
  background: var(--color-bg);
  transition: transform 280ms var(--ease-smooth), box-shadow 280ms var(--ease-smooth);
}

.quote-mark {
  position: absolute;
  top: 8px;
  right: 24px;
  color: rgba(201, 58, 26, 0.2);
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
}

.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--color-secondary);
  font-size: 14px;
}

.testimonial-card p {
  margin-top: 18px;
  color: var(--color-text-body);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.reviewer span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white-warm);
  font-weight: 800;
}

.reviewer strong,
.reviewer small {
  display: block;
  line-height: 1.2;
}

.reviewer strong {
  color: var(--color-dark);
  font-size: 15px;
}

.reviewer small {
  margin-top: 4px;
  color: var(--color-text-muted);
  font-size: 13px;
}

.cta-band {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: var(--color-primary);
  color: var(--color-white-warm);
  text-align: center;
}

.cta-ghost-text {
  position: absolute;
  inset: 50% auto auto 50%;
  color: rgba(232, 98, 42, 0.25);
  font-family: var(--font-display);
  font-size: clamp(140px, 20vw, 240px);
  font-weight: 900;
  line-height: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-band h2 {
  color: var(--color-white-warm);
  font-size: var(--text-h1);
  font-weight: 800;
}

.cta-band p {
  margin: 16px auto 28px;
  color: rgba(255, 248, 242, 0.82);
  font-size: 17px;
}

/* Menu page */
.page-hero {
  padding: 168px 0 86px;
  background: var(--color-bg);
}

.page-hero h1 {
  max-width: 720px;
  font-size: var(--text-h1);
  font-weight: 800;
}

.page-hero p:not(.section-label) {
  max-width: 560px;
  margin-top: 18px;
  font-size: 18px;
}

.filter-bar {
  position: sticky;
  top: 72px;
  z-index: 50;
  padding: 16px 0;
  background: rgba(253, 245, 236, 0.9);
  backdrop-filter: blur(16px);
  border-block: 1px solid rgba(240, 220, 200, 0.65);
}

.filter-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-pill {
  flex: 0 0 auto;
  border: 0;
  border-radius: 60px;
  padding: 10px 22px;
  background: var(--color-bg-alt);
  color: var(--color-text-body);
  font-size: 14px;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.filter-pill.active {
  background: var(--color-primary);
  color: var(--color-white-warm);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-card {
  min-height: 420px;
}

.product-card.feature-card {
  grid-column: span 2;
}

.product-card.feature-card .product-image {
  height: 260px;
}

.product-card.feature-card h3 {
  min-height: auto;
  font-size: 28px;
}

.product-grid.fade-out,
.product-card.fade-out {
  opacity: 0;
  transform: scale(0.95);
}

/* Product detail */
.product-page {
  padding-top: 72px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 55%) minmax(0, 45%);
  gap: 56px;
  align-items: start;
}

.main-product-image {
  width: 100%;
  height: 520px;
  border-radius: 24px;
  object-fit: cover;
  background: var(--color-bg-alt);
  transition: opacity 200ms ease;
}

.main-product-image.is-changing {
  opacity: 0.35;
}

.thumbnail-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.thumbnail-row button {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 0;
  background: var(--color-bg-alt);
}

.thumbnail-row button.active {
  border-color: var(--color-primary);
}

.thumbnail-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details {
  padding-top: 8px;
}

.breadcrumb {
  color: var(--color-text-muted);
  font-size: 13px;
}

.product-details h1 {
  margin-top: 12px;
  font-size: var(--text-h1);
  font-weight: 800;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.product-price {
  margin-top: 8px;
  color: var(--color-primary);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.product-description {
  margin-top: 16px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.product-details hr {
  height: 1px;
  margin: 24px 0;
  border: 0;
  background: var(--color-bg-alt);
}

.quantity-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.quantity-row button,
.cart-qty button {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-dark);
  font-weight: 800;
  transition: background-color 180ms ease;
}

.quantity-row button {
  width: 44px;
  height: 44px;
  font-size: 20px;
}

.quantity-row strong {
  width: 48px;
  color: var(--color-dark);
  font-size: 20px;
  text-align: center;
}

.product-add-button {
  min-height: 56px;
  font-size: 16px;
}

.product-add-button.success {
  background: var(--color-success);
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 700;
}

/* Cart drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--color-overlay);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  width: 420px;
  max-width: 100%;
  height: 100svh;
  background: var(--color-bg);
  box-shadow: -8px 0 40px rgba(28, 15, 7, 0.12);
  transform: translateX(100%);
  transition: transform 300ms var(--ease-smooth);
}

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

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 24px;
  border-bottom: 1px solid var(--color-bg-alt);
}

.cart-header h2 {
  font-size: 24px;
  font-weight: 700;
}

.cart-header span {
  display: inline-flex;
  margin-top: 4px;
  border-radius: 60px;
  padding: 3px 8px;
  background: var(--color-primary);
  color: var(--color-white-warm);
  font-size: 12px;
  font-weight: 800;
}

.icon-button {
  width: 42px;
  height: 42px;
  background: var(--color-bg-alt);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 8px 24px 180px;
}

.cart-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-bg-alt);
}

.cart-row img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}

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

.cart-row h3 {
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.cart-row small {
  display: block;
  margin-top: 3px;
  color: var(--color-text-muted);
  font-size: 13px;
}

.cart-price {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

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

.cart-qty {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cart-qty button {
  width: 32px;
  height: 32px;
}

.cart-qty strong {
  min-width: 18px;
  color: var(--color-dark);
  text-align: center;
}

.remove-item {
  border: 0;
  background: transparent;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 700;
  transition: color 160ms ease;
}

.remove-item:hover {
  color: var(--color-primary);
}

.empty-cart {
  display: grid;
  place-items: center;
  min-height: 70%;
  padding: 40px;
  text-align: center;
}

.empty-cart i {
  color: var(--color-bg-alt);
  font-size: 64px;
}

.empty-cart h3 {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 700;
}

.empty-cart p {
  margin: 8px 0 22px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.cart-summary {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 10px;
  padding: 22px 24px 24px;
  background: linear-gradient(180deg, rgba(253, 245, 236, 0.78), var(--color-bg) 18%);
  border-top: 1px solid var(--color-bg-alt);
}

.cart-summary div,
.summary-lines div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-summary span,
.summary-lines span {
  color: var(--color-text-muted);
}

.cart-summary strong,
.summary-lines strong {
  color: var(--color-dark);
}

.cart-summary hr,
.summary-lines hr {
  width: 100%;
  height: 2px;
  border: 0;
  background: var(--color-dark-mid);
  opacity: 0.14;
}

.fly-image {
  position: fixed;
  z-index: 150;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 700ms var(--ease-smooth), opacity 700ms ease;
}

/* Checkout */
.checkout-section {
  padding-top: 148px;
}

.checkout-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(320px, 40%);
  gap: 36px;
  align-items: start;
}

.checkout-form h1,
.contact-form h1 {
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 800;
}

.form-card {
  padding: 28px;
  margin-bottom: 24px;
}

.form-card h2,
.checkout-summary h2 {
  margin-bottom: 18px;
  font-size: 28px;
  font-weight: 700;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field-wide {
  grid-column: 1 / -1;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1.5px solid transparent;
  border-radius: 14px;
  padding: 15px 18px;
  background: var(--color-bg-alt);
  color: var(--color-text-body);
  outline: 0;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.form-card .form-field input,
.form-card .form-field select,
.form-card .form-field textarea {
  background: var(--color-bg);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field ::placeholder {
  color: var(--color-text-muted);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-primary);
  background: var(--color-bg);
  box-shadow: 0 0 0 4px rgba(201, 58, 26, 0.1);
}

.form-field.invalid input,
.form-field.invalid select,
.form-field.invalid textarea {
  border-color: var(--color-primary);
  animation: shake 400ms ease;
}

.error-message {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  color: var(--color-primary);
  font-size: 13px;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 18px;
  border-radius: 60px;
  padding: 6px;
  background: var(--color-bg);
}

.segmented-control label {
  cursor: pointer;
}

.segmented-control input {
  position: absolute;
  opacity: 0;
}

.segmented-control span {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 60px;
  color: var(--color-text-body);
  font-weight: 800;
  transition: background-color 180ms ease, color 180ms ease;
}

.segmented-control input:checked + span {
  background: var(--color-primary);
  color: var(--color-white-warm);
}

.pickup-note {
  border-radius: 16px;
  padding: 16px;
  background: var(--color-bg);
  color: var(--color-text-body);
  font-weight: 600;
}

.paystack-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--color-bg);
  color: var(--color-text-body);
  font-weight: 700;
}

.paystack-row i {
  color: var(--color-success);
}

.pay-now-button {
  min-height: 60px;
  font-size: 17px;
}

.checkout-summary {
  position: sticky;
  top: 112px;
  padding: 28px;
}

.checkout-items {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.summary-item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 12px;
  align-items: center;
}

.summary-item img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  object-fit: cover;
}

.summary-item strong {
  display: block;
  color: var(--color-dark);
  font-size: 14px;
  line-height: 1.2;
}

.summary-item span {
  color: var(--color-text-muted);
  font-size: 13px;
}

.summary-item b {
  color: var(--color-primary);
}

.summary-lines {
  display: grid;
  gap: 12px;
}

.edit-cart-link {
  width: fit-content;
  margin-top: 20px;
  border: 0;
  background: transparent;
  color: var(--color-primary);
  font-weight: 800;
  text-decoration: underline;
}

/* Thank you */
.thank-you-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: var(--space-xl) 20px;
  background: var(--color-bg);
}

.thank-you-panel {
  width: min(640px, 100%);
  text-align: center;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white-warm);
  font-size: 48px;
  transform: scale(0);
  animation: successPop 440ms var(--ease-spring) 180ms forwards;
}

.success-icon i {
  opacity: 0;
  transform: translateY(18px);
  animation: checkIn 340ms var(--ease-smooth) 520ms forwards;
}

.thank-you-panel h1 {
  margin-top: 32px;
  font-size: var(--text-h1);
  font-weight: 800;
}

.thank-you-panel > p {
  max-width: 520px;
  margin: 16px auto 28px;
  font-size: 17px;
}

.confirmation-card {
  padding: 32px;
  text-align: left;
}

.confirmation-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.confirmation-row span {
  color: var(--color-text-muted);
  font-weight: 700;
}

.confirmation-row strong {
  color: var(--color-primary);
}

.confirmation-card hr {
  height: 1px;
  margin: 18px 0;
  border: 0;
  background: rgba(28, 15, 7, 0.12);
}

.confirmation-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.confetti {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.confetti span {
  position: absolute;
  top: -24px;
  width: 10px;
  height: 16px;
  border-radius: 4px;
  background: var(--color-primary);
  animation: confettiFall 3.2s linear infinite;
}

.confetti span:nth-child(2n) { background: var(--color-secondary); }
.confetti span:nth-child(3n) { background: var(--color-bg-alt); }
.confetti span:nth-child(1) { left: 12%; animation-delay: 0s; }
.confetti span:nth-child(2) { left: 25%; animation-delay: 0.25s; }
.confetti span:nth-child(3) { left: 38%; animation-delay: 0.55s; }
.confetti span:nth-child(4) { left: 48%; animation-delay: 0.1s; }
.confetti span:nth-child(5) { left: 61%; animation-delay: 0.7s; }
.confetti span:nth-child(6) { left: 72%; animation-delay: 0.35s; }
.confetti span:nth-child(7) { left: 84%; animation-delay: 0.9s; }
.confetti span:nth-child(8) { left: 92%; animation-delay: 0.45s; }

/* Contact */
.contact-section {
  padding-top: 148px;
}

.contact-form > p:not(.section-label) {
  margin: -8px 0 28px;
  font-size: 17px;
}

.contact-panel {
  min-height: 620px;
  border-radius: 24px;
  padding: 36px;
  background: var(--color-dark);
  color: var(--color-text-light);
}

.contact-panel > p {
  margin-top: 16px;
}

.info-list {
  display: grid;
  gap: 20px;
  margin: 42px 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 14px;
  align-items: center;
}

.info-list i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-dark-mid);
  color: var(--color-secondary);
}

.info-list span {
  color: var(--color-text-light);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.info-list strong {
  color: var(--color-white-warm);
  font-weight: 700;
  line-height: 1.35;
}

/* Footer */
.site-footer {
  padding: 80px 0 40px;
  background: var(--color-dark);
  color: var(--color-text-light);
}

.compact-footer {
  padding: 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
}

.footer-grid p {
  max-width: 270px;
  margin-top: 16px;
  font-size: 15px;
}

.footer-grid h3 {
  margin-bottom: 16px;
  color: var(--color-white-warm);
  font-size: 18px;
  font-weight: 700;
}

.footer-grid a:not(.logo-link),
.footer-grid div > p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: var(--color-text-light);
  font-size: 14px;
  transition: color 150ms ease;
}

.footer-grid a:hover {
  color: var(--color-secondary);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-dark-mid);
  color: var(--color-text-light);
  transition: color 160ms ease, transform 160ms ease;
}

.social-row a:hover {
  color: var(--color-secondary);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--color-dark-mid);
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 600;
}

.compact-footer .footer-bottom {
  margin-top: 0;
}

/* Custom cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 120ms ease, height 120ms ease, border 120ms ease, background-color 120ms ease, opacity 120ms ease;
  opacity: 0;
}

.custom-cursor.visible {
  opacity: 1;
}

.custom-cursor.hovering {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--color-primary);
  background: transparent;
}

.custom-cursor.clicking {
  transform: translate(-50%, -50%) scale(0.7);
}

@media (hover: none), (pointer: coarse) {
  .custom-cursor {
    display: none;
  }
}

/* Animations */
@keyframes badgePop {
  0% { transform: scale(1); }
  55% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

@keyframes mobileLinkIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes clipWord {
  to {
    clip-path: inset(0 0 0 0);
  }
}

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

@keyframes fadeOnly {
  to { opacity: 1; }
}

@keyframes blobIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.18); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-7px); }
  40% { transform: translateX(7px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
}

@keyframes successPop {
  to { transform: scale(1); }
}

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

@keyframes confettiFall {
  to {
    transform: translateY(105vh) rotate(720deg);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links,
  .nav-actions .btn-small {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-shell {
    grid-template-columns: auto auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 128px;
  }

  .hero-visual {
    min-height: 420px;
    margin-top: 30px;
  }

  .hero-blob {
    inset: 20px 0;
  }

  .steps-grid,
  .testimonial-grid,
  .footer-grid,
  .product-layout,
  .checkout-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .story-section {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .story-image {
    height: 460px;
    border-radius: 0 0 24px 24px;
  }

  .story-copy {
    width: min(100% - 40px, 680px);
    margin: 0 auto;
  }

  .checkout-summary {
    position: static;
  }

  .product-card.feature-card {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 76px 0;
  }

  .brand-logo {
    width: 190px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 96px 18px 54px;
  }

  .hero-copy {
    order: 2;
  }

  .label-pill {
    max-width: 100%;
    font-size: 12px;
    white-space: normal;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(38px, 11.2vw, 52px);
  }

  .hero-line {
    max-width: 100%;
    overflow: visible;
    white-space: nowrap;
  }

  .clip-word {
    margin-right: 0.14em;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-buttons,
  .confirmation-actions,
  .split-header {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .carousel-controls {
    display: none;
  }

  .hero-visual {
    display: block;
    order: 1;
    width: 100%;
    min-height: clamp(280px, 70vw, 350px);
    margin: 0;
  }

  .hero-visual::before {
    top: 10px;
    right: 6px;
    width: 72px;
    height: 72px;
  }

  .hero-visual::after {
    left: -22px;
    bottom: 18px;
    width: 170px;
    height: 170px;
  }

  .hero-blob {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(270px, 68vw, 340px);
    clip-path: polygon(11% 3%, 82% 0, 100% 21%, 94% 78%, 67% 100%, 16% 94%, 0 58%, 5% 16%);
  }

  .floating-order-card {
    left: 10px;
    right: 10px;
    bottom: -10px;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    width: auto;
    padding: 10px;
  }

  .floating-order-card img {
    width: 52px;
    height: 52px;
  }

  .floating-order-card strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .floating-order-card button {
    padding: 8px 11px;
  }

  .rating-badge {
    top: 16px;
    right: 8px;
    max-width: calc(100% - 96px);
    padding: 10px 12px;
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
    border-radius: 18px;
    padding: 16px;
    background: rgba(240, 220, 200, 0.44);
  }

  .trust-row span:nth-child(even) {
    display: none;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .cart-drawer {
    width: 100%;
  }

  .main-product-image {
    height: 390px;
  }

  .thumbnail-row {
    overflow-x: auto;
    padding-bottom: 4px;
  }
}

@media (max-width: 480px) {
  .nav-shell {
    width: min(100% - 24px, 1240px);
  }

  .brand-logo {
    width: 176px;
  }

  .cart-icon-button {
    width: 40px;
  }

  .hero {
    padding-top: 88px;
  }

  .hero-title {
    font-size: clamp(36px, 10.8vw, 48px);
  }

  .hero-visual {
    min-height: 280px;
  }

  .hero-blob {
    height: 270px;
  }

  .btn {
    min-height: 48px;
    padding-inline: 24px;
  }

  .meal-carousel {
    grid-auto-columns: 82vw;
  }

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

  .form-card,
  .checkout-summary,
  .confirmation-card,
  .contact-panel {
    padding: 22px;
  }

  .summary-item {
    grid-template-columns: 48px 1fr;
  }

  .summary-item b {
    grid-column: 2;
  }
}

@media (max-width: 768px) and (max-height: 760px) {
  .mobile-menu {
    align-content: start;
    overflow-y: auto;
    padding-top: 86px;
  }

  .mobile-menu::after {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    min-height: 112px;
    margin-top: 14px;
  }
}

@media (hover: none), (pointer: coarse) {
  .product-card .btn {
    opacity: 1;
    transform: translateY(0);
  }
}
