/* ===================================================================
   בונבוניקה (Bonbonika) — candy & chocolate boutique demo
   Visual identity: warm cream + raspberry/pistachio/mango candy accents
   with a thin gold-foil premium touch; deep cocoa-brown at night.
   Distinct on purpose from the bicycle-repair demo's mechanical/blueprint
   language — this one is illustrative, tactile, and playful-premium.
   =================================================================== */

:root {
  --bg: #FFF6EE;
  --bg-soft: #FFEFE0;
  --surface: #FFFFFF;
  --surface-soft: #FFFBF6;
  --ink: #2B1B1E;
  --text: #2B1B1E;
  --muted: #8A7368;
  --line: #F3E4D6;
  --line-strong: #E9D3BE;
  --pink: #E23E72;
  --pink-deep: #C22C5C;
  --green: #2F9D6D;
  --orange: #F2994A;
  --gold: #B4863C;
  --choc: #6B4226;
  --choc-dark: #3D2415;
  --on-accent: #FFFFFF;
  --shadow: 0 26px 62px rgba(43, 27, 30, 0.16);
  --shadow-soft: 0 10px 26px rgba(43, 27, 30, 0.1);
  --container: 1220px;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --section-space: clamp(4.5rem, 8vw, 7.5rem);
  --font-display: "Rubik", "Segoe UI", Arial, sans-serif;
  --font-body: "Heebo", "Segoe UI", Arial, sans-serif;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --bg: #1C1210;
  --bg-soft: #241713;
  --surface: #2A1B16;
  --surface-soft: #33221A;
  --ink: #0D0805;
  --text: #F8EEE4;
  --muted: #C4AC9D;
  --line: #3B281F;
  --line-strong: #4C3427;
  --pink: #FF6E97;
  --pink-deep: #FF8FB0;
  --green: #6FE3A6;
  --orange: #FFB865;
  --gold: #E8C077;
  --choc: #C89A70;
  --choc-dark: #140C08;
  --on-accent: #2A1610;
  --shadow: 0 34px 78px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 16px 36px rgba(0, 0, 0, 0.35);
  color-scheme: dark;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.25s ease, color 0.25s ease;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: color-mix(in srgb, var(--pink) 30%, transparent); color: var(--pink-deep); }

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  inset-inline-start: 1rem;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1.1rem;
  background: var(--pink);
  color: var(--on-accent);
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transform: translateY(-120%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

.wrap { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-space); position: relative; }
[id] { scroll-margin-top: 92px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); text-wrap: balance; letter-spacing: -0.01em; }

h1 { margin-bottom: 1.3rem; font-size: clamp(3rem, 7.2vw, 6rem); font-weight: 900; line-height: 1.02; letter-spacing: -0.025em; }
h2 { margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; line-height: 1.14; }
h3 { font-size: 1.2rem; font-weight: 700; }

.eyebrow {
  display: flex; align-items: center; gap: 0.65rem;
  margin: 0 0 1rem; color: var(--pink-deep);
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em;
}
[dir="ltr"] .eyebrow { letter-spacing: 0.08em; text-transform: uppercase; }
[dir="rtl"] .eyebrow, [dir="rtl"] .footer-col h3 { letter-spacing: 0; }
.eyebrow > span:first-child { width: 26px; height: 2px; flex: none; background: var(--gold); }
.eyebrow-light { color: var(--gold); }
.eyebrow-light > span:first-child { background: var(--gold); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-intro { color: var(--muted); font-size: 1.02rem; line-height: 1.7; max-width: 600px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 48px; padding: 0.7rem 1.35rem; border: 1px solid transparent; border-radius: 999px;
  font-size: 0.92rem; font-weight: 700;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--pink); color: var(--on-accent); box-shadow: 0 12px 26px color-mix(in srgb, var(--pink) 40%, transparent); }
