@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500;600;700&family=Rubik:wght@300;400;500;600;700;800&display=swap');

:root {
  --yellow: #fdcf1d;
  --yellow-deep: #f2bb00;
  --yellow-soft: #fff2ad;
  --brown: #3a2f28;
  --brown-2: #5a4538;
  --red: #ec4341;
  --red-dark: #c92f2d;
  --cream: #fffaf0;
  --paper: #fff7de;
  --white: #ffffff;
  --muted: #756b64;
  --line: rgba(58,47,40,.14);
  --shadow-sm: 0 12px 34px rgba(58,47,40,.09);
  --shadow-md: 0 22px 58px rgba(58,47,40,.15);
  --shadow-lg: 0 34px 90px rgba(58,47,40,.21);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --container: 1200px;
  --header-h: 82px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); overflow-x: hidden; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--brown);
  background: var(--cream);
  font-family: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--yellow); color: var(--brown); }

.skip-link {
  position: fixed;
  z-index: 10000;
  left: 14px;
  top: 14px;
  transform: translateY(-160%);
  padding: .7rem 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--brown);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container--narrow { width: min(calc(100% - 40px), 860px); margin-inline: auto; }
.section { padding: clamp(72px, 8vw, 112px) 0; position: relative; }
.section--compact { padding: clamp(52px, 6vw, 78px) 0; }
.section--cream { background: var(--paper); }
.section--dark { color: var(--white); background: var(--brown); }
.section--yellow { background: var(--yellow); }
.section--red { color: var(--white); background: var(--red); }

.dot-field::before,
.dot-field::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  opacity: .28;
  background-image: radial-gradient(circle, var(--red) 0 2px, transparent 2.5px);
  background-size: 20px 20px;
  mask-image: radial-gradient(circle at center, black, transparent 70%);
}
.dot-field::before { width: 420px; height: 420px; top: -120px; right: -120px; }
.dot-field::after { width: 340px; height: 340px; bottom: -120px; left: -100px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  padding: .45rem .8rem;
  border: 1px solid rgba(58,47,40,.12);
  border-radius: 999px;
  color: var(--red-dark);
  background: rgba(253,207,29,.18);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(236,67,65,.12); }
.section--dark .eyebrow { color: var(--yellow); border-color: rgba(255,255,255,.15); background: rgba(253,207,29,.08); }

h1, h2, h3, h4 { margin: 0 0 .75rem; line-height: 1.1; letter-spacing: -.035em; }
h1 { font-size: clamp(2.65rem, 6.2vw, 5.8rem); font-weight: 800; }
h2 { font-size: clamp(2.05rem, 4vw, 3.65rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); font-weight: 750; }
h4 { font-size: 1.04rem; font-weight: 750; }
p { margin: 0 0 1rem; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.04rem, 1.6vw, 1.25rem); line-height: 1.7; }
.section--dark .lead { color: rgba(255,255,255,.72); }
.script { font-family: "Dancing Script", cursive; letter-spacing: -.02em; }
.text-red { color: var(--red); }
.text-yellow { color: var(--yellow); }
.text-muted { color: var(--muted); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(30px, 5vw, 56px);
}
.section-head__copy { max-width: 760px; }
.section-head .lead { margin-bottom: 0; }

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible { outline: 3px solid rgba(236,67,65,.35); outline-offset: 3px; }
.btn--primary { color: var(--white); background: var(--red); box-shadow: 0 12px 26px rgba(236,67,65,.24); }
.btn--primary:hover { background: var(--red-dark); box-shadow: 0 16px 34px rgba(236,67,65,.31); }
.btn--dark { color: var(--white); background: var(--brown); box-shadow: 0 12px 26px rgba(58,47,40,.22); }
.btn--dark:hover { background: #241c18; }
.btn--yellow { color: var(--brown); background: var(--yellow); box-shadow: 0 12px 26px rgba(253,207,29,.24); }
.btn--ghost { border-color: rgba(58,47,40,.2); background: rgba(255,255,255,.7); }
.btn--ghost:hover { border-color: var(--brown); background: var(--white); }
.btn--white { color: var(--brown); background: var(--white); }
.btn svg { width: 19px; height: 19px; flex: 0 0 auto; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-wrap {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: var(--red);
  background: rgba(236,67,65,.1);
}
.icon-wrap--yellow { color: var(--brown); background: var(--yellow); }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(255,250,240,.75);
  backdrop-filter: blur(18px);
  transition: height .25s var(--ease), box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled { height: 72px; border-color: var(--line); background: rgba(255,250,240,.94); box-shadow: 0 10px 30px rgba(58,47,40,.08); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 138px; max-height: 62px; object-fit: contain; }
.desktop-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .55rem .72rem;
  border-radius: 999px;
  color: #5c514a;
  font-size: .9rem;
  font-weight: 650;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--brown); background: rgba(253,207,29,.34); }
