:root {
  interpolate-size: allow-keywords;
  --bg: #FAF5FF;
  --surface: #FFFFFF;
  --surface-2: #F3EBFF;
  --ink: #2E1A47;
  --ink-soft: #5A3D7A;
  --accent: #A855F7;
  --accent-hover: #9333EA;
  --accent-2: #FACC15;
  --accent-2-hover: #EAB308;
  --line: rgba(46,26,71,0.10);
  --line-strong: rgba(46,26,71,0.18);
  --header-h: 72px;
  --radius: 16px;
  --radius-lg: 24px;
  --container-max: 1240px;
  --container-pad: clamp(16px, 4vw, 32px);
  --font-heading: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', system-ui, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 2px 8px rgba(46,26,71,0.06);
  --shadow-md: 0 8px 24px rgba(46,26,71,0.08);
  --shadow-lg: 0 16px 48px rgba(46,26,71,0.12);
  --shadow-accent: 0 8px 24px rgba(168,85,247,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html.no-js .reveal { opacity: 1; transform: none; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent-hover); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { max-width: 68ch; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--accent);
  color: var(--surface);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  transition: top 200ms;
}
.skip-link:focus { top: 0; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  background: rgba(250,245,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  background: rgba(250,245,255,0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  height: 64px;
}

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 60ms linear;
  z-index: 1;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 1100;
}
.logo:hover { color: var(--accent); }
.logo svg { width: 34px; height: 34px; flex-shrink: 0; }

/* ===== NAV DESKTOP ===== */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 6px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

.nav-desktop a {
  position: relative;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.925rem;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 240ms, background 240ms;
  text-decoration: none;
}
.nav-desktop a:hover {
  color: var(--accent);
  background: var(--surface-2);
}
.nav-desktop a.is-active {
  color: var(--accent);
}
.nav-desktop a.is-active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.nav-desktop .nav-cta {
  background: var(--ink);
  color: var(--surface);
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  margin-left: 8px;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: var(--surface);
}
.nav-desktop .nav-cta.is-active::after { display: none; }

/* ===== HAMBURGER ===== */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: var(--surface);
  border: 1.5px solid rgba(46,26,71,0.22);
  border-radius: 10px;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  box-shadow: 0 2px 8px rgba(46,26,71,0.10);
  transition: background 240ms, border-color 240ms, box-shadow 240ms;
}
.nav-toggle:hover {
  background: rgba(168,85,247,0.08);
  border-color: var(--accent);
}
.nav-toggle:active {
  transform: scale(0.94);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-toggle span {
  display: block;
  width: 22px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms, background 240ms;
  transform-origin: center;
}
.nav-toggle:hover span { background: var(--accent); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== MOBILE DRAWER ===== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 24px) 28px 32px;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
@media (min-width: 1024px) { .mobile-drawer { display: none; } }

.mobile-drawer a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  text-decoration: none;
  transition: color 240ms, padding-left 240ms;
}
.mobile-drawer a:hover { color: var(--accent); padding-left: 8px; }
.mobile-drawer a.is-active { color: var(--accent); }
.mobile-drawer .nav-cta {
  margin-top: 24px;
  background: var(--accent);
  color: var(--surface);
  text-align: center;
  padding: 16px 24px;
  border-radius: 12px;
  border: none;
  font-size: 1.1rem;
}
.mobile-drawer .nav-cta:hover { background: var(--accent-hover); color: var(--surface); }

.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--ink);
  line-height: 1;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms;
  z-index: 10;
}
.drawer-close:hover { background: rgba(168,85,247,0.1); color: var(--accent); }

/* ===== MAIN ===== */
main { padding-top: var(--header-h); }

/* ===== EYEBROW ===== */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ===== SECTION SPACING ===== */
.section { padding: clamp(60px, 10vw, 120px) 0; }
.section--surface { background: var(--surface); }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 8vw, 80px) 0 clamp(60px, 10vw, 100px);
  text-align: center;
}