.btn-primary:hover { background: var(--pink-deep); }
.btn-ghost { border-color: var(--line-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--pink); background: var(--surface); }
.btn-light { background: var(--surface); color: var(--pink-deep); box-shadow: var(--shadow-soft); }
.btn-light:hover { background: var(--surface-soft); }
.btn-lg { min-height: 56px; padding-inline: 1.7rem; font-size: 0.98rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 1.25rem; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text b { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; }
.brand-text i { font-style: normal; font-size: 0.64rem; color: var(--muted); font-weight: 500; }

.desktop-nav { display: flex; align-items: center; gap: clamp(1rem, 1.6vw, 1.9rem); margin-inline: auto; }
.desktop-nav a { position: relative; font-size: 0.86rem; font-weight: 600; color: var(--muted); transition: color 0.2s ease; }
.desktop-nav a::after {
  content: ""; position: absolute; inset-inline: 0; bottom: -8px; height: 2px;
  background: var(--pink); border-radius: 1px; transform: scaleX(0); transition: transform 0.2s ease;
}
.desktop-nav a:hover { color: var(--text); }
.desktop-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.lang-switch { display: flex; align-items: center; gap: 0.28rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.03em; color: var(--muted); padding: 0.4rem; }
.lang-switch .lang-on { color: var(--pink-deep); }
.lang-switch .lang-div { color: var(--line-strong); }

.theme-toggle {
  position: relative; display: grid; place-items: center; width: 40px; height: 40px;
  border: 1px solid var(--line); border-radius: 50%; background: var(--surface);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.theme-toggle:hover { border-color: var(--pink); transform: rotate(-12deg); }
.theme-toggle .icon { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.theme-toggle .icon-moon { display: none; fill: currentColor; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.menu-toggle {
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface);
}
.menu-toggle span { width: 17px; height: 1.5px; background: var(--text); transition: transform 0.25s ease, opacity 0.2s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: absolute; top: 100%; inset-inline: 0; z-index: 99; height: calc(100svh - 78px); overflow-y: auto;
  background: var(--bg); visibility: hidden; opacity: 0; transform: translateY(-10px); pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.mobile-menu.is-open { visibility: visible; opacity: 1; transform: none; pointer-events: auto; }
.mobile-nav { display: flex; flex-direction: column; padding-block: 1.25rem 2.25rem; }
.mobile-nav a:not(.btn) { padding: 0.9rem 0; border-bottom: 1px solid var(--line); font-size: clamp(1.4rem, 6vw, 1.9rem); font-weight: 700; font-family: var(--font-display); }
.mobile-nav .mobile-whatsapp { margin-top: 1.4rem; width: 100%; }

/* ---------- Candy illustration language (shared by hero, divider, icons) ----------
   Each piece is shaded with a top-left radial gradient (see <defs> in index.html)
   instead of a flat fill, plus a soft ambient shadow, so vector candy reads as
   dimensional and glossy rather than a flat color swatch. Category cards get a
   product-specific hover/focus/tap gesture; the hero and chocolate-spotlight
   reuses of the same symbols stay passive (they already carry their own float/
   parallax motion, so a second competing gesture there would be noise). */
#candy-bonbon .twist, #candy-bonbon .body { fill: url(#gradPink); }
#candy-bonbon .crease { fill: none; stroke: var(--pink-deep); stroke-width: 2.5; opacity: 0.45; stroke-linecap: round; }
#candy-gummy .ring { fill: none; stroke: url(#gradGreen); stroke-width: 17; }
#candy-gummy .ring-core { fill: var(--surface); opacity: 0.22; }
#candy-gummy .jelly-glint circle { fill: #fff; opacity: 0.35; }
#candy-lolly .ring1 { fill: url(#gradOrange); }
#candy-lolly .ring2 { fill: var(--surface); }
#candy-lolly .lolly-glint ellipse { fill: #fff; opacity: 0.3; }
#candy-choc .body { fill: url(#gradChoc); }
#candy-choc .crease { stroke: var(--choc-dark); stroke-width: 3; opacity: 0.5; }
#candy-choc .sheen { fill: #fff; opacity: 0; }
#candy-lentil .body { fill: url(#gradGold); }
#candy-lentil .rim { fill: none; stroke: var(--choc-dark); stroke-width: 2; opacity: 0.18; }
#candy-lentil .sugar-sparkle circle { fill: #fff; opacity: 0.55; }
#candy-truffle .body { fill: url(#gradChocDark); }
#candy-truffle .drizzle { fill: none; stroke: var(--gold); stroke-width: 4.5; stroke-linecap: round; }
#candy-truffle .cocoa-dust circle { fill: var(--gold); opacity: 0.5; }
#candy-giftbox .box-lid, #candy-giftbox .box-body { fill: url(#gradPink); }
#candy-giftbox .ribbon { fill: url(#gradGold); }
#candy-giftbox .box-lid-group { transform-box: fill-box; transform-origin: 16% 100%; transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1); }
[id^="candy-"] .shine { fill: #fff; opacity: 0.5; }
[id^="candy-"] { transform-box: fill-box; }
[id^="candy-"] .twist-left, [id^="candy-"] .twist-right { transform-box: fill-box; transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1); }

/* Product-specific interactions on the category cards - hover for mouse,
   focus-visible for keyboard (cards are tabindex="0" in app.js), and active
   for a touch tap. Never gates information: the name/description below each
   icon is always visible regardless of state - these are a delight layer only. */
.category-icon { filter: url(#candyDropShadow); }

/* Gummy: a light squash-and-settle, like real gummy jelly giving under a touch */
.category-card[data-icon="gummy"]:is(:hover, :focus-visible, :active) .category-icon {
  transform: rotate(-6deg) scale(1.1, 0.92);
}
/* Sugar-coated lentil (dragee): sugar-crystal sparkle catching the light */
.category-card .sugar-sparkle circle { transition: opacity 0.25s ease, transform 0.4s ease; opacity: 0; transform: scale(0.4); transform-box: fill-box; transform-origin: center; }
.category-card:is(:hover, :focus-visible, :active) .sugar-sparkle circle { opacity: 0.8; transform: scale(1); }
.category-card .sugar-sparkle circle:nth-child(2) { transition-delay: 0.06s; }
.category-card .sugar-sparkle circle:nth-child(3) { transition-delay: 0.12s; }
/* Chocolate: a controlled glossy sheen sweeps across the bar, like light on tempered chocolate */
.category-card .sheen { transition: transform 0.55s ease, opacity 0.55s ease; opacity: 0; }
.category-card:is(:hover, :focus-visible, :active) .sheen { opacity: 0.16; transform: translateX(150px); }
/* Lollipop: a gentle glint appears on the swirl */
.category-card .lolly-glint { opacity: 0; transition: opacity 0.3s ease; }
.category-card:is(:hover, :focus-visible, :active) .lolly-glint { opacity: 1; }
/* Bonbon: the wrapper twists ease outward, suggesting an unwrap */
.category-card:is(:hover, :focus-visible, :active) .twist-left { transform: translateX(-3px) rotate(-6deg); }
.category-card:is(:hover, :focus-visible, :active) .twist-right { transform: translateX(3px) rotate(6deg); }
/* Gift box: the lid tilts open, peeking at what's inside */
.category-card:is(:hover, :focus-visible, :active) .box-lid-group { transform: rotate(-10deg) translate(-2px, -3px); }

/* Chocolate Spotlight section: the two featured pieces get their own quieter
   hover treatment (mouse/touch only - purely decorative, no unique info behind it) */
.chocolate-visual .cocoa-dust circle { transition: opacity 0.3s ease; opacity: 0; }
.chocolate-visual:is(:hover, :active) .cocoa-dust circle { opacity: 0.55; }
.chocolate-visual .sheen { transition: transform 0.55s ease, opacity 0.55s ease; opacity: 0; }
.chocolate-visual:is(:hover, :active) .sheen { opacity: 0.14; transform: translateX(150px); }
.choc-hero-icon { transition: transform 0.3s ease; }
.chocolate-visual:is(:hover, :active) .choc-hero-icon { transform: scale(1.03); }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: clamp(7.5rem, 13vw, 10.5rem) 0 clamp(4rem, 8vw, 6.5rem);
  background:
    radial-gradient(circle at 85% 12%, color-mix(in srgb, var(--pink) 10%, transparent) 0, transparent 34%),
    radial-gradient(circle at 10% 90%, color-mix(in srgb, var(--green) 9%, transparent) 0, transparent 32%),
    var(--bg);
  overflow: clip;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1fr); align-items: center; gap: clamp(2.5rem, 6vw, 5rem); }
.hero-copy { position: relative; z-index: 3; }
.hero-desc { max-width: 540px; margin-bottom: 2rem; color: var(--muted); font-size: clamp(1.02rem, 1.4vw, 1.2rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.85rem; }
.hero-note { display: flex; align-items: center; gap: 0.6rem; margin: 1.5rem 0 0; color: var(--muted); font-size: 0.85rem; font-weight: 600; }
.hero-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; }

.hero-stage { position: relative; min-height: 520px; isolation: isolate; }
.stage-glow {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at 50% 45%, color-mix(in srgb, var(--pink) 12%, transparent) 0, transparent 60%);
}
/* The candies sit on a round boutique display plate instead of floating in empty space */
.stage-glow::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: min(86%, 470px); aspect-ratio: 1; border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 35% 30%, color-mix(in srgb, var(--surface) 90%, var(--pink)) 0, color-mix(in srgb, var(--pink) 16%, var(--bg)) 62%, color-mix(in srgb, var(--pink) 26%, var(--bg)) 100%);
  box-shadow: inset 0 0 0 10px color-mix(in srgb, var(--surface) 70%, transparent), inset 0 0 0 11.5px color-mix(in srgb, var(--gold) 55%, transparent), 0 40px 80px -30px color-mix(in srgb, var(--pink-deep) 40%, transparent);
}
.stage-glow::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: min(62%, 340px); aspect-ratio: 1; border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px dashed color-mix(in srgb, var(--gold) 45%, transparent);
}