.header-cta { margin-left: 4px; padding-inline: 1rem; min-height: 44px; font-size: .9rem; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 20px; height: 2px; border-radius: 999px; background: var(--brown); transition: transform .25s ease, opacity .2s ease; }
.menu-toggle::before { transform: translateY(-6px); }
.menu-toggle::after { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(2px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(0) rotate(-45deg); }
.mobile-panel {
  position: fixed;
  z-index: 999;
  inset: var(--header-h) 0 auto 0;
  max-height: calc(100dvh - var(--header-h));
  overflow: auto;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,250,240,.98);
  box-shadow: var(--shadow-md);
  transform: translateY(-125%);
  visibility: hidden;
  transition: transform .35s var(--ease), visibility .35s;
}
.mobile-panel.is-open { transform: translateY(0); visibility: visible; }
.mobile-nav { display: grid; gap: 7px; }
.mobile-nav .nav-link { justify-content: space-between; width: 100%; min-height: 50px; padding: .8rem 1rem; border-radius: 14px; font-size: 1rem; }
.mobile-nav .btn { margin-top: 8px; }

main { padding-top: var(--header-h); }

.hero {
  position: relative;
  min-height: min(820px, calc(100dvh - var(--header-h)));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(54px, 7vw, 92px) 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(255,255,255,.5), transparent 26%),
    radial-gradient(circle at 15% 75%, rgba(236,67,65,.13), transparent 28%),
    linear-gradient(135deg, #ffe46f 0%, var(--yellow) 52%, #f5bd09 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: radial-gradient(circle, var(--red) 0 2px, transparent 2.5px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to left, black, transparent 62%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(28px, 5vw, 72px); }
.hero-copy { max-width: 650px; }
.hero-kicker { display: inline-flex; align-items: center; gap: .65rem; font-weight: 750; margin-bottom: 16px; }
.hero-kicker::before { content: ""; width: 34px; height: 3px; border-radius: 99px; background: var(--red); }
.hero h1 { max-width: 620px; }
.hero h1 .script { display: block; margin-top: .4rem; color: var(--red-dark); font-size: .66em; font-weight: 700; line-height: 1.05; }
.hero .lead { max-width: 600px; margin: 1.4rem 0 1.8rem; color: rgba(58,47,40,.8); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 24px; }
.hero-trust span { display: inline-flex; align-items: center; gap: .45rem; font-size: .9rem; font-weight: 650; }
.hero-trust span::before { content: "✓"; display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; color: var(--white); background: var(--red); font-size: .72rem; font-weight: 900; }
.hero-art { position: relative; min-height: 510px; display: grid; place-items: center; }
.hero-blob { position: absolute; width: min(92%, 590px); aspect-ratio: 1; border-radius: 46% 54% 62% 38% / 50% 42% 58% 50%; background: rgba(255,255,255,.58); box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), var(--shadow-lg); transform: rotate(-5deg); }
.hero-art__image { position: relative; z-index: 2; width: min(105%, 670px); filter: drop-shadow(0 30px 28px rgba(58,47,40,.24)); animation: floaty 5.5s ease-in-out infinite; }
.hero-sticker { position: absolute; z-index: 3; display: grid; width: 118px; height: 118px; place-items: center; border: 5px solid var(--white); border-radius: 50%; color: var(--white); background: var(--red); text-align: center; font-size: .9rem; font-weight: 800; line-height: 1.18; box-shadow: var(--shadow-md); transform: rotate(8deg); }
.hero-sticker--top { top: 28px; right: 5px; }
.hero-sticker--bottom { bottom: 28px; left: 2px; width: 104px; height: 104px; color: var(--brown); background: var(--white); transform: rotate(-8deg); }
@keyframes floaty { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-15px) rotate(1deg); } }