.hero h1 { margin-bottom: 20px; }

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero__keys {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  margin-top: 40px;
}

.hero__key {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}
.hero__key svg {
  width: 22px; height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ===== BLOBS ===== */
.hero__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.blob--1 { width: 420px; height: 420px; background: var(--accent); top: -120px; right: -100px; }
.blob--2 { width: 340px; height: 340px; background: var(--accent-2); bottom: -80px; left: -60px; }
.blob--3 { width: 280px; height: 280px; background: #C084FC; top: 50%; left: 60%; }

.hero__body { position: relative; z-index: 1; }

/* ===== SPRINKLE PARTICLES ===== */
.hero__sprinkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.sprinkle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w, 8px);
  height: var(--h, 14px);
  background: var(--c, var(--accent));
  border-radius: 4px;
  transform: rotate(var(--r, 0deg));
  animation: sprinkle-float var(--d, 10s) ease-in-out infinite alternate;
  opacity: 0.55;
}
@keyframes sprinkle-float {
  0% { transform: rotate(var(--r, 0deg)) translateY(0); }
  100% { transform: rotate(calc(var(--r, 0deg) + 40deg)) translateY(-30px); }
}

/* ===== MARQUEE ===== */
.marquee {
  overflow: hidden;
  padding: 14px 0;
  margin-bottom: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee__text {
  flex-shrink: 0;
  padding: 0 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms, box-shadow 240ms;
  text-decoration: none;
  line-height: 1.2;
}
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--ink); color: var(--surface); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent);
  color: var(--surface);
  box-shadow: var(--shadow-accent);
}

.btn-accent { background: var(--accent); color: var(--surface); }
.btn-accent:hover, .btn-accent:focus-visible {
  background: var(--accent-hover);
  color: var(--surface);
  box-shadow: var(--shadow-accent);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
}

.btn-yellow { background: var(--accent-2); color: var(--ink); }
.btn-yellow:hover, .btn-yellow:focus-visible {
  background: var(--accent-2-hover);
  color: var(--ink);
}

.btn-lg { padding: 18px 40px; font-size: 1.1rem; border-radius: 14px; }

/* ===== SECTION HEADING ===== */
.section__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(36px, 6vw, 56px);
}
.section__head p {
  margin: 12px auto 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ===== KONFIGURATOR ===== */
.konfigurator {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step-bar {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: var(--surface-2);
  border-radius: 14px;
  margin-bottom: 36px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.step-pill {
  flex: 1;
  min-width: 0;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 240ms, color 240ms, box-shadow 240ms;
  white-space: nowrap;
}
.step-pill.active {
  background: var(--surface);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.step-pill.completed {
  color: var(--accent);
}
.step-pill:hover { color: var(--accent); }

.konfigurator__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .konfigurator__body { grid-template-columns: 280px 1fr; gap: 40px; }
}
@media (min-width: 1024px) {
  .konfigurator__body { grid-template-columns: 320px 1fr; }
}

/* ===== CAKE SVG PREVIEW ===== */
.cake-preview {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  min-height: 300px;
}
.cake-svg { width: 100%; max-width: 220px; height: auto; }

.cake-layer {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 400ms cubic-bezier(.2,.7,.2,1), transform 400ms cubic-bezier(.2,.7,.2,1);
}
.cake-layer.is-visible {
  opacity: 1;
  transform: none;
}

.cake-deco { opacity: 0; transition: opacity 400ms cubic-bezier(.2,.7,.2,1); }
.cake-deco.is-visible { opacity: 1; }

/* ===== STEPS WRAPPER ===== */
.steps-wrapper { overflow: hidden; position: relative; }
.steps-track {
  display: flex;
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.steps-track[data-active="1"] { transform: translateX(0); }
.steps-track[data-active="2"] { transform: translateX(-100%); }
.steps-track[data-active="3"] { transform: translateX(-200%); }
.steps-track[data-active="4"] { transform: translateX(-300%); }

.step-panel {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 4px;
}

.step-panel h3 { margin-bottom: 8px; }
.step-panel .step-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* ===== OPTION PILLS / CHIPS ===== */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.option-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 14px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 240ms, background 240ms, box-shadow 240ms, transform 180ms;
  text-align: center;
}
.option-pill:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.option-pill.selected {
  border-color: var(--accent);
  background: rgba(168,85,247,0.06);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.15);
}
.option-pill__name {
  font-weight: 600;
  font-size: 0.95rem;
}
.option-pill__detail {
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.option-pill__price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}

/* Layer flavor chips */
.layer-selector { margin-bottom: 20px; }
.layer-selector__label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.layer-selector__label .layer-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: inline-block;
}

.flavor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.flavor-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  background: var(--surface);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-body);
  transition: border-color 240ms, background 240ms, transform 180ms;
}
.flavor-chip:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}
.flavor-chip.selected {
  border-color: var(--accent);
  background: rgba(168,85,247,0.08);
  font-weight: 600;
}
.flavor-chip__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Deco chips */
.deco-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.deco-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-body);
  transition: border-color 240ms, background 240ms, transform 180ms;
}
.deco-chip:hover { border-color: var(--accent); transform: translateY(-1px); }
.deco-chip.selected {
  border-color: var(--accent);
  background: rgba(168,85,247,0.08);
  font-weight: 600;
}
.deco-chip svg { width: 18px; height: 18px; color: var(--accent); }