.candy-field { position: absolute; inset: 0; }
.candy {
  position: absolute; inset-inline-start: var(--x); top: var(--y); width: var(--size); height: var(--size);
  transform: translate(var(--ex), var(--ey)) rotate(var(--er)) scale(0.55);
  opacity: 0;
  transition: transform 0.95s cubic-bezier(0.16, 0.9, 0.16, 1), opacity 0.7s ease;
  transition-delay: var(--delay);
  z-index: 2;
  filter: drop-shadow(0 14px 20px rgba(43, 27, 30, 0.18));
}
.candy.candy-back { z-index: 1; filter: drop-shadow(0 10px 16px rgba(43, 27, 30, 0.14)); }
.candy.candy-sm { z-index: 3; }
.candy-field.is-settled .candy { transform: translate(0, 0) rotate(var(--rot)) scale(1); opacity: 1; }

.candy-body { width: 100%; height: 100%; }
.candy-body svg { width: 100%; height: 100%; display: block; }
.candy-field.is-idle .candy-body {
  animation: candy-float var(--fdur) ease-in-out var(--fdelay) infinite alternate;
}

@keyframes candy-float {
  0% { transform: translate(calc(var(--repel-x, 0) * 1px), calc(var(--repel-y, 0) * 1px)) translateY(0) rotate(0deg); }
  100% { transform: translate(calc(var(--repel-x, 0) * 1px), calc(var(--repel-y, 0) * 1px)) translateY(-10px) rotate(4deg); }
}

