:root {
  --plum: #6f3b58;
  --plum-dark: #49253a;
  --pink: #e66da2;
  --pink-dark: #cf4f89;
  --peach: #fcd0b8;
  --cream: #f1eae4;
  --paper: #fffaf7;
  --white: #fff;
  --ink: #33242c;
  --muted: #796a72;
  --line: rgba(111, 59, 88, .14);
  --shadow: 0 24px 70px rgba(73, 37, 58, .14);
  --radius: 26px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { max-width: 100%; overflow-x: hidden; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 110px; }
body { max-width: 100%; margin: 0; min-width: 320px; overflow-x: hidden; overflow-x: clip; color: var(--ink); background: var(--paper); font-family: "DM Sans", sans-serif; -webkit-font-smoothing: antialiased; }
body.locked { overflow: hidden; }
body.is-loading { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.kicker { display: block; margin-bottom: 8px; color: var(--pink-dark); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Fredoka", sans-serif; }
h2 { margin-bottom: 0; color: var(--plum-dark); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.04; }

.loader { position: fixed; z-index: 9999; inset: 0; display: grid; place-content: center; justify-items: center; background: var(--cream); transition: opacity .5s cubic-bezier(.4,0,.2,1), visibility .5s, transform .5s cubic-bezier(.4,0,.2,1); }
.loader.is-done { opacity: 0; visibility: hidden; transform: scale(1.06); }
.loader__mark { width: 150px; height: 150px; border-radius: 50%; background: var(--peach); box-shadow: 0 20px 50px rgba(111,59,88,.18); animation: loaderSpin 1.4s linear infinite; will-change: transform; overflow: hidden; }
.loader__mark img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); animation: loaderPop .55s cubic-bezier(.16,1,.3,1) backwards; }
.loader p { margin: 24px 0 12px; color: var(--plum); font-family: "Fredoka", sans-serif; font-weight: 600; animation: loaderFade .5s ease .12s backwards; }
.loader__track { width: min(260px, 70vw); height: 7px; padding: 1px; background: rgba(111,59,88,.12); border-radius: 10px; overflow: hidden; animation: loaderFade .5s ease .2s backwards; }
.loader__track span { position: relative; display: block; width: 100%; height: 100%; overflow: hidden; background: linear-gradient(90deg, var(--pink), var(--plum)); border-radius: inherit; transform: scaleX(0); transform-origin: left center; will-change: transform; animation: loaderProgress 1.5s cubic-bezier(.16,.85,.35,1) .1s forwards; }
.loader.is-finishing .loader__track span { transform: scaleX(1); animation: none; transition: transform .28s cubic-bezier(.4,0,.2,1); }
.loader__track span::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(252,208,184,.65), transparent); animation: barShine 1.1s linear infinite; }
@keyframes loaderProgress { from { transform: scaleX(0); } to { transform: scaleX(.92); } }
@keyframes loaderSpin { to { transform: rotate(360deg); } }
@keyframes loaderPop { from { transform: scale(.55); opacity: 0; } to { transform: scale(1.04); opacity: 1; } }
@keyframes loaderFade { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: translateY(0); } }
@keyframes barShine { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
.site-header, .hero-trust-top { transition: opacity .55s ease .06s; }
main { transition: opacity .55s ease .06s, transform .55s cubic-bezier(.2,.7,.3,1) .06s; }
body.is-loading .site-header, body.is-loading .hero-trust-top, body.is-loading main { opacity: 0; }
body.is-loading main { transform: translateY(16px); }

.announcement { display: flex; align-items: center; justify-content: center; min-height: 35px; padding: 7px 16px; color: #fff; background: var(--plum); font-size: .78rem; letter-spacing: .025em; }
.announcement strong { margin-inline: 4px; }
.pulse-dot { position: relative; width: 7px; height: 7px; margin-right: 9px; border-radius: 50%; background: #88e2aa; box-shadow: 0 0 0 5px rgba(136,226,170,.12); }
.pulse-dot::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; background: rgba(136,226,170,.3); animation: pulse 1.8s cubic-bezier(.4,0,.6,1) infinite; }
@keyframes pulse { 0% { transform: scale(.55); opacity: 1; } 70%, 100% { transform: scale(1.5); opacity: 0; } }
.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid rgba(111,59,88,.08); background: rgba(255,250,247,.9); backdrop-filter: blur(18px); }
.hero-trust-top { padding-top: 22px; }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--plum); font-family: "Fredoka", sans-serif; font-size: 1.12rem; font-weight: 700; }
.brand img { width: 49px; height: 49px; border-radius: 50%; }
.nav__links { display: flex; gap: 34px; color: var(--muted); font-size: .93rem; font-weight: 700; }
.nav__links a:hover { color: var(--plum); }
.icon-button, .close-button { display: grid; place-items: center; border: 0; cursor: pointer; }
.icon-button { position: relative; width: 47px; height: 47px; border-radius: 50%; color: var(--plum); background: var(--cream); }
.icon-button svg { width: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.cart-count { position: absolute; top: -3px; right: -2px; display: grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px; border: 2px solid var(--paper); border-radius: 20px; color: #fff; background: var(--pink-dark); font-size: .68rem; font-weight: 800; }
.nav-menu-button { display: none; }
.mobile-nav { display: none; }

.hero { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; min-height: 680px; padding-block: 78px 86px; }
.eyebrow { display: inline-flex; padding: 8px 13px; margin-bottom: 18px; border: 1px solid rgba(230,109,162,.3); border-radius: 30px; color: var(--pink-dark); background: rgba(230,109,162,.08); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero h1 { max-width: 650px; margin-bottom: 21px; color: var(--plum-dark); font-size: clamp(3.6rem, 6.4vw, 6.2rem); line-height: .91; letter-spacing: -.045em; }
.hero h1 em { display: block; color: var(--pink); font-style: normal; }
.hero__copy > p { max-width: 590px; margin-bottom: 30px; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 50px; padding: 0 22px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 14px; cursor: pointer; font-weight: 800; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button[hidden] { display: none; }
.button--primary { color: #fff; background: var(--plum); box-shadow: 0 12px 30px rgba(111,59,88,.22); }
.button--primary:hover { background: var(--plum-dark); }
.button--soft { color: var(--plum); background: var(--cream); }
.button--outline { color: var(--plum); border-color: rgba(111,59,88,.22); background: transparent; }
.button--light { color: var(--plum); background: #fff; }
.button--wide { width: 100%; }
.button.is-loading { position: relative; color: transparent !important; pointer-events: none; }
.button.is-loading::after { content: ""; position: absolute; width: 18px; height: 18px; border: 3px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: btnSpin .7s linear infinite; }
@keyframes btnSpin { to { transform: rotate(360deg); } }
.hero__trust { display: flex; gap: 27px; margin-top: 35px; }
.hero__trust div { display: grid; }
.hero__trust strong { color: var(--plum); font-family: "Fredoka", sans-serif; }
.hero__trust span { margin-top: 2px; color: var(--muted); font-size: .76rem; }
.hero__visual { position: relative; min-height: 500px; }
.hero-orbit { position: absolute; inset: 4% 2% 0 8%; border: 1px dashed rgba(111,59,88,.2); border-radius: 50%; transform: rotate(-10deg); }
.hero-orbit::before, .hero-orbit::after { content: ""; position: absolute; border-radius: 50%; }
.hero-orbit::before { width: 84%; height: 84%; inset: 8%; background: var(--peach); opacity: .42; }
.hero-orbit::after { width: 57%; height: 57%; inset: 21.5%; background: var(--pink); opacity: .15; }
.floating-card { position: absolute; z-index: 2; overflow: hidden; border: 8px solid #fff; background: #fff; box-shadow: var(--shadow); }
.floating-card--main { width: min(370px, 68%); right: 14%; top: 5%; border-radius: 42% 42% 22% 22%; transform: rotate(3deg); }
.floating-card--main img { width: 100%; height: auto; aspect-ratio: 1/1.14; object-fit: cover; }
.floating-card--main div { padding: 17px 19px 19px; }
.floating-card--main span { display: block; color: var(--pink-dark); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.floating-card--main strong { color: var(--plum); font-family: "Fredoka", sans-serif; font-size: 1.15rem; }
.floating-card--small { width: 135px; aspect-ratio: 1; border-width: 5px; border-radius: 28px; }
.floating-card--small img { width: 100%; height: 100%; object-fit: cover; }
.floating-card--one { right: 1%; bottom: 8%; transform: rotate(8deg); }
.floating-card--two { left: 2%; top: 43%; transform: rotate(-9deg); }
.sweet-badge { position: absolute; z-index: 3; right: 4%; top: 3%; display: grid; width: 92px; height: 92px; place-content: center; text-align: center; border: 4px solid #fff; border-radius: 50%; color: #fff; background: var(--plum); box-shadow: 0 12px 28px rgba(73,37,58,.22); transform: rotate(8deg); }
.sweet-badge strong { font: 700 1.4rem/1 "Fredoka", sans-serif; }
.sweet-badge span { font-size: .63rem; }

.featured-strip { overflow: hidden; color: #fff; background: var(--pink); }
.featured-strip__inner { display: flex; min-height: 58px; align-items: center; justify-content: space-between; gap: 20px; white-space: nowrap; font-family: "Fredoka", sans-serif; font-size: .92rem; font-weight: 600; }
.featured-strip i { width: 7px; height: 7px; flex: 0 0 auto; border: 2px solid rgba(255,255,255,.8); border-radius: 50%; }

.menu-section { padding-block: 110px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.search-box { display: flex; width: min(330px, 100%); height: 50px; align-items: center; gap: 11px; padding: 0 16px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.search-box svg { width: 20px; flex: 0 0 auto; fill: none; stroke: var(--muted); stroke-width: 1.8; }
.search-box input { width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; }
.search-box input::placeholder { color: #a3929a; }
.filter-wrap { position: relative; max-width: 100%; overflow: hidden; padding-inline: 0; }
.category-filters { display: flex; width: 100%; max-width: 100%; gap: 10px; overflow-x: auto; overflow-y: hidden; padding: 4px 2px 8px; scroll-behavior: smooth; overscroll-behavior-x: contain; -webkit-overflow-scrolling: touch; touch-action: pan-x; scrollbar-width: none; }
.category-filters.is-slider-dragging { scroll-behavior: auto; scroll-snap-type: none; }
.category-filters::-webkit-scrollbar { display: none; }
.filter-slider-row { display: flex; align-items: center; min-height: 22px; padding: 1px 3px 0; }
.filter-slider-row[hidden] { display: none; }
.filter-slider { --slider-progress: 0%; position: relative; z-index: 2; width: 100%; height: 20px; margin: 0; appearance: none; -webkit-appearance: none; cursor: grab; background: transparent; touch-action: none; user-select: none; }
.filter-slider:active { cursor: grabbing; }
.filter-slider:focus-visible { outline: 3px solid rgba(230,109,162,.24); outline-offset: 2px; border-radius: 999px; }
.filter-slider::-webkit-slider-runnable-track { height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--pink) 0 var(--slider-progress), rgba(111,59,88,.14) var(--slider-progress) 100%); box-shadow: inset 0 1px 2px rgba(73,37,58,.08); }
.filter-slider::-webkit-slider-thumb { width: 34px; height: 16px; margin-top: -5px; border: 2px solid var(--paper); border-radius: 999px; appearance: none; -webkit-appearance: none; background: var(--plum); box-shadow: 0 4px 10px rgba(73,37,58,.24); }
.filter-slider::-moz-range-track { height: 6px; border: 0; border-radius: 999px; background: rgba(111,59,88,.14); box-shadow: inset 0 1px 2px rgba(73,37,58,.08); }
.filter-slider::-moz-range-progress { height: 6px; border-radius: 999px; background: var(--pink); }
.filter-slider::-moz-range-thumb { width: 30px; height: 12px; border: 2px solid var(--paper); border-radius: 999px; background: var(--plum); box-shadow: 0 4px 10px rgba(73,37,58,.24); }
.category-pill { display: inline-flex; min-width: max-content; min-height: 45px; align-items: center; gap: 8px; padding: 0 17px; border: 1px solid var(--line); border-radius: 14px; cursor: pointer; color: var(--muted); background: #fff; font-weight: 800; scroll-snap-align: start; }
.category-pill span { display: grid; place-items: center; min-width: 21px; height: 21px; padding-inline: 5px; border-radius: 20px; color: var(--plum); background: var(--cream); font-size: .7rem; }
.category-pill[aria-selected="true"] { color: #fff; border-color: var(--plum); background: var(--plum); box-shadow: 0 10px 22px rgba(111,59,88,.18); }
.category-pill[aria-selected="true"] span { color: var(--plum); background: #fff; }
.filter-arrow { display: none; }
.menu-status { display: flex; align-items: center; justify-content: space-between; margin: 22px 0 18px; }
.menu-status p { margin: 0; color: var(--muted); font-size: .88rem; }
.text-button { display: inline-flex; align-items: center; gap: 7px; border: 0; cursor: pointer; color: var(--plum); background: transparent; font-weight: 800; }
.text-button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.text-button.is-active svg { fill: var(--pink); stroke: var(--pink); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
  --card-reveal-y: 0px;
  --card-lift: 0px;
  --card-scale: 1;
  --card-shadow-y: 8px;
  --card-shadow-blur: 34px;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(111,59,88,.09);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 var(--card-shadow-y) var(--card-shadow-blur) rgba(73,37,58,.13);
  transform: translate3d(0, calc(var(--card-reveal-y) + var(--card-lift)), 0) scale(var(--card-scale));
  transform-origin: center center;
  transition: transform .34s cubic-bezier(.2,.75,.25,1), box-shadow .28s ease, border-color .28s ease, opacity .5s ease;
  transition-delay: 0s, 0s, 0s, var(--reveal-delay, 0ms);
}
.product-card:hover, .product-card:focus-within { --card-lift: -4px; --card-scale: 1.006; --card-shadow-y: 18px; --card-shadow-blur: 42px; border-color: rgba(230,109,162,.2); }
.product-card.is-pressed { --card-lift: -1px; --card-scale: .99; transition-duration: .12s, .18s, .18s, .18s; }
html.motion-enabled .product-card { --card-reveal-y: 24px; opacity: 0; }
html.motion-enabled .product-card.is-in-view { --card-reveal-y: 0px; opacity: 1; }
.product-card__image { position: relative; height: 0; padding-bottom: 125%; overflow: hidden; background: linear-gradient(145deg, #f7f0eb, var(--cream)); cursor: pointer; }
@supports (aspect-ratio: 4 / 5) {
  .product-card__image { height: auto; padding-bottom: 0; aspect-ratio: 4 / 5; }
}
.product-card__image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; transform: scale(1); transition: transform .38s cubic-bezier(.2,.75,.25,1), filter .3s ease; -webkit-user-drag: none; user-select: none; }
.product-card:hover .product-card__image > img, .product-card:focus-within .product-card__image > img { transform: scale(1.018); filter: saturate(1.025) contrast(1.01); }
.product-card__badge { position: absolute; left: 12px; top: 12px; padding: 6px 9px; border-radius: 8px; color: var(--plum); background: rgba(255,255,255,.9); backdrop-filter: blur(6px); font-size: .63rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.favorite-button { position: absolute; top: 12px; right: 12px; display: grid; width: 37px; height: 37px; place-items: center; border: 0; border-radius: 50%; cursor: pointer; color: var(--plum); background: rgba(255,255,255,.9); backdrop-filter: blur(6px); }
.favorite-button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.favorite-button.is-favorite { color: var(--pink-dark); }
.favorite-button.is-favorite svg { fill: currentColor; }
.product-card__body { position: relative; z-index: 2; display: flex; flex: 1; flex-direction: column; padding: 17px; background: #fff; }
.product-card__category { margin-bottom: 6px; color: var(--pink-dark); font-size: .65rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.product-card h3 { min-height: 47px; margin-bottom: 6px; color: var(--plum-dark); font-size: 1.14rem; line-height: 1.18; }
.product-card__desc { display: -webkit-box; min-height: 39px; margin-bottom: 14px; overflow: hidden; color: var(--muted); font-size: .78rem; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.product-card__price { color: var(--plum); font: 700 1.12rem "Fredoka", sans-serif; }
.quick-add { display: grid; width: 39px; height: 39px; place-items: center; border: 0; border-radius: 12px; cursor: pointer; color: #fff; background: var(--plum); font-size: 1.4rem; transition: transform .18s; }
.quick-add:hover { transform: rotate(8deg) scale(1.05); }
.load-more-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }
.load-more { margin: 0; }
.empty-state { padding: 70px 20px; text-align: center; color: var(--muted); }
.empty-state div { font-size: 3rem; color: var(--pink); }
.empty-state h3 { margin: 10px 0 4px; color: var(--plum); }

html.motion-enabled .scroll-reveal { opacity: 0; transform: translate3d(0, 24px, 0); transition: opacity .64s ease, transform .64s cubic-bezier(.2,.75,.25,1); }
html.motion-enabled .scroll-reveal.is-in-view { opacity: 1; transform: translate3d(0, 0, 0); }
html.motion-enabled .scroll-reveal[data-motion-side="left"] { transform: translate3d(-24px, 12px, 0); }
html.motion-enabled .scroll-reveal[data-motion-side="right"] { transform: translate3d(24px, 12px, 0); }
html.motion-enabled .scroll-reveal[data-motion-side].is-in-view { transform: translate3d(0, 0, 0); }

.story-section { padding-block: 105px; background: var(--cream); }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(50px, 9vw, 120px); }
.story-art { position: relative; display: grid; min-height: 430px; place-items: center; }
.story-art::before, .story-art::after { content: ""; position: absolute; border-radius: 50%; }
.story-art::before { width: 390px; height: 390px; max-width: 95%; max-height: 95%; background: var(--peach); }
.story-art::after { width: 310px; height: 310px; max-width: 78%; max-height: 78%; border: 2px dashed rgba(111,59,88,.24); animation: slowSpin 24s linear infinite; will-change: transform; }
@keyframes slowSpin { to { transform: rotate(360deg); } }
.story-art__circle { z-index: 1; width: 250px; max-width: 64%; aspect-ratio: 1; overflow: hidden; border: 0; border-radius: 50%; box-shadow: 0 18px 42px rgba(73,37,58,.18); transform: rotate(-5deg); }
.story-art__circle img { width: 100%; height: 100%; object-fit: cover; animation: slowSpin 8s linear infinite; will-change: transform; }
.story-art__label { position: absolute; z-index: 2; right: 5%; bottom: 12%; padding: 13px 18px; border-radius: 13px; color: #fff; background: var(--plum); font-family: "Fredoka", sans-serif; font-weight: 600; transform: rotate(5deg); }
.story-copy h2 { max-width: 650px; margin-bottom: 23px; }
.story-copy > p { max-width: 610px; color: var(--muted); font-size: 1rem; line-height: 1.8; }
.hours-card { display: flex; max-width: 430px; align-items: center; gap: 15px; padding: 17px; margin-top: 25px; border: 1px solid rgba(111,59,88,.1); border-radius: 18px; background: rgba(255,255,255,.72); }
.hours-card__icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 14px; color: #fff; background: var(--pink); font-size: 1.5rem; }
.hours-card div { display: grid; }
.hours-card small { color: var(--muted); }
.hours-card strong { margin-top: 2px; color: var(--plum); }

.reviews-section { padding-block: 110px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { padding: 25px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.review-card__stars { margin-bottom: 15px; color: #f5a623; letter-spacing: 2px; }
.review-card blockquote { min-height: 76px; margin: 0 0 20px; color: var(--ink); font-size: .92rem; line-height: 1.65; }
.review-card__person { display: flex; align-items: center; gap: 11px; }
.review-card__avatar { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; color: #fff; background: var(--pink); font-family: "Fredoka", sans-serif; }
.review-card__person div { display: grid; }
.review-card__person strong { color: var(--plum); font-size: .88rem; }
.review-card__person span { color: var(--muted); font-size: .7rem; }
.order-cta { display: flex; min-height: 260px; margin-bottom: 90px; padding: 48px 60px; align-items: center; justify-content: space-between; gap: 30px; border-radius: 34px; color: #fff; background: var(--plum); background-image: radial-gradient(circle at 12% 0, rgba(230,109,162,.35), transparent 35%), radial-gradient(circle at 95% 100%, rgba(252,208,184,.18), transparent 40%); }
.order-cta .kicker { color: var(--peach); }
.order-cta h2 { max-width: 680px; color: #fff; }

.footer { padding-top: 70px; color: rgba(255,255,255,.72); background: var(--plum-dark); }
.footer__grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 50px; padding-bottom: 55px; }
.footer__grid > div { display: grid; align-content: start; gap: 9px; font-size: .86rem; }
.footer__grid > div > strong { margin-bottom: 5px; color: #fff; }
.footer__grid a:hover { color: var(--peach); }
.footer__brand { display: flex !important; flex-direction: row; align-items: center; gap: 13px !important; }
.footer__brand img { width: 66px; height: 66px; border-radius: 50%; }
.footer__brand div { display: grid; }
.footer__brand strong { color: #fff; font: 700 1.15rem "Fredoka", sans-serif; }
.footer__bottom { display: flex; min-height: 65px; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); font-size: .74rem; }

.overlay { position: fixed; z-index: 499; inset: 0; background: rgba(38,21,31,.58); backdrop-filter: blur(5px); opacity: 0; transition: opacity .25s; }
.overlay.is-open { opacity: 1; }
.drawer { position: fixed; z-index: 500; top: 0; right: 0; display: flex; width: min(480px, 100%); height: 100dvh; flex-direction: column; background: var(--paper); box-shadow: -20px 0 60px rgba(33,14,25,.18); transform: translateX(102%); transition: transform .3s cubic-bezier(.2,.75,.2,1); will-change: transform; }
.drawer.is-open { transform: translateX(0); }
.drawer__header { display: flex; padding: 25px 24px 19px; align-items: start; justify-content: space-between; border-bottom: 1px solid var(--line); }
.drawer__header h2 { font-size: 2rem; }
.close-button { width: 42px; height: 42px; flex: 0 0 auto; border-radius: 50%; color: var(--plum); background: var(--cream); font-size: 1.7rem; line-height: 1; }
.drawer__body { flex: 1; overflow-y: auto; padding: 18px 24px; }
.cart-item { display: grid; grid-template-columns: 78px 1fr auto; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item > img { width: 78px; height: 78px; border-radius: 16px; object-fit: cover; background: var(--cream); }
.cart-item__info h3 { margin: 2px 0 4px; color: var(--plum); font-size: .95rem; }
.cart-item__info p { margin: 0 0 9px; color: var(--muted); font-size: .68rem; line-height: 1.4; }
.qty-control { display: inline-flex; align-items: center; gap: 11px; }
.qty-control button { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; background: #fff; }
.qty-control span { min-width: 12px; text-align: center; font-size: .8rem; font-weight: 800; }
.cart-item__side { display: flex; flex-direction: column; align-items: end; justify-content: space-between; }
.cart-item__side strong { color: var(--plum); font-size: .9rem; }
.remove-item { border: 0; cursor: pointer; color: #a58f9a; background: transparent; font-size: .7rem; text-decoration: underline; }
.cart-empty { display: grid; flex: 1; padding: 40px; place-content: center; justify-items: center; text-align: center; }
.cart-empty > div { font-size: 3rem; }
.cart-empty h3 { margin: 14px 0 5px; color: var(--plum); }
.cart-empty p { color: var(--muted); }
.drawer__footer { padding: 20px 24px calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: #fff; }
.cart-totals { display: grid; gap: 8px; margin-bottom: 17px; }
.cart-totals > div { display: flex; justify-content: space-between; color: var(--muted); font-size: .82rem; }
.cart-totals__total { padding-top: 10px; margin-top: 3px; border-top: 1px dashed var(--line); color: var(--plum) !important; font-size: 1.05rem !important; }

.modal { position: fixed; z-index: 501; top: 50%; left: 50%; width: min(920px, calc(100% - 32px)); max-height: min(88dvh, 820px); overflow-y: auto; border-radius: 28px; background: var(--paper); box-shadow: var(--shadow); transform: translate(-50%,-46%) scale(.97); opacity: 0; transition: transform .25s, opacity .25s; will-change: transform, opacity; }
.modal.is-open { transform: translate(-50%,-50%) scale(1); opacity: 1; }
.modal__close { position: sticky; z-index: 4; top: 15px; float: right; margin: 15px 15px -57px 0; }
.product-modal__grid { display: grid; grid-template-columns: 45% 55%; align-items: start; }
.product-modal__image { position: sticky; isolation: isolate; top: 0; display: grid; height: min(74dvh, 650px); min-height: 520px; padding: 14px; place-items: center; overflow: hidden; background: linear-gradient(145deg, #f7f0eb, #eadfd8); }
.product-modal__image-inner { position: relative; z-index: 1; display: grid; width: 100%; height: 100%; place-items: center; overflow: hidden; border: 1px solid rgba(111,59,88,.08); border-radius: 22px; background: #f8f2ee; box-shadow: 0 16px 38px rgba(73,37,58,.1); }
.product-modal__image img { position: relative; z-index: 1; display: block; width: 100%; height: 100%; object-fit: contain !important; object-position: center !important; opacity: 1; rotate: 0deg; transform: none; transition: opacity .18s ease, transform .24s cubic-bezier(.2,.75,.25,1); -webkit-user-drag: none; user-select: none; }
.product-modal__image img.is-switching { opacity: .18; transform: scale(.985); }
.product-modal__details { padding: 52px 42px 38px; }
.product-modal__details h2 { margin-bottom: 10px; font-size: 2.35rem; }
.product-modal__details > p { color: var(--muted); line-height: 1.65; }
.product-modal__price { display: block; margin-bottom: 18px; color: var(--plum); font: 700 1.4rem "Fredoka", sans-serif; }
.addons-intro { display: grid; gap: 3px; padding: 12px 14px; margin-bottom: 10px; border-radius: 13px; color: var(--plum); background: var(--cream); }
.addons-intro strong { font-size: .88rem; }
.addons-intro span { color: var(--muted); font-size: .72rem; }
.addon-group { border-top: 1px solid var(--line); }
.addon-group:last-of-type { border-bottom: 1px solid var(--line); }
.addon-group__summary { display: flex; min-height: 62px; padding: 13px 2px; align-items: center; justify-content: space-between; gap: 14px; cursor: pointer; list-style: none; }
.addon-group__summary::-webkit-details-marker { display: none; }
.addon-group__summary > span:first-child { display: grid; gap: 2px; }
.addon-group__summary strong { color: var(--plum); font-size: .9rem; }
.addon-group__summary small { color: var(--muted); font-size: .69rem; }
.addon-group__summary-meta { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.addon-group__summary-meta b { padding: 5px 8px; border-radius: 999px; color: var(--muted); background: var(--cream); font-size: .64rem; }
.addon-group__summary-meta i { font-style: normal; transition: transform .18s ease; }
.addon-group[open] .addon-group__summary-meta i { transform: rotate(180deg); }
.addon-group.has-selection .addon-group__summary-meta b { color: #fff; background: var(--plum); }
.addon-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 0 15px; }
.addon-option { display: flex; min-height: 46px; padding: 9px 11px; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 11px; cursor: pointer; background: #fff; transition: border-color .16s ease, background .16s ease; }
.addon-option:has(input:checked) { border-color: var(--plum); background: rgba(111,59,88,.06); }
.addon-option input { width: 17px; height: 17px; flex: 0 0 auto; accent-color: var(--plum); }
.addon-option span { flex: 1; font-size: .78rem; line-height: 1.2; }
.addon-option strong { color: var(--plum); font-size: .72rem; white-space: nowrap; }
.product-modal__add { position: sticky; z-index: 2; bottom: -38px; display: grid; grid-template-columns: 112px 1fr; gap: 12px; padding: 14px 0 38px; margin-top: 10px; background: linear-gradient(to bottom, rgba(255,250,247,0), var(--paper) 18%, var(--paper)); }
.qty-large { display: flex; align-items: center; justify-content: space-around; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.qty-large button { border: 0; cursor: pointer; background: transparent; font-size: 1.2rem; }
.qty-large span { font-weight: 800; }

.checkout-modal { width: min(1040px, calc(100% - 32px)); }
.checkout-layout { display: grid; grid-template-columns: 1.35fr .65fr; }
.checkout-form { padding: 48px; }
.checkout-form h2 { margin-bottom: 8px; }
.checkout-form > p { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 25px; }
.field { display: grid; gap: 7px; margin-bottom: 15px; }
.form-grid .field { margin-bottom: 0; }
.field--full { grid-column: 1/-1; }
.field span, .rating-input legend { color: var(--plum); font-size: .78rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; outline: 0; color: var(--ink); background: #fff; }
.field input, .field select { height: 46px; padding: 0 13px; }
.field textarea { padding: 12px 13px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(230,109,162,.1); }
.check-field { display: flex; gap: 9px; margin: 19px 0; color: var(--muted); font-size: .78rem; }
.check-field input { accent-color: var(--plum); }
.form-message { min-height: 18px; margin: 10px 0 0 !important; color: var(--pink-dark) !important; font-size: .75rem; text-align: center; }
.checkout-summary { padding: 53px 30px; background: var(--cream); }
.checkout-summary__item { display: flex; padding: 12px 0; justify-content: space-between; gap: 15px; border-bottom: 1px solid var(--line); font-size: .8rem; }
.checkout-summary__item span { color: var(--muted); }
.checkout-summary__total { display: flex; padding: 20px 0 10px; align-items: center; justify-content: space-between; color: var(--plum); }
.checkout-summary__total strong { font: 700 1.35rem "Fredoka", sans-serif; }
.checkout-summary > small { color: var(--muted); line-height: 1.5; }
.review-modal { width: min(520px, calc(100% - 32px)); padding: 44px; }
.review-modal h2 { margin-bottom: 25px; font-size: 2.25rem; }
.rating-input { padding: 0; margin: 0 0 15px; border: 0; }
.rating-input div { display: flex; width: max-content; flex-direction: row-reverse; margin-top: 5px; }
.rating-input input { position: absolute; opacity: 0; }
.rating-input label { cursor: pointer; color: #dcced4; font-size: 2rem; }
.rating-input label:hover, .rating-input label:hover ~ label, .rating-input input:checked ~ label { color: #f5a623; }

.mobile-cart-bar { position: fixed; z-index: 120; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); left: 12px; display: none; }
.mobile-cart-bar button { display: flex; width: 100%; min-height: 58px; padding: 0 18px; align-items: center; justify-content: space-between; border: 0; border-radius: 17px; color: #fff; background: var(--plum); box-shadow: 0 14px 35px rgba(73,37,58,.28); }
.mobile-cart-bar span { font-size: .78rem; }
.toast { position: fixed; z-index: 999; left: 50%; bottom: 25px; padding: 12px 18px; border-radius: 12px; color: #fff; background: var(--plum-dark); box-shadow: var(--shadow); transform: translate(-50%, 25px); opacity: 0; pointer-events: none; transition: .25s; font-size: .82rem; font-weight: 700; }
.toast.is-visible { transform: translate(-50%,0); opacity: 1; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 62px; }
  .hero__copy { text-align: center; }
  .hero__copy > p { margin-inline: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__visual { width: min(610px, 100%); margin: 45px auto 0; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .story-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer__grid { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 25px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 82px; }
  .shell { width: min(calc(100% - 24px), 620px); }
  .announcement { font-size: .7rem; }
  .nav { min-height: 66px; }
  .brand img { width: 44px; height: 44px; }
  .brand span, .nav__links { display: none; }
  .nav-menu-button { display: grid; }
  .mobile-nav.is-open { display: flex; }
  .mobile-nav { position: absolute; z-index: 99; top: 100%; right: 0; left: 0; flex-direction: column; gap: 2px; padding: 10px 20px calc(14px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(255,250,247,.98); backdrop-filter: blur(18px); box-shadow: 0 24px 40px rgba(73,37,58,.12); }
  .mobile-nav a { padding: 13px 8px; border-radius: 10px; color: var(--muted); font-size: .95rem; font-weight: 700; }
  .mobile-nav a:active { background: var(--cream); }
  .hero-trust-top { display: block; padding-top: 30px; }
  .hero-trust-top .hero__trust { justify-content: space-between; gap: 12px; margin-top: 0; text-align: left; }
  .hero__trust div { min-width: 0; }
  .hero__trust strong { font-size: .92rem; }
  .hero__trust span { font-size: .68rem; }
  .hero { display: block; min-height: 0; padding: 34px 0 38px; }
  .hero__copy { text-align: center; }
  .hero__copy > p { max-width: 540px; margin: 0 auto 24px; font-size: .96rem; line-height: 1.6; }
  .hero__visual, .featured-strip { display: none; }
  .hero__actions { display: flex; justify-content: center; gap: 10px; }
  .hero__actions .button { min-width: min(210px, 48%); }
  .hero h1 { max-width: 610px; margin: 0 auto 18px; font-size: clamp(3rem, 14vw, 4.35rem); line-height: .92; }
  .eyebrow { margin-bottom: 19px; }
  .button { min-height: 48px; }
  .menu-section, .reviews-section { padding-block: 64px; }
  .menu-section { padding-top: 24px; }
  .section-heading { display: grid; gap: 18px; margin-bottom: 22px; }
  .section-heading h2 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .search-box { width: 100%; height: 52px; }
  .filter-wrap { margin-inline: 0; padding-inline: 0; }
  .category-filters { gap: 8px; }
  .category-pill { min-height: 46px; padding-inline: 15px; }
  .filter-slider-row { min-height: 26px; }
  .filter-slider { height: 24px; }
  .filter-slider::-webkit-slider-thumb { width: 40px; height: 18px; margin-top: -6px; }
  .filter-slider::-moz-range-thumb { width: 36px; height: 14px; }
  .menu-status { margin-top: 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 13px; }
  .product-card { border-radius: 19px; touch-action: pan-y pinch-zoom; }
  .product-card__body { padding: 13px; }
  .product-card h3 { min-height: 38px; font-size: .98rem; }
  .product-card__desc { display: none; }
  .product-card__category { font-size: .57rem; }
  .product-card__price { font-size: 1rem; }
  .product-card__footer { gap: 6px; }
  .quick-add { width: 44px; height: 44px; flex: 0 0 44px; }
  .favorite-button { top: 8px; right: 8px; width: 42px; height: 42px; }
  .product-card__badge { top: 8px; left: 8px; max-width: calc(100% - 60px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .story-section { padding-block: 62px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-art { min-height: 315px; }
  .story-copy { text-align: center; }
  .story-copy > p, .hours-card { margin-inline: auto; }
  .reviews-grid { display: flex; overflow-x: auto; padding: 2px 2px 14px; scroll-snap-type: x mandatory; overscroll-behavior-x: contain; -webkit-overflow-scrolling: touch; }
  .review-card { min-width: 83%; scroll-snap-align: start; }
  .order-cta { display: grid; min-height: 0; padding: 34px 22px; margin-bottom: 52px; text-align: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1/-1; }
  .footer__bottom { display: grid; justify-content: center; gap: 5px; text-align: center; }
  .footer { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
  .drawer { width: 100%; }
  .drawer__body { padding-inline: 17px; }
  .drawer__header, .drawer__footer { padding-inline: 17px; }
  .modal { top: auto; right: 0; bottom: 0; left: 0; width: 100%; max-height: calc(100dvh - 8px); border-radius: 24px 24px 0 0; transform: translate3d(0, 105%, 0); }
  .modal.is-open { transform: translate3d(0, 0, 0); }
  .product-modal__grid { grid-template-columns: 1fr; }
  .product-modal__image { position: relative; width: 100%; height: min(58dvh, 125vw, 520px); min-height: 300px; max-height: none; padding: 10px; background: linear-gradient(145deg, #f7f0eb, #eadfd8); }
  .product-modal__image-inner { border-radius: 20px; }
  .product-modal__image img { z-index: 1; width: 100% !important; height: 100% !important; object-fit: contain !important; object-position: center !important; transform: none !important; rotate: 0deg !important; filter: none !important; }
  .product-modal__image img.is-switching { opacity: .18; transform: none !important; }
  .addon-options { grid-template-columns: 1fr; }
  .product-modal__add { bottom: -1px; grid-template-columns: 96px 1fr; padding-bottom: calc(18px + env(safe-area-inset-bottom)); }
  .product-modal__details { padding: 26px 18px calc(18px + env(safe-area-inset-bottom)); }
  .product-modal__details h2 { font-size: 1.9rem; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-form { padding: 38px 20px 25px; }
  .checkout-summary { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .review-modal { padding: 40px 20px calc(24px + env(safe-area-inset-bottom)); }
  .mobile-cart-bar:not([hidden]) { display: block; }
  .toast { bottom: 88px; width: max-content; max-width: calc(100% - 24px); white-space: normal; text-align: center; }
  /* Perf: backdrop blurs are near-invisible over these 90%+ opaque backgrounds but cost GPU time on phones. */
  .site-header { backdrop-filter: blur(10px); }
  .mobile-nav { backdrop-filter: blur(10px); }
  .overlay { backdrop-filter: none; }
  .product-card__badge, .favorite-button { backdrop-filter: none; background: rgba(255,255,255,.94); }
  .product-card { perspective: 760px; }
}

@media (max-width: 390px) {
  .shell { width: calc(100% - 20px); }
  .hero__trust { gap: 8px; }
  .hero-trust-top { padding-top: 24px; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 3.3rem); }
  .hero__actions { display: grid; }
  .hero__actions .button { width: 100%; min-width: 0; }
  .product-grid { gap: 9px; }
  .product-card__body { padding: 11px; }
  .product-card h3 { font-size: .92rem; }
  .product-card__price { font-size: .92rem; }
  .quick-add { width: 42px; height: 42px; flex-basis: 42px; }
  .product-modal__image { min-height: 280px; }
  .product-modal__details { padding-inline: 14px; }
  .checkout-form, .checkout-summary { padding-inline: 16px; }
  .floating-card--small { width: 90px; }
  .footer__grid { gap: 32px 18px; }
}

@media (hover: none) and (pointer: coarse) {
  .product-card:hover { --card-lift: 0px; --card-scale: 1; --card-shadow-y: 8px; --card-shadow-blur: 34px; border-color: rgba(111,59,88,.09); }
  .product-card:hover .product-card__image > img { transform: none; filter: none; }
  .product-card.is-pressed { --card-lift: -1px; --card-scale: .985; }
  .button, .icon-button, .close-button, .quick-add, .favorite-button, .category-pill, .text-button { touch-action: manipulation; }
}

@media (prefers-reduced-motion: reduce) {
  html, .category-filters { scroll-behavior: auto; }
  /* Collapse all animation/transition time so every state change (drawer, modal, toast,
     loader hide, sidebar, editor, addon accordion) still fires and completes — instantly,
     without motion. Zeroed delays prevent the loader's staggered entrances from flashing
     content in late. */
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0s !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
  /* No hover movement; color and shadow feedback still applies. */
  .button:hover, .product-card:hover, .quick-add:hover,
  .product-card:hover .product-card__image > img { transform: none; }
  html.motion-enabled .product-card,
  html.motion-enabled .product-card.is-in-view,
  html.motion-enabled .scroll-reveal,
  html.motion-enabled .scroll-reveal.is-in-view,
  html.motion-enabled .scroll-reveal[data-motion-side],
  html.motion-enabled .scroll-reveal[data-motion-side].is-in-view {
    opacity: 1 !important;
    transform: none !important;
  }
  /* Loading buttons: the spinner would freeze into a broken-looking arc, so show a
     full ring with a gentle opacity pulse instead — activity feedback without spinning. */
  .button.is-loading::after {
    border-color: rgba(255,255,255,.85);
    border-top-color: #fff;
    animation: reducedBusyPulse 1.4s ease-in-out infinite !important;
  }
}
@keyframes reducedBusyPulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