/* Message card step */
.message-card-input {
  width: 100%;
  min-height: 120px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  resize: vertical;
  transition: border-color 240ms;
}
.message-card-input:focus { border-color: var(--accent); outline: none; }
.message-card-input::placeholder { color: var(--ink-soft); opacity: 0.6; }

.step-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* ===== POPULAR COMBOS ===== */
.popular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.combo-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms, border-color 360ms;
  position: relative;
}
.combo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-accent);
  border-color: rgba(168,85,247,0.25);
}

.combo-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--surface-2);
}

.combo-card__body { padding: 24px; }
.combo-card__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.combo-card__size {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.combo-card__layers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.combo-card__layer-tag {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  border: 1px solid var(--line);
  background: var(--surface-2);
}
.combo-card__price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 16px;
}
.combo-card__cta {
  width: 100%;
  text-align: center;
}

/* Cream swirl hover effect */
.combo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(168,85,247,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 360ms;
  pointer-events: none;
  z-index: 1;
}
.combo-card:hover::before { opacity: 1; }

/* ===== DELIVERY ===== */
.teslimat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.teslimat-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
}
.teslimat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-accent);
}
.teslimat-card__icon {
  width: 48px; height: 48px;
  background: var(--surface-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.teslimat-card__icon svg { width: 24px; height: 24px; color: var(--accent); }
.teslimat-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.teslimat-card p { font-size: 0.92rem; color: var(--ink-soft); }

.cold-chain-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #EDE9FE, #FEF3C7);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 28px;
}
.cold-chain-badge svg { width: 20px; height: 20px; }

/* ===== ORDER / SİPARİŞ ===== */
.siparis { background: var(--surface-2); }

.siparis__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 768px) {
  .siparis__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

.order-summary {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
}
.order-summary h3 { margin-bottom: 20px; }
.order-summary__line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.order-summary__line:last-child { border-bottom: none; font-weight: 700; font-size: 1.1rem; }

.order-summary__empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--ink-soft);
}
.order-summary__empty svg {
  width: 48px; height: 48px;
  color: var(--line-strong);
  margin: 0 auto 12px;
}

/* ===== FORM ===== */
.form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.field label .req { color: var(--accent); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.1);
  outline: none;
}
.field textarea { min-height: 100px; resize: vertical; }
.field select { appearance: auto; }

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}

.field-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.field-check label {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--ink-soft);
  cursor: pointer;
}