/* ---------- Candy spill divider (single strategic section transition) ---------- */
.spill-divider {
  position: relative; height: 64px; display: flex; align-items: flex-start; justify-content: center; gap: 2.4rem;
  overflow: hidden;
}
.spill-piece {
  width: 48px; height: 48px;
  transform: translateY(-120px) rotate(0deg);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.34, 1.2, 0.4, 1), opacity 0.5s ease;
  transition-delay: var(--delay);
}
.spill-piece svg { width: 100%; height: 100%; filter: drop-shadow(0 8px 12px rgba(43, 27, 30, 0.2)); }
.spill-divider.is-settled .spill-piece { transform: translate(var(--dx), 4px) rotate(var(--drot)); opacity: 1; }

/* ---------- Categories ---------- */
.category-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.1rem; }
.category-card {
  position: relative; flex: 0 1 calc((100% - 4 * 1.1rem) / 5);
  padding: 1.8rem 1.25rem 1.6rem; border-radius: 999px 999px var(--radius-md) var(--radius-md);
  background: var(--surface); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; align-items: center; text-align: center; min-height: 250px;
  border: 1px solid var(--line);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}
.category-card::before {
  content: ""; position: absolute; top: 1.1rem; left: 50%; width: 104px; aspect-ratio: 1; border-radius: 50%;
  transform: translateX(-50%); background: color-mix(in srgb, var(--pink) 9%, var(--bg)); z-index: 0;
}
.category-card:is(:hover, :focus-visible, :active) { transform: translateY(-6px); box-shadow: var(--shadow); }
.category-icon { position: relative; z-index: 1; width: 76px; height: 76px; margin: 0.9rem 0 2rem; transition: transform 0.3s ease; }
.category-card:hover .category-icon { transform: rotate(-8deg) scale(1.08); }
.category-card h3 { margin-bottom: 0.45rem; font-size: 1.2rem; }
.category-card p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.55; }