.quick-facts { position: relative; z-index: 2; margin-top: -38px; }
.quick-facts__grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-md); }
.fact { display: flex; align-items: center; gap: 15px; min-height: 116px; padding: 24px; }
.fact + .fact { border-left: 1px solid var(--line); }
.fact strong { display: block; margin-bottom: 2px; line-height: 1.2; }
.fact small { display: block; color: var(--muted); line-height: 1.45; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s ease;
}
.card:hover { transform: translateY(-7px); border-color: rgba(236,67,65,.28); box-shadow: var(--shadow-md); }
.card-body { padding: 26px; }
.card-label { display: inline-flex; align-items: center; gap: .45rem; margin-bottom: 13px; color: var(--red-dark); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.card-label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

.product-card { display: flex; min-height: 100%; flex-direction: column; }
.product-card__visual { position: relative; min-height: 280px; display: grid; place-items: center; overflow: hidden; padding: 24px; background: linear-gradient(145deg, var(--paper), #fff); }
.product-card__visual::before { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: var(--accent, var(--yellow)); opacity: .18; transform: scale(.9); transition: transform .45s var(--ease); }
.product-card:hover .product-card__visual::before { transform: scale(1.12); }
.product-card__visual img { position: relative; z-index: 1; max-height: 245px; width: auto; filter: drop-shadow(0 20px 18px rgba(58,47,40,.18)); transition: transform .45s var(--ease); }
.product-card:hover .product-card__visual img { transform: scale(1.04) rotate(-1deg); }
.product-card__body { display: flex; flex: 1; flex-direction: column; padding: 25px; }
.product-card__meta { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 13px; color: var(--muted); font-size: .83rem; }
.product-card__body p { color: var(--muted); }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 15px; border-top: 1px solid var(--line); }
.product-card__footer a { color: var(--red-dark); font-weight: 750; }
.product-card--wide { grid-column: span 2; }
.product-card--wide .product-card__visual { min-height: 330px; }
.product-card--wide .product-card__visual img { max-height: 290px; }
.badge { display: inline-flex; align-items: center; padding: .35rem .65rem; border-radius: 999px; color: var(--brown); background: var(--yellow-soft); font-size: .75rem; font-weight: 750; line-height: 1; }
.badge--red { color: var(--white); background: var(--red); }
.badge--dark { color: var(--white); background: var(--brown); }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(32px, 7vw, 88px); }
.split--reverse .split-media { order: 2; }
.split-media { position: relative; }
.media-card { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.media-card img { width: 100%; }
.media-card--yellow { padding: clamp(24px, 5vw, 56px); background: var(--yellow); }
.floating-note { position: absolute; right: -18px; bottom: -22px; max-width: 240px; padding: 20px; border-radius: 18px; color: var(--white); background: var(--red); box-shadow: var(--shadow-md); transform: rotate(2deg); }
.floating-note strong { display: block; font-size: 1.35rem; }
.check-list { display: grid; gap: 14px; margin: 25px 0 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 27px 1fr; gap: 11px; align-items: start; }
.check-list li::before { content: "✓"; display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; color: var(--white); background: var(--red); font-size: .75rem; font-weight: 900; }
.check-list--yellow li::before { color: var(--brown); background: var(--yellow); }

.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillar { position: relative; padding: 28px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.pillar__number { display: inline-grid; width: 42px; height: 42px; margin-bottom: 30px; place-items: center; border-radius: 12px; color: var(--white); background: var(--red); font-weight: 800; }
.pillar p { margin-bottom: 0; color: rgba(255,255,255,.7); }

.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.metric { padding: clamp(28px, 4vw, 46px); background: var(--white); }
.metric strong { display: block; margin-bottom: 8px; color: var(--red); font-size: clamp(2.5rem, 5vw, 4.2rem); line-height: 1; letter-spacing: -.06em; }
.metric span { font-weight: 700; }
.metric small { display: block; margin-top: 8px; color: var(--muted); }

.loyalty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tier { position: relative; padding: 30px; overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.tier::before { content: ""; position: absolute; inset: 0 0 auto; height: 7px; background: var(--tier, #b87544); }
.tier__name { margin-bottom: 16px; font-size: 1.5rem; }
.tier__threshold { display: block; margin-bottom: 20px; color: var(--muted); font-size: .9rem; }
.tier ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.tier li { position: relative; padding-left: 22px; }
.tier li::before { content: ""; position: absolute; left: 0; top: .65em; width: 8px; height: 8px; border-radius: 50%; background: var(--tier, #b87544); }
.tier--silver { --tier: #9ca3af; }
.tier--gold { --tier: #e6ad00; }

.news-card__image { aspect-ratio: 16/10; overflow: hidden; background: var(--paper); }
.news-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.news-card:hover .news-card__image img { transform: scale(1.04); }
.news-card__body { padding: 26px; }
.news-card__date { display: flex; align-items: center; gap: 8px; margin-bottom: 13px; color: var(--muted); font-size: .82rem; }
.news-card__body p { color: var(--muted); }
.news-card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 4px; color: var(--red-dark); font-weight: 750; }

.cta-band { position: relative; overflow: hidden; padding: clamp(42px, 6vw, 72px); border-radius: var(--radius-lg); color: var(--white); background: var(--red); box-shadow: var(--shadow-lg); }
.cta-band::after { content: ""; position: absolute; width: 400px; height: 400px; top: -160px; right: -80px; border: 65px solid rgba(255,255,255,.09); border-radius: 50%; }
.cta-band__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.cta-band h2 { max-width: 690px; }
.cta-band p { max-width: 650px; margin-bottom: 0; color: rgba(255,255,255,.78); }

.page-hero { position: relative; overflow: hidden; padding: clamp(70px, 9vw, 126px) 0 clamp(58px, 7vw, 92px); background: var(--yellow); }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(circle, var(--red) 0 2px, transparent 2.5px); background-size: 22px 22px; mask-image: linear-gradient(to left, #000, transparent 68%); }
.page-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr minmax(280px, .65fr); align-items: center; gap: 45px; }
.page-hero__copy { max-width: 760px; }
.page-hero__copy .lead { margin-bottom: 0; color: rgba(58,47,40,.78); }
.page-hero__art { position: relative; min-height: 270px; display: grid; place-items: center; }
.page-hero__art::before { content: ""; position: absolute; width: 270px; height: 270px; border-radius: 42% 58% 48% 52%; background: rgba(255,255,255,.52); transform: rotate(12deg); }
.page-hero__art img { position: relative; z-index: 1; max-height: 300px; width: auto; filter: drop-shadow(0 22px 20px rgba(58,47,40,.2)); }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 18px; font-size: .85rem; font-weight: 650; }
.breadcrumb a { opacity: .66; }
.breadcrumb span { opacity: .45; }

.filter-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 34px; }
.filter-btn { padding: .65rem 1rem; border: 1px solid var(--line); border-radius: 999px; background: var(--white); cursor: pointer; font-weight: 700; transition: .2s ease; }
.filter-btn:hover, .filter-btn.is-active { color: var(--white); border-color: var(--brown); background: var(--brown); }

.product-detail { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 7vw, 90px); align-items: start; }
.product-stage { position: sticky; top: calc(var(--header-h) + 30px); }
.product-stage__main { position: relative; min-height: 530px; display: grid; place-items: center; overflow: hidden; padding: 42px; border-radius: var(--radius-lg); background: linear-gradient(145deg, var(--product-soft, #fff2ad), #fff); box-shadow: var(--shadow-md); }
.product-stage__main::before { content: ""; position: absolute; width: 390px; height: 390px; border-radius: 50%; background: var(--product-accent, var(--yellow)); opacity: .16; }
.product-stage__main img { position: relative; z-index: 1; max-height: 430px; width: auto; filter: drop-shadow(0 30px 26px rgba(58,47,40,.21)); transition: opacity .2s ease, transform .4s var(--ease); }
.product-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 14px; }
.product-thumb { min-height: 86px; display: grid; place-items: center; padding: 10px; border: 2px solid transparent; border-radius: 14px; background: var(--white); cursor: pointer; box-shadow: var(--shadow-sm); }
.product-thumb img { max-height: 68px; width: auto; }
.product-thumb.is-active { border-color: var(--red); }
.product-info { padding-top: 12px; }
.product-info__topline { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 18px; }
.product-info h1 { font-size: clamp(2.35rem, 4.5vw, 4.35rem); }
.product-info__intro { color: var(--muted); font-size: 1.1rem; }
.product-price { display: flex; align-items: end; gap: 13px; margin: 24px 0; padding: 20px 0; border-block: 1px solid var(--line); }
.product-price strong { color: var(--red); font-size: 2rem; line-height: 1; }
.product-price span { color: var(--muted); font-size: .85rem; }
.product-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.product-spec { padding: 17px; border-radius: 15px; background: var(--paper); }
.product-spec strong { display: block; margin-bottom: 2px; font-size: .9rem; }
.product-spec span { color: var(--muted); font-size: .85rem; }
.preparation { margin-top: 32px; padding: 25px; border-radius: var(--radius); background: var(--brown); color: var(--white); }
.preparation ol { display: grid; gap: 12px; margin: 17px 0 0; padding: 0; counter-reset: prep; list-style: none; }
.preparation li { display: grid; grid-template-columns: 31px 1fr; gap: 10px; align-items: start; }
.preparation li::before { counter-increment: prep; content: counter(prep); display: grid; width: 29px; height: 29px; place-items: center; border-radius: 50%; color: var(--brown); background: var(--yellow); font-size: .78rem; font-weight: 800; }

.timeline { position: relative; display: grid; gap: 20px; }
.timeline::before { content: ""; position: absolute; top: 18px; bottom: 18px; left: 23px; width: 2px; background: var(--line); }
.timeline-item { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 20px; }
.timeline-dot { z-index: 1; display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; color: var(--white); background: var(--red); font-weight: 800; box-shadow: 0 0 0 8px var(--cream); }
.timeline-content { padding: 22px 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-sm); }
.timeline-content p { margin-bottom: 0; color: var(--muted); }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.value-card h3 { margin-top: 18px; }
.value-card p { margin-bottom: 0; color: var(--muted); }

.distributor-locator { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; }
.locator-map { position: relative; min-height: 480px; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--yellow-soft), var(--yellow)); }
.locator-map::before { content: ""; position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(58,47,40,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(58,47,40,.2) 1px, transparent 1px); background-size: 42px 42px; transform: rotate(-8deg) scale(1.3); }
.map-island { position: absolute; inset: 12% 23% 8% 27%; border-radius: 43% 57% 53% 47% / 22% 32% 68% 78%; background: var(--brown); transform: rotate(14deg); box-shadow: inset 0 0 0 12px rgba(255,255,255,.08), var(--shadow-md); }
.map-pin { position: absolute; z-index: 2; left: 52%; top: 45%; width: 30px; height: 30px; border: 6px solid var(--white); border-radius: 50% 50% 50% 0; background: var(--red); box-shadow: var(--shadow-sm); transform: rotate(-45deg); }
.map-label { position: absolute; z-index: 3; left: calc(52% + 24px); top: calc(45% - 8px); padding: 11px 15px; border-radius: 12px; background: var(--white); box-shadow: var(--shadow-sm); font-size: .88rem; font-weight: 750; }
.locator-list { display: grid; gap: 14px; }
.location-card { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-sm); }
.location-card__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.location-card p { margin: 10px 0 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(28px, 6vw, 72px); }
.contact-cards { display: grid; gap: 15px; }
.contact-card { display: flex; align-items: flex-start; gap: 15px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-sm); }
.contact-card strong { display: block; }
.contact-card span, .contact-card a { color: var(--muted); }
.contact-form { padding: clamp(24px, 5vw, 42px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(58,47,40,.18); border-radius: 13px; padding: .9rem 1rem; color: var(--brown); background: var(--cream); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); background: var(--white); box-shadow: 0 0 0 4px rgba(236,67,65,.09); outline: none; }
.checkbox { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; color: var(--muted); font-size: .84rem; }
.checkbox input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--red); }
.form-status { display: none; margin-top: 15px; padding: 13px 15px; border-radius: 12px; background: #e9f9ef; color: #1d6b3a; font-size: .9rem; }
.form-status.is-visible { display: block; }

.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 50px; align-items: start; }
.legal-nav { position: sticky; top: calc(var(--header-h) + 28px); padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-sm); }
.legal-nav strong { display: block; margin-bottom: 12px; }
.legal-nav a { display: block; padding: .55rem .65rem; border-radius: 9px; color: var(--muted); font-size: .88rem; }
.legal-nav a:hover { color: var(--brown); background: var(--paper); }
.legal-content { min-width: 0; }
.legal-block { scroll-margin-top: calc(var(--header-h) + 25px); padding-bottom: 34px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.legal-block:last-child { border-bottom: 0; }
.legal-block h2 { font-size: clamp(1.55rem, 2.6vw, 2.25rem); }
.legal-block h3 { margin-top: 24px; font-size: 1.15rem; }
.legal-block p, .legal-block li { color: #5e554f; }
.legal-block ul, .legal-block ol { padding-left: 1.2rem; }
.legal-callout { padding: 20px 22px; border-left: 4px solid var(--yellow); border-radius: 0 14px 14px 0; background: var(--paper); }

.article-list { display: grid; gap: 28px; }
.article-card { display: grid; grid-template-columns: minmax(280px, .8fr) 1.2fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.article-card__image { min-height: 290px; }
.article-card__image img { width: 100%; height: 100%; object-fit: cover; }
.article-card__content { align-self: center; padding: clamp(26px, 5vw, 46px); }
.article-card__content p { color: var(--muted); }
.article-card:nth-child(even) .article-card__image { order: 2; }

.faq { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: var(--white); overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; border: 0; background: transparent; cursor: pointer; text-align: left; font-weight: 750; }
.faq-question::after { content: "+"; flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); font-size: 1.2rem; transition: transform .25s ease; }
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-answer > div { padding: 0 22px 20px; color: var(--muted); }

.site-footer { padding: 70px 0 24px; color: rgba(255,255,255,.78); background: #2b211c; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .75fr .75fr 1fr; gap: 42px; padding-bottom: 45px; }
.footer-brand img { width: 164px; margin-bottom: 18px; filter: drop-shadow(0 4px 7px rgba(0,0,0,.2)); }
.footer-brand p { max-width: 360px; }
.footer-title { margin-bottom: 15px; color: var(--white); font-size: .88rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { width: fit-content; transition: color .2s ease; }
.footer-links a:hover { color: var(--yellow); }
.footer-contact { display: grid; gap: 12px; }
.footer-contact a, .footer-contact span { display: flex; align-items: flex-start; gap: 9px; }
.footer-contact .icon { width: 18px; height: 18px; margin-top: 4px; color: var(--yellow); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 14px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

.toast { position: fixed; z-index: 2000; right: 18px; bottom: 18px; max-width: 380px; display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; border-radius: 16px; color: var(--white); background: var(--brown); box-shadow: var(--shadow-lg); transform: translateY(120px); opacity: 0; pointer-events: none; transition: .35s var(--ease); }
.toast.is-visible { transform: translateY(0); opacity: 1; }

@media (max-width: 1120px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: grid; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .quick-facts__grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .fact:nth-child(4) { border-top: 1px solid var(--line); }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .hero { min-height: auto; }
  .hero-grid, .page-hero__inner, .split, .product-detail, .contact-grid, .distributor-locator { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-art { min-height: 430px; }
  .hero-art__image { width: min(90%, 650px); }
  .page-hero__art { display: none; }
  .split--reverse .split-media { order: initial; }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .product-card--wide { grid-column: span 2; }
  .loyalty-grid { grid-template-columns: 1fr; }
  .tier { padding: 27px; }
  .product-stage { position: static; }
  .product-stage__main { min-height: 470px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 5px; }
  .legal-nav strong { width: 100%; }
  .legal-nav a { display: inline-flex; }
  .article-card { grid-template-columns: 1fr; }
  .article-card:nth-child(even) .article-card__image { order: initial; }
  .article-card__image { min-height: 320px; }
  .cta-band__inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 640px) {
  .container, .container--narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 64px 0; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .hero { padding-top: 48px; }
  .hero h1 { font-size: clamp(2.5rem, 15vw, 4rem); }
  .hero-art { min-height: 340px; }
  .hero-sticker { width: 88px; height: 88px; border-width: 4px; font-size: .72rem; }
  .hero-sticker--top { top: 10px; right: 0; }
  .hero-sticker--bottom { bottom: 5px; left: 0; width: 82px; height: 82px; }
  .quick-facts { margin-top: -18px; }
  .quick-facts__grid { grid-template-columns: 1fr; }
  .fact + .fact, .fact:nth-child(3), .fact:nth-child(4) { border-top: 1px solid var(--line); border-left: 0; }
  .fact { min-height: 95px; padding: 19px 21px; }
  .cards-3, .cards-4, .values-grid, .metrics { grid-template-columns: 1fr; }
  .product-card--wide { grid-column: auto; }
  .pillars { grid-template-columns: 1fr; }
  .floating-note { position: relative; right: auto; bottom: auto; max-width: none; margin: -16px 15px 0; transform: rotate(0); }
  .product-stage__main { min-height: 390px; padding: 24px; }
  .product-stage__main img { max-height: 320px; }
  .product-thumbs { grid-template-columns: repeat(5, minmax(72px, 1fr)); overflow-x: auto; padding-bottom: 5px; }
  .product-thumb { min-width: 72px; }
  .product-specs, .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .locator-map { min-height: 390px; }
  .map-island { inset: 12% 21% 8% 25%; }
  .map-label { left: 40%; top: 56%; }
  .article-card__image { min-height: 230px; }
  .cta-band { padding: 34px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .brand img { width: 118px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .mobile-panel, .site-footer, .btn, .legal-nav { display: none !important; }
  main { padding-top: 0; }
  body { background: #fff; color: #000; }
  .page-hero { padding: 30px 0; background: #fff; }
  .section { padding: 30px 0; }
  .legal-layout { display: block; }
  .legal-block { break-inside: avoid; }
}

/* Product detail colour themes — scoped to produit.html only */
[data-product-detail] {
  --product-bg: #fdcf1d;
  --product-text: #3a2f28;
  --product-muted: #4b4038;
  --product-line: rgba(58,47,40,.24);
  --product-stage-start: #fff4b8;
  --product-stage-end: #fff;
  --product-price-color: #c92f2d;
  --product-badge-bg: #ec4341;
  --product-badge-text: #fff;
  --product-cta-bg: #ec4341;
  --product-cta-hover: #c92f2d;
  --product-cta-text: #fff;
  --product-prep-bg: #3a2f28;
  --product-prep-text: #fff;
  --product-halo-core: rgba(255,255,255,.86);
  --product-halo-mid: rgba(255,255,255,.24);
  --product-halo-glow: rgba(253,207,29,.30);
  --product-halo-ring: rgba(255,255,255,.16);
  --product-decor-color: rgba(58,47,40,.14);
  --product-decor-alt: rgba(255,255,255,.18);
  color: var(--product-text);
  background:
    radial-gradient(circle at 8% 14%, rgba(255,255,255,.28), transparent 27%),
    radial-gradient(circle at 92% 10%, rgba(255,255,255,.18), transparent 24%),
    var(--product-bg);
  transition: color .35s ease, background-color .35s ease;
  isolation: isolate;
}
[data-product-detail]::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  background-image: radial-gradient(circle, currentColor 0 1.5px, transparent 2px);
  background-size: 24px 24px;
  mask-image: linear-gradient(115deg, #000, transparent 42%, transparent 70%, #000);
}
[data-product-detail] .breadcrumb,
[data-product-detail] .breadcrumb a,
[data-product-detail] .breadcrumb strong { color: var(--product-text); }
[data-product-detail] .breadcrumb a { opacity: .76; }
[data-product-detail] .breadcrumb span { opacity: .58; }

[data-product-detail] .product-stage__main {
  min-height: 560px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 38%, var(--product-halo-core) 0 9%, rgba(255,255,255,0) 10%),
    radial-gradient(circle at 50% 38%, var(--product-halo-mid) 0 20%, rgba(255,255,255,0) 38%),
    radial-gradient(circle at 50% 38%, var(--product-halo-glow) 0 42%, rgba(255,255,255,0) 67%),
    radial-gradient(circle at 16% 52%, var(--product-decor-alt) 0 10%, rgba(255,255,255,0) 18%),
    radial-gradient(circle at 84% 44%, var(--product-decor-alt) 0 9%, rgba(255,255,255,0) 17%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
[data-product-detail] .product-stage__main::before {
  width: min(76%, 450px);
  height: auto;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.55) 0 12%, rgba(255,255,255,0) 13%),
    radial-gradient(circle at center, var(--product-halo-ring) 0 33%, rgba(255,255,255,0) 48%),
    radial-gradient(circle at center, rgba(255,255,255,0) 0 54%, var(--product-halo-ring) 55% 56%, rgba(255,255,255,0) 57%),
    radial-gradient(circle at center, var(--product-accent) 0 34%, rgba(255,255,255,0) 66%);
  opacity: .98;
  filter: blur(.6px) saturate(112%);
  animation: productHaloPulse 5.4s ease-in-out infinite;
  transition: background .35s ease, opacity .35s ease;
}
[data-product-detail] .product-stage__main::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 13%;
  width: 58%;
  height: 9%;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(40,27,20,.32) 0%, rgba(40,27,20,.18) 45%, rgba(40,27,20,0) 75%);
  filter: blur(14px);
  transform: translateX(-50%);
  z-index: 0;
}
[data-product-detail] .product-stage__decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
[data-product-detail] .product-decor {
  position: absolute;
  display: block;
  opacity: .8;
  background: var(--product-decor-color);
  filter: drop-shadow(0 10px 22px rgba(255,255,255,.08));
  transform-origin: center;
  animation: decorDrift 8.8s ease-in-out infinite alternate;
}
[data-product-detail] .product-decor--pepper {
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><path fill='black' d='M40 8c1-4 5-7 9-7-2 2-3 5-3 8 0 1 0 2 1 3 5 2 9 7 11 13 4 12-2 27-15 34-14 8-31 4-38-9-6-11-4-26 6-35 5-5 12-8 19-6 2-4 6-6 10-6z'/><path fill='black' d='M26 15c4 1 7 4 8 8-6-2-13 2-16 7-2 4-2 10 0 14-6-3-10-11-8-19 2-8 9-12 16-10z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><path fill='black' d='M40 8c1-4 5-7 9-7-2 2-3 5-3 8 0 1 0 2 1 3 5 2 9 7 11 13 4 12-2 27-15 34-14 8-31 4-38-9-6-11-4-26 6-35 5-5 12-8 19-6 2-4 6-6 10-6z'/><path fill='black' d='M26 15c4 1 7 4 8 8-6-2-13 2-16 7-2 4-2 10 0 14-6-3-10-11-8-19 2-8 9-12 16-10z'/></svg>") center / contain no-repeat;
}
[data-product-detail] .product-decor--leaf {
  background: var(--product-decor-alt);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><path fill='black' d='M55 8C33 10 16 20 10 36c-5 15 4 22 15 20 20-4 34-25 30-48z'/><path fill='black' d='M15 49c11-10 20-17 31-24-7 9-15 18-25 28-4 4-9 5-12 3 2-2 4-4 6-7z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><path fill='black' d='M55 8C33 10 16 20 10 36c-5 15 4 22 15 20 20-4 34-25 30-48z'/><path fill='black' d='M15 49c11-10 20-17 31-24-7 9-15 18-25 28-4 4-9 5-12 3 2-2 4-4 6-7z'/></svg>") center / contain no-repeat;
}
[data-product-detail] .product-decor--spice {
  background: color-mix(in srgb, var(--product-decor-color) 75%, white);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><path fill='black' d='M32 4l6 12 13-4-4 13 12 6-12 6 4 13-13-4-6 12-6-12-13 4 4-13-12-6 12-6-4-13 13 4z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><path fill='black' d='M32 4l6 12 13-4-4 13 12 6-12 6 4 13-13-4-6 12-6-12-13 4 4-13-12-6 12-6-4-13 13 4z'/></svg>") center / contain no-repeat;
}
[data-product-detail] .product-decor--a { top: 10%; left: 4%; width: 76px; height: 76px; transform: rotate(-16deg); animation-delay: -.7s; }
[data-product-detail] .product-decor--b { top: 14%; right: 8%; width: 66px; height: 66px; transform: rotate(18deg); animation-delay: -2.2s; }
[data-product-detail] .product-decor--c { bottom: 20%; left: 8%; width: 42px; height: 42px; animation-delay: -1.5s; }
[data-product-detail] .product-decor--d { bottom: 22%; right: 9%; width: 58px; height: 58px; transform: rotate(32deg); animation-delay: -3.4s; }
[data-product-detail] .product-decor--e { bottom: 8%; left: 26%; width: 50px; height: 50px; transform: rotate(-10deg); animation-delay: -2.8s; }
[data-product-detail] .product-decor--f { top: 28%; right: 18%; width: 38px; height: 38px; animation-delay: -4.6s; }
[data-product-detail] .product-stage__float {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  animation: productFloat 5.6s ease-in-out infinite;
}
[data-product-detail] .product-stage__float::before {
  content: "";
  position: absolute;
  inset: 16% 14% 8%;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,255,255,.34), rgba(255,255,255,0) 68%);
  filter: blur(12px);
  z-index: -1;
}
[data-product-detail] .product-stage__main img {
  position: relative;
  z-index: 2;
  max-height: 490px;
  filter: drop-shadow(0 24px 26px rgba(32,22,17,.18)) drop-shadow(0 38px 40px rgba(32,22,17,.22));
}
@keyframes productHaloPulse {
  0%, 100% { transform: scale(.96); opacity: .92; }
  50% { transform: scale(1.04); opacity: 1; }
}
@keyframes productFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes decorDrift {
  0% { transform: translate3d(0,0,0) rotate(0deg); opacity: .65; }
  50% { transform: translate3d(4px,-6px,0) rotate(8deg); opacity: .88; }
  100% { transform: translate3d(-3px,5px,0) rotate(-7deg); opacity: .72; }
}
[data-product-detail] .product-thumb {
  border-color: rgba(255,255,255,.48);
  background: rgba(255,255,255,.9);
  transition: transform .22s var(--ease), border-color .22s ease, box-shadow .22s ease;
}
[data-product-detail] .product-thumb:hover { transform: translateY(-3px); }
[data-product-detail] .product-thumb.is-active {
  border-color: var(--product-accent);
  box-shadow: 0 12px 30px rgba(36,25,20,.2), 0 0 0 3px rgba(255,255,255,.72);
  transform: translateY(-3px) scale(1.035);
}

[data-product-detail] .eyebrow {
  color: #3a2f28;
  border-color: rgba(58,47,40,.13);
  background: rgba(255,255,255,.84);
  box-shadow: 0 8px 22px rgba(36,25,20,.08);
}
[data-product-detail] .eyebrow::before {
  background: var(--product-accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--product-accent) 18%, transparent);
}
[data-product-detail] .product-info__intro { color: var(--product-muted); }
[data-product-detail] .product-price { border-color: var(--product-line); }
[data-product-detail] .product-price strong { color: var(--product-price-color); }
[data-product-detail] .product-price span { color: var(--product-muted); }
[data-product-detail] .product-spec {
  color: #3a2f28;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.68);
  box-shadow: 0 10px 28px rgba(36,25,20,.08);
}
[data-product-detail] .product-spec span { color: #685d56; }
[data-product-detail] .badge {
  color: #3a2f28;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 7px 18px rgba(36,25,20,.07);
}
[data-product-detail] .badge--red {
  color: var(--product-badge-text);
  background: var(--product-badge-bg);
  border-color: transparent;
}
[data-product-detail] .btn--primary {
  color: var(--product-cta-text);
  background: var(--product-cta-bg);
  box-shadow: 0 14px 30px rgba(36,25,20,.2);
}
[data-product-detail] .btn--primary:hover { background: var(--product-cta-hover); }
[data-product-detail] .btn--ghost {
  color: #3a2f28;
  border-color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.88);
}
[data-product-detail] .btn--ghost:hover {
  border-color: #fff;
  background: #fff;
}
[data-product-detail] .preparation {
  color: var(--product-prep-text);
  background: var(--product-prep-bg);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 20px 46px rgba(36,25,20,.16);
}
[data-product-detail] .preparation li::before {
  color: #3a2f28;
  background: var(--yellow);
}

@media (max-width: 700px) {
  [data-product-detail] .product-stage__main { min-height: 420px; }
  [data-product-detail] .product-stage__float { animation-duration: 5s; }
  [data-product-detail] .product-decor--a,
  [data-product-detail] .product-decor--b,
  [data-product-detail] .product-decor--d { width: 52px; height: 52px; }
  [data-product-detail] .product-decor--c,
  [data-product-detail] .product-decor--e,
  [data-product-detail] .product-decor--f { width: 34px; height: 34px; }
  [data-product-detail] .product-stage__main img { max-height: 350px; }
}