.field-error {
  font-size: 0.8rem;
  color: #E11D48;
  margin-top: 4px;
  display: none;
}
.field.has-error .field-error { display: block; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #E11D48; }

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.is-visible { display: block; }
.form-success svg { width: 56px; height: 56px; color: #22C55E; margin: 0 auto 16px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--ink-soft); }

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: clamp(40px, 8vw, 80px) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-accent); }
.value-card__icon {
  width: 48px; height: 48px;
  background: var(--surface-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.value-card__icon svg { width: 24px; height: 24px; color: var(--accent); }
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: var(--ink-soft); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 28px 16px; background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--line); }
.stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.9rem; color: var(--ink-soft); }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

.contact-channels { display: flex; flex-direction: column; gap: 0; }

.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 14px;
  border-radius: 12px;
  transition: background 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-row:hover {
  background: var(--surface-2);
  transform: translateX(4px);
}
.contact-row__icon {
  width: 42px; height: 42px;
  background: var(--surface-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 240ms, color 240ms;
}
.contact-row:hover .contact-row__icon { background: rgba(168,85,247,0.12); }
.contact-row__icon svg {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  transition: color 240ms;
}
.contact-row:hover .contact-row__icon svg { color: var(--accent); }
.contact-row__label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.contact-row__value {
  font-size: 0.95rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-row__value a { color: var(--ink); }
.contact-row__value a:hover { color: var(--accent); }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 740px; margin: 0 auto; }
.legal-content h1 { margin-bottom: 12px; }
.legal-content .legal-date { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 36px; }
.legal-content h2 { margin-top: 40px; margin-bottom: 16px; font-size: 1.3rem; }
.legal-content h3 { margin-top: 28px; margin-bottom: 12px; font-size: 1.1rem; }
.legal-content p { margin-bottom: 16px; color: var(--ink-soft); line-height: 1.7; }
.legal-content ul, .legal-content ol {
  margin: 12px 0 20px;
  padding-left: 24px;
  color: var(--ink-soft);
}
.legal-content li { margin-bottom: 8px; line-height: 1.65; }

/* ===== SITEMAP PAGE ===== */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}
.sitemap-group h3 {
  font-size: 1rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}
.sitemap-group ul { list-style: none; padding: 0; }
.sitemap-group li { margin-bottom: 8px; }
.sitemap-group a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 4px 0;
}
.sitemap-group a:hover { color: var(--accent); }

/* ===== 404 PAGE ===== */
.page-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 60px 20px;
}
.page-404__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(6rem, 15vw, 12rem);
  color: var(--surface-2);
  line-height: 1;
  margin-bottom: -20px;
}
.page-404 h1 { margin-bottom: 12px; }
.page-404 p { color: var(--ink-soft); margin-bottom: 28px; }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  color: var(--ink);
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { color: var(--accent); }

.faq-item summary .faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.faq-item[open] summary .faq-icon { transform: rotate(45deg); }

.faq-item .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item[open] .faq-body {
  height: auto;
  padding-block-end: 22px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item .faq-body { transition: none; }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

.cookie-banner__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-banner__text {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.cookie-banner__text a { text-decoration: underline; }

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-banner__actions .btn {
  flex: 1;
  min-width: 100px;
  padding: 12px 16px;
  font-size: 0.88rem;
  min-height: 52px;
}
.cookie-banner__actions .btn[data-consent="reject"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
  font-weight: 600;
}
.cookie-banner__actions .btn[data-consent="reject"]:hover {
  background: var(--accent-hover);
  color: var(--surface);
  border-color: var(--accent-hover);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(48px, 8vw, 80px) 0 0;
  padding-bottom: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 36px;
  margin-bottom: 40px;
}

.footer__col h4 {
  color: var(--surface);
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer__col p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer__col ul { list-style: none; padding: 0; }
.footer__col li { margin-bottom: 8px; }
.footer__col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 240ms;
  text-decoration: none;
}
.footer__col a:hover { color: var(--accent-2); }

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer__social a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  transition: background 240ms, transform 240ms;
}
.footer__social a:hover {
  background: rgba(168,85,247,0.3);
  transform: translateY(-2px);
}
.footer__social svg { width: 18px; height: 18px; color: rgba(255,255,255,0.8); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
}

/* ===== TABLE SCROLL ===== */
.table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line, rgba(0,0,0,0.12));
  border-radius: 6px;
}
.table-scroll > table {
  margin: 0 !important;
  min-width: 480px;
  width: 100%;
}
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) {
  min-width: 0;
}