/* ---------- Chocolate spotlight ---------- */
.chocolate { background: var(--choc-dark); color: #F8EEE4; overflow: clip; }
.chocolate-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: clamp(2.5rem, 6vw, 5rem); }
.chocolate h2 { color: #F8EEE4; }
.chocolate p:not(.eyebrow) { color: color-mix(in srgb, #F8EEE4 72%, transparent); max-width: 540px; margin-bottom: 1.75rem; }
.chocolate-visual { position: relative; min-height: 280px; }
.choc-hero-icon { position: absolute; width: 62%; max-width: 260px; top: 8%; inset-inline-start: 6%; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4)); }
.choc-hero-icon-2 { width: 40%; max-width: 170px; top: 42%; inset-inline-start: 46%; }
.flavor-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0 0 2rem; padding: 0; list-style: none; }
.flavor-tags li {
  padding: 0.5rem 0.95rem; border: 1px solid color-mix(in srgb, var(--gold) 55%, transparent); border-radius: 999px;
  font-size: 0.8rem; font-weight: 600; color: var(--gold);
}

/* ---------- Gift boxes banner ---------- */
.gifts { background: var(--surface-soft); }
.gifts-banner {
  display: grid; grid-template-columns: 200px 1fr; align-items: center; gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 5vw, 3.5rem); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-soft);
}
.gift-icon { width: 100%; filter: drop-shadow(0 16px 24px rgba(43, 27, 30, 0.16)); }
.gifts-copy p:not(.eyebrow) { color: var(--muted); max-width: 520px; margin-bottom: 1.75rem; }

/* ---------- Why ---------- */
.why .section-head { margin-inline: auto; text-align: center; }
.why .section-head .eyebrow { justify-content: center; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.why-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding-inline: 0.5rem; }
.why-item .why-mark {
  display: grid; place-items: center; width: 64px; height: 64px; margin-bottom: 1.2rem; padding: 14px;
  border-radius: 50%; background: var(--surface); box-shadow: var(--shadow-soft), inset 0 0 0 1px var(--line);
}
.why-item .why-mark svg { width: 100%; height: 100%; }
.why-item h3 { margin-bottom: 0.5rem; font-size: 1.04rem; }
.why-item p { margin: 0; color: var(--muted); font-size: 0.88rem; }

/* ---------- Process ---------- */
.process { background: var(--bg-soft); }
.process-list { position: relative; margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.process-list::before {
  content: ""; position: absolute; top: 27px; inset-inline: 12.5%; height: 0;
  border-top: 2px dashed color-mix(in srgb, var(--pink) 45%, transparent);
}
.process-item { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-num {
  position: relative; display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 1.2rem;
  border-radius: 50%; background: radial-gradient(circle at 34% 28%, color-mix(in srgb, var(--pink) 55%, white), var(--pink) 58%, var(--pink-deep));
  color: #fff; font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--pink) 35%, transparent);
}
.process-item p { max-width: 260px; }
.process-item h3 { margin-bottom: 0.5rem; font-size: 1.08rem; }
.process-item p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3rem); max-width: 840px; }
.faq-heading { text-align: center; }
.faq-heading .eyebrow { justify-content: center; }
.faq-list { display: grid; gap: 0.75rem; }
.faq-list details { border-radius: 20px; background: var(--surface); box-shadow: 0 1px 0 var(--line), var(--shadow-soft); transition: box-shadow 0.2s ease; }
.faq-list details[open] { box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--pink) 45%, transparent), var(--shadow-soft); }
.faq-list summary { display: grid; grid-template-columns: 1fr 34px; align-items: center; gap: 1rem; min-height: 70px; padding: 0.9rem 1.4rem; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span.q-num { color: var(--pink-deep); font-size: 0.78rem; font-weight: 700; }
.faq-list summary strong { font-size: 1.02rem; font-weight: 650; }
.faq-list summary i { position: relative; width: 34px; height: 34px; border-radius: 50%; background: color-mix(in srgb, var(--pink) 12%, var(--surface)); color: var(--pink-deep); font-style: normal; }
.faq-list summary i::before, .faq-list summary i::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 13px; height: 1.6px;
  background: currentColor; transform: translate(-50%, -50%); transition: transform 0.2s ease;
}
.faq-list summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary i::after { transform: translate(-50%, -50%) rotate(0); }
.faq-list details > p { max-width: 680px; margin: -0.2rem 1.4rem 1.3rem; color: var(--muted); font-size: 0.94rem; line-height: 1.65; }