table {
  border-collapse: collapse;
  font-size: 0.9rem;
}
table th, table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
table th {
  background: var(--surface-2);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
}
table td { color: var(--ink-soft); }
table tbody tr:last-child td { border-bottom: none; }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: 100ms; }
.reveal[data-delay="2"] { transition-delay: 200ms; }
.reveal[data-delay="3"] { transition-delay: 300ms; }
.reveal[data-delay="4"] { transition-delay: 400ms; }
.reveal[data-delay="5"] { transition-delay: 500ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ===== NICHE ANIMATIONS: ICE CREAM ===== */

/* 1. Cream drip on section dividers */
.drip-divider {
  position: relative;
  height: 32px;
  overflow: hidden;
}
.drip-divider svg { width: 100%; height: 100%; }

/* 2. Scoop stacking in configurator */
@keyframes scoop-appear {
  0% { opacity: 0; transform: translateY(-20px) scale(0.8); }
  60% { transform: translateY(4px) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cake-layer.scoop-in {
  animation: scoop-appear 500ms cubic-bezier(.2,.7,.2,1) forwards;
}

/* 3. Sprinkle burst on CTA click */
@keyframes sprinkle-burst {
  0% { transform: scale(0) rotate(0deg); opacity: 1; }
  100% { transform: scale(1.5) rotate(180deg); opacity: 0; }
}

/* 4. Cream swirl ambient on hero */
@keyframes cream-swirl {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.08); }
  100% { transform: rotate(360deg) scale(1); }
}
.blob--swirl { animation: cream-swirl 12s ease-in-out infinite; }

/* 5. Melting shimmer on accent elements */
@keyframes melt-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer-accent {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 30%, var(--accent) 60%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: melt-shimmer 8s ease-in-out infinite;
}

/* Ice cream cone icon spin for loading states */
@keyframes cone-wobble {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

/* Card cream wave overlay */
@keyframes cream-wave {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.combo-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 2;
  transition: none;
}
.combo-card:hover::after {
  animation: cream-wave 700ms cubic-bezier(.4,0,.2,1);
}

/* Warm glow hover for ice cream theme */
.teslimat-card:hover .teslimat-card__icon {
  background: rgba(168,85,247,0.12);
  box-shadow: 0 0 16px rgba(168,85,247,0.15);
}
.teslimat-card__icon {
  transition: background 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
}
.value-card:hover .value-card__icon {
  background: rgba(168,85,247,0.12);
  box-shadow: 0 0 16px rgba(168,85,247,0.15);
}
.value-card__icon {
  transition: background 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
}

/* Cold chain badge pulse */
@keyframes frost-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(168,85,247,0.15); }
  50% { box-shadow: 0 0 20px 4px rgba(168,85,247,0.12); }
}
.cold-chain-badge {
  animation: frost-pulse 3s ease-in-out infinite;
}

/* Smoother reveal curve */
.reveal {
  transition-timing-function: cubic-bezier(.16,1,.3,1);
}

/* FAQ item hover */
.faq-item summary:hover .faq-icon {
  color: var(--accent);
  transform: scale(1.15);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), color 240ms;
}

/* Footer social warm hover */
.footer__social a:hover svg {
  color: var(--accent-2);
  filter: drop-shadow(0 0 6px rgba(250,204,21,0.35));
}

/* Stat counter subtle float */
@keyframes stat-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.stat-item:hover .stat-num {
  animation: stat-float 1.2s ease-in-out;
}

/* Option pill selected glow */
.option-pill.selected {
  box-shadow: 0 0 0 3px rgba(168,85,247,0.15), 0 4px 16px rgba(168,85,247,0.1);
}

/* Deco chip selected glow */
.deco-chip.selected {
  box-shadow: 0 0 0 3px rgba(168,85,247,0.15);
}

/* Submit button glow on hover */
.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(168,85,247,0.25), 0 0 0 2px rgba(168,85,247,0.08);
}

/* Contact row icon warm transition */
.contact-row__icon {
  transition: background 300ms cubic-bezier(.2,.7,.2,1), color 300ms, box-shadow 300ms;
}
.contact-row:hover .contact-row__icon {
  box-shadow: 0 0 12px rgba(168,85,247,0.12);
}

/* ===== ENHANCED HOVER: warm cream glow ===== */
.btn-accent:hover {
  box-shadow: 0 6px 20px rgba(168,85,247,0.3), 0 0 0 2px rgba(168,85,247,0.08);
}
.btn-ghost:hover {
  box-shadow: 0 4px 12px rgba(46,26,71,0.08);
}

/* Step pill hover warmth */
.step-pill:hover {
  background: rgba(168,85,247,0.06);
}

/* Flavor chip subtle glow when selected */
.flavor-chip.selected {
  box-shadow: 0 2px 8px rgba(168,85,247,0.12);
}

/* FAQ item open state border accent */
.faq-item[open] {
  border-bottom-color: var(--accent);
}

/* Stat item hover lift */
.stat-item {
  transition: transform 360ms cubic-bezier(.2,.7,.2,1), box-shadow 360ms;
}
.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-accent);
}

/* Hero CTA pulse glow */
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 4px 16px rgba(46,26,71,0.12); }
  50% { box-shadow: 0 6px 28px rgba(168,85,247,0.25); }
}
.hero .btn-primary {
  animation: cta-glow 3s ease-in-out infinite;
}
.hero .btn-primary:hover {
  animation: none;
}

/* Combo card image zoom on hover */
.combo-card__img {
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.combo-card:hover .combo-card__img {
  transform: scale(1.04);
}

/* About image parallax-like hover */
.about-img {
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.about-img:hover {
  transform: scale(1.02);
}

/* Value card icon spin on hover */
.value-card:hover .value-card__icon svg {
  transform: rotate(8deg) scale(1.1);
  transition: transform 400ms cubic-bezier(.2,.7,.2,1);
}

/* ===== PRINT ===== */
@media print {
  .site-header, .nav-toggle, .mobile-drawer, .drawer-backdrop,
  .cookie-banner, .hero__blobs, .hero__sprinkles, .marquee,
  .skip-link { display: none !important; }
  main { padding-top: 0 !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .reveal { opacity: 1 !important; transform: none !important; }
  a { color: #000; text-decoration: underline; }
  .site-footer { background: #fff; color: #000; border-top: 1px solid #ccc; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .hero__keys { flex-direction: column; align-items: center; }
  .popular-grid { grid-template-columns: 1fr; }
  .teslimat-grid { grid-template-columns: 1fr; }
  .step-bar { gap: 4px; }
  .step-pill { padding: 10px 12px; font-size: 0.8rem; }
  .options-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .option-pill { padding: 14px 10px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 24px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 430px) {
  .options-grid { grid-template-columns: 1fr; }
  .cookie-banner__actions { flex-direction: column; }
  .cookie-banner__actions .btn { flex: none; width: 100%; min-height: 52px; font-size: 0.95rem; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  :root { --container-pad: 14px; }
  h1 { font-size: 1.9rem; }
  .step-pill { font-size: 0.75rem; padding: 8px; }
}

@media (min-width: 1440px) {
  :root { --container-max: 1320px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track { animation: none; }
  .sprinkle { animation: none; }
  .blob--swirl { animation: none; }
  .combo-card::after { animation: none; }
  .cold-chain-badge { animation: none; }
  .stat-item:hover .stat-num { animation: none; }
  .hero .btn-primary { animation: none; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .combo-card__img { transition: none; }
  .about-img { transition: none; }
}