/* ---------- Contact ---------- */
.contact-card {
  position: relative; text-align: center; max-width: 720px; margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 3rem); border-radius: var(--radius-lg);
  background: var(--pink); color: var(--on-accent); box-shadow: var(--shadow); overflow: clip;
}
.contact-card .eyebrow, .contact-card h2, .contact-card p { position: relative; z-index: 1; }
.contact-card .eyebrow { justify-content: center; color: color-mix(in srgb, var(--on-accent) 85%, transparent); }
.contact-card .eyebrow > span:first-child { background: var(--on-accent); }
.contact-card h2 { color: var(--on-accent); }
.contact-card p:not(.eyebrow) { color: color-mix(in srgb, var(--on-accent) 88%, transparent); max-width: 480px; margin: 0 auto 2rem; }
.contact-icon { position: absolute; width: 220px; opacity: 0.16; top: -40px; inset-inline-end: -30px; transform: rotate(12deg); }
.contact-actions { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.contact-email { margin: 0; font-size: 0.85rem; color: color-mix(in srgb, var(--on-accent) 80%, transparent); }
.contact-email a { text-decoration: underline; text-underline-offset: 3px; color: var(--on-accent); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { padding: clamp(3rem, 6vw, 4.5rem) 0 1.75rem; background: var(--choc-dark); color: #F5ECE3; }
.footer-inner { display: grid; grid-template-columns: minmax(260px, 1.3fr) repeat(2, minmax(140px, 0.6fr)); gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand .brand-mark svg .body, .footer-brand .brand-mark svg .twist { fill: var(--pink); }
.footer-brand p { max-width: 320px; margin: 1.1rem 0 0; color: color-mix(in srgb, #F5ECE3 62%, transparent); font-size: 0.88rem; line-height: 1.6; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 0.65rem; }
.footer-col h3 { margin: 0 0 0.4rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: color-mix(in srgb, #F5ECE3 45%, transparent); }
.footer-col a { color: color-mix(in srgb, #F5ECE3 78%, transparent); font-size: 0.86rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem 1.5rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, #F5ECE3 14%, transparent); }
.footer-bottom p { margin: 0; color: color-mix(in srgb, #F5ECE3 48%, transparent); font-size: 0.72rem; }
.footer-bottom .credit a { color: var(--gold); font-weight: 700; }

/* ---------- Floating WhatsApp ---------- */
.floating-whatsapp {
  position: fixed; inset-inline-end: 1.1rem; bottom: 1.1rem; z-index: 80;
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%;
  background: #1E9E56; color: #fff; box-shadow: 0 14px 34px rgba(15, 90, 50, 0.35);
  font-weight: 800; font-size: 0.95rem; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 18px 42px rgba(15, 90, 50, 0.42); }
.floating-whatsapp .wa-icon { width: 26px; height: 26px; }
#emailLink, .footer-col a[href^="mailto:"] { direction: ltr; unicode-bidi: isolate; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .header-whatsapp { display: none; }
  .category-card { flex-basis: calc((100% - 2 * 1.1rem) / 3); }
  .why-grid { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
  .process-list { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
  .process-list::before { display: none; }
  .chocolate-grid { grid-template-columns: 1fr; }
  .chocolate-visual { min-height: 220px; order: -1; }
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 640px; text-align: center; margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-note { justify-content: center; }
  .hero-stage { width: min(100%, 560px); margin-inline: auto; min-height: 420px; }
  .candy.candy-back { display: none; }
  .faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gifts-banner { grid-template-columns: 1fr; text-align: center; }
  .gift-icon { width: 120px; margin-inline: auto; }
}

@media (max-width: 640px) {
  .wrap { width: min(calc(100% - 2.5rem), var(--container)); }
  .header-inner { height: 66px; }
  .mobile-menu { height: calc(100svh - 66px); }
  html { scroll-padding-top: 74px; }
  [id] { scroll-margin-top: 74px; }
  .hero { padding-top: 7.6rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-stage { min-height: 340px; }
  .candy.candy-sm { display: none; }
  .category-grid { gap: 0.75rem; }
  .category-card { flex-basis: calc((100% - 0.75rem) / 2); min-height: 0; padding: 1.4rem 0.9rem 1.2rem; }
  .category-card::before { width: 84px; top: 0.9rem; }
  .category-icon { width: 60px; height: 60px; margin: 0.6rem 0 1.4rem; }
  .category-card p { font-size: 0.82rem; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .process-list { grid-template-columns: 1fr; }
  .faq-list summary { padding: 0.8rem 1rem; min-height: 64px; }
  .faq-list details > p { margin-inline: 1rem; }
  .footer-bottom { padding-bottom: 4.5rem; }
  .spill-divider { gap: 1.2rem; height: 48px; }
  .spill-piece { width: 36px; height: 36px; }
  .contact-actions .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .brand-text i { display: none; }
  .header-actions { gap: 0.35rem; }
  .lang-switch { padding: 0.4rem 0.2rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .candy { transform: translate(0, 0) rotate(var(--rot)) scale(1) !important; opacity: 1 !important; }
  .spill-piece { transform: translate(var(--dx), 4px) rotate(0deg) !important; opacity: 1 !important; }
}
