/* ============================================================
   BONBONZAUBER – Design System
   Fonts: Baloo 2 (headings), Comic Neue (body)
   Palette: Candy Rainbow – Pink, Purple, Yellow, Blue, Green
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Comic+Neue:wght@400;700&display=swap');

/* === TOKENS === */
:root {
  --pink:        #FF1F9C;
  --pink-dark:   #CC0072;
  --pink-light:  #FFB3DE;
  --pink-bg:     #FFF0F8;
  --yellow:      #FFD600;
  --yellow-dark: #E6BE00;
  --blue:        #00B4FF;
  --orange:      #FF6F00;
  --purple:      #8A00E6;
  --green:       #00C86F;
  --bg:          #FFF5F9;
  --white:       #FFFFFF;
  --text:        #1A0030;
  --text-mid:    #5A3070;
  --text-light:  #9B7BB0;
  --shadow-sm:   0 4px 12px rgba(255,31,156,.15);
  --shadow-md:   0 8px 32px rgba(255,31,156,.25);
  --shadow-lg:   0 20px 60px rgba(255,31,156,.35);
  --radius:      24px;
  --radius-sm:   12px;
  --radius-pill: 999px;
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --t:           200ms cubic-bezier(.4,0,.2,1);
  --fh:          'Baloo 2', cursive;
  --fb:          'Comic Neue', 'Comic Sans MS', cursive;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--fb); background: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 9999;
  background: linear-gradient(135deg,#1A0030,#330066);
  color: #fff; padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  box-shadow: 0 -4px 32px rgba(0,0,0,.4);
  transition: transform .4s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-text { font-size: .9rem; line-height: 1.5; max-width: 70%; }
.cookie-text a { color: var(--yellow); text-decoration: underline; }
.cookie-buttons { display: flex; gap: .75rem; flex-shrink: 0; }
.btn-cookie-accept {
  background: linear-gradient(135deg,var(--pink),var(--purple));
  color: #fff; padding: .6rem 1.5rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: .9rem; transition: var(--t);
}
.btn-cookie-accept:hover { transform: scale(1.05); box-shadow: 0 4px 16px rgba(255,31,156,.5); }
.btn-cookie-reject {
  background: transparent; color: #aaa; padding: .6rem 1.5rem;
  border-radius: var(--radius-pill); font-size: .9rem; border: 1px solid #555; transition: var(--t);
}
.btn-cookie-reject:hover { border-color: #888; color: #fff; }

/* === NAVBAR === */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,245,249,.95); backdrop-filter: blur(16px);
  border-bottom: 3px solid var(--pink-light);
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .75rem;
}
.nav-logo img {
  height: 52px; width: auto;
}
.nav-logo-text {
  font-family: var(--fh); font-size: 1.6rem; font-weight: 800;
  background: linear-gradient(135deg,var(--pink),var(--purple),var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-links { display: flex; gap: .5rem; align-items: center; }
.nav-links a {
  display: inline-block; padding: .5rem 1rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 1rem; color: var(--text-mid); transition: var(--t);
}
.nav-links a:hover { background: var(--pink); color: #fff; transform: translateY(-2px); }
.nav-order {
  background: linear-gradient(135deg,var(--yellow),var(--orange)) !important;
  color: var(--text) !important;
}
.nav-order:hover { background: linear-gradient(135deg,var(--orange),var(--pink)) !important; color: #fff !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 1001; }
.nav-toggle span { display: block; width: 28px; height: 3px; background: var(--pink); border-radius: 3px; transition: var(--t); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* === HERO === */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding: 4rem 2rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,#FF9FD4 0%,#FFD6A5 20%,#FDFFB6 40%,#CAFFBF 60%,#9BF6FF 80%,#BDB2FF 100%);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.candy-blob {
  position: absolute; border-radius: 50%; opacity: .65;
  animation: blob linear infinite;
}
.candy-blob:nth-child(1) { width:140px;height:140px;background:radial-gradient(circle,#FF9FD4,#FF1F9C);top:8%;left:4%;animation-duration:7s; }
.candy-blob:nth-child(2) { width:90px;height:90px;background:radial-gradient(circle,#FFD600,#FF6F00);top:18%;right:7%;animation-duration:9s;animation-delay:-2s; }
.candy-blob:nth-child(3) { width:70px;height:70px;background:radial-gradient(circle,#9BF6FF,#00B4FF);bottom:28%;left:3%;animation-duration:6s;animation-delay:-4s; }
.candy-blob:nth-child(4) { width:110px;height:110px;background:radial-gradient(circle,#CAFFBF,#00C86F);bottom:12%;right:5%;animation-duration:8s;animation-delay:-1s; }
.candy-blob:nth-child(5) { width:55px;height:55px;background:radial-gradient(circle,#BDB2FF,#8A00E6);top:58%;left:14%;animation-duration:5s;animation-delay:-3s; }
.candy-blob:nth-child(6) { width:95px;height:95px;background:radial-gradient(circle,#FFD6A5,#FF6F00);top:42%;right:11%;animation-duration:7.5s;animation-delay:-5s; }
@keyframes blob {
  0%   { transform: translateY(0) rotate(0deg); }
  33%  { transform: translateY(-22px) rotate(120deg); }
  66%  { transform: translateY(12px) rotate(240deg); }
  100% { transform: translateY(0) rotate(360deg); }
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero-logo-img { height: 120px; width: auto; margin: 0 auto 1.5rem; filter: drop-shadow(0 8px 24px rgba(255,31,156,.4)); animation: fadeUp .7s ease both; }
.hero-badge {
  display: inline-block; background: rgba(255,255,255,.9); color: var(--pink);
  padding: .4rem 1.2rem; border-radius: var(--radius-pill); font-weight: 700;
  font-size: 1rem; margin-bottom: 1.25rem; box-shadow: var(--shadow-sm);
  animation: fadeDown .6s ease both;
}
.hero-title {
  font-family: var(--fh); font-size: clamp(3rem,10vw,7rem); font-weight: 800;
  line-height: 1.05; color: #fff;
  text-shadow: 4px 4px 0 var(--pink), 8px 8px 0 rgba(0,0,0,.12);
  margin-bottom: 1rem; animation: fadeUp .7s ease .1s both;
}
.hero-subtitle {
  font-size: clamp(1.1rem,3vw,1.7rem); color: var(--text); font-weight: 700;
  margin-bottom: 2.5rem; animation: fadeUp .7s ease .2s both;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: .75rem;
  background: linear-gradient(135deg,var(--pink),var(--purple));
  color: #fff; padding: 1.2rem 3rem; border-radius: var(--radius-pill);
  font-family: var(--fh); font-size: 1.4rem; font-weight: 800;
  box-shadow: 0 8px 32px rgba(255,31,156,.5); transition: var(--t);
  animation: fadeUp .7s ease .3s both; text-transform: uppercase; letter-spacing: .05em;
}
.hero-cta:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 16px 48px rgba(255,31,156,.7); }
.hero-cta:active { transform: scale(1.01); }

/* === FEATURES BAR === */
.features-bar {
  background: linear-gradient(135deg,var(--pink),var(--purple));
  padding: 2rem; display: flex; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.feature-item { display: flex; align-items: center; gap: .75rem; color: #fff; font-weight: 700; font-size: 1.05rem; }
.feature-icon {
  width: 48px; height: 48px; background: rgba(255,255,255,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* === SECTION BASE === */
.section { padding: 6rem 2rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
  display: inline-block; font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--pink); margin-bottom: .75rem;
}
.section-title {
  font-family: var(--fh); font-size: clamp(2rem,5vw,3.5rem); font-weight: 800;
  color: var(--text); line-height: 1.1;
}
.section-title span {
  background: linear-gradient(135deg,var(--pink),var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* === PRODUCTS === */
#produkte { background: #fff; }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 2.5rem; max-width: 1200px; margin: 0 auto;
}
.product-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease-spring), box-shadow .3s ease;
  position: relative;
}
.product-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: var(--shadow-lg); }
.product-card[data-color="pink"]  { --cc: var(--pink); }
.product-card[data-color="blue"]  { --cc: var(--blue); }
.product-card[data-color="green"] { --cc: var(--green); }
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg,var(--cc),var(--purple));
}
.product-image-wrap { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-image-wrap img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: linear-gradient(135deg,var(--cc),var(--purple));
  color: #fff; padding: .4rem 1rem; border-radius: var(--radius-pill);
  font-size: .85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.product-body { padding: 1.75rem; }
.product-name { font-family: var(--fh); font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: .5rem; }
.product-desc { font-size: .95rem; color: var(--text-mid); margin-bottom: 1.5rem; line-height: 1.65; }
.product-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; gap: 1rem; flex-wrap: wrap; }
.product-price {
  font-family: var(--fh); font-size: 2.6rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg,var(--cc),var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.product-per { font-size: .85rem; color: var(--text-light); margin-top: .2rem; }
.product-qty {
  display: flex; align-items: center; gap: .4rem;
  border: 2px solid var(--cc); border-radius: var(--radius-pill); padding: .15rem .35rem;
}
.qty-btn {
  width: 36px; height: 36px; border-radius: 50%; background: var(--cc); color: #fff;
  font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
  transition: var(--t); line-height: 1;
}
.qty-btn:hover { background: var(--purple); transform: scale(1.1); }
.qty-input {
  width: 44px; text-align: center; border: none; font-family: var(--fh);
  font-size: 1.1rem; font-weight: 700; color: var(--text); background: transparent;
}
.qty-input:focus { outline: none; }
.btn-buy {
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  width: 100%; padding: 1.05rem; border-radius: var(--radius-pill);
  font-family: var(--fh); font-size: 1.2rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg,var(--cc),var(--purple));
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
  transition: transform .2s var(--ease-spring), box-shadow .2s ease;
  text-transform: uppercase; letter-spacing: .05em;
}
.btn-buy:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 32px rgba(0,0,0,.28); }
.btn-buy:active { transform: scale(1.01); }
.pp-icon { width: 24px; height: 24px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }

/* === RITTER SPORT GALERIE === */
.rs-main-wrap { position: relative; }
.rs-variant-label {
  position: absolute; bottom: 1rem; left: 1rem;
  background: rgba(0,0,0,.55); color: #fff;
  padding: .3rem .8rem; border-radius: var(--radius-pill);
  font-size: .85rem; font-weight: 700; pointer-events: none;
  backdrop-filter: blur(6px);
}
.rs-thumbs {
  display: flex; gap: .5rem; padding: .75rem 1rem;
  background: #f0f8ff; overflow-x: auto; scrollbar-width: none;
  border-bottom: 2px solid #ddeeff;
}
.rs-thumbs::-webkit-scrollbar { display: none; }
.rs-thumb {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  padding: .4rem .5rem; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer;
  transition: var(--t); flex-shrink: 0; background: #fff;
  font-size: .72rem; font-weight: 700; color: var(--text-mid);
}
.rs-thumb img { width: 52px; height: 52px; object-fit: contain; border-radius: 6px; }
.rs-thumb:hover { border-color: var(--blue); background: #e8f4fd; }
.rs-thumb-active { border-color: var(--blue) !important; background: #e8f4fd !important; color: var(--blue) !important; }

/* === RS HIGHLIGHTS === */
.rs-highlights {
  list-style: none; margin-bottom: 1rem; display: flex; flex-direction: column; gap: .35rem;
}
.rs-highlights li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .875rem; color: var(--text-mid); line-height: 1.5;
}
.rs-highlights li svg { flex-shrink: 0; margin-top: .15rem; color: var(--blue); }

/* === ALLERGEN BADGE === */
.allergen-badge {
  display: flex; align-items: flex-start; gap: .5rem;
  background: #FFF8E1; border: 1px solid #FFD54F;
  border-radius: var(--radius-sm); padding: .5rem .75rem;
  font-size: .82rem; color: #5D4037; margin-bottom: 1rem; line-height: 1.5;
}
.allergen-badge svg { flex-shrink: 0; margin-top: .1rem; color: #F57F17; }

/* === NUTRITION DETAILS === */
.nutrition-details {
  margin-bottom: 1.25rem;
  border: 2px solid var(--cc, var(--green));
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.nutrition-details summary {
  cursor: pointer; padding: .6rem 1rem; font-weight: 700; font-size: .9rem;
  color: var(--cc, var(--green)); background: rgba(0,200,111,.06);
  list-style: none; display: flex; align-items: center; gap: .5rem;
  transition: var(--t);
}
.nutrition-details summary::-webkit-details-marker { display: none; }
.nutrition-details summary::before { content: '▶'; font-size: .7rem; transition: var(--t); }
.nutrition-details[open] summary::before { content: '▼'; }
.nutrition-details summary:hover { background: rgba(0,200,111,.12); }
.nutrition-table { padding: .75rem 1rem 1rem; font-size: .85rem; }
.nutrition-table table { width: 100%; border-collapse: collapse; margin: .5rem 0; }
.nutrition-table th { text-align: left; padding: .3rem .5rem; background: var(--bg); font-weight: 700; font-size: .8rem; color: var(--text-mid); }
.nutrition-table td { padding: .3rem .5rem; border-bottom: 1px solid #f0e8f8; color: var(--text-mid); }
.nutrition-table td:last-child { text-align: right; font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }
.nutrition-table tr:last-child td { border-bottom: none; }
.nutrition-ingredients { color: var(--text-mid); margin-bottom: .5rem; line-height: 1.5; font-size: .82rem; }
.nutrition-manufacturer { color: var(--text-light); margin-top: .5rem; font-size: .78rem; }

/* === CONTACT === */
#kontakt { background: linear-gradient(135deg,#FFF0F8 0%,#F0F8FF 50%,#FFFBF0 100%); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  max-width: 1100px; margin: 0 auto; align-items: start;
}
.contact-info h3 { font-family: var(--fh); font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: 1rem; }
.contact-info p { color: var(--text-mid); margin-bottom: 1.25rem; font-size: 1.05rem; line-height: 1.7; }
.contact-detail { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; font-weight: 700; color: var(--text); }
.contact-detail-icon { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-form { background: #fff; border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 700; color: var(--text); margin-bottom: .45rem; font-size: .95rem; }
.form-input {
  width: 100%; padding: .875rem 1rem; border: 2px solid #E8D5F0;
  border-radius: var(--radius-sm); font-family: var(--fb); font-size: 1rem;
  color: var(--text); background: var(--bg); transition: var(--t);
}
.form-input:focus { outline: none; border-color: var(--pink); background: #fff; box-shadow: 0 0 0 4px rgba(255,31,156,.1); }
textarea.form-input { resize: vertical; min-height: 140px; }
.form-note { font-size: .82rem; color: var(--text-light); margin-top: -.5rem; margin-bottom: 1.25rem; line-height: 1.5; }
.form-note a { color: var(--pink); text-decoration: underline; }
.btn-submit {
  width: 100%; padding: 1.05rem; border-radius: var(--radius-pill);
  font-family: var(--fh); font-size: 1.2rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg,var(--pink),var(--purple));
  box-shadow: 0 4px 20px rgba(255,31,156,.4);
  transition: transform .2s var(--ease-spring), box-shadow .2s ease;
  text-transform: uppercase; letter-spacing: .05em;
}
.btn-submit:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 32px rgba(255,31,156,.6); }

/* === FOOTER === */
footer { background: linear-gradient(135deg,#1A0030,#330066); color: #fff; padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer-logo-wrap { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo-wrap img { height: 52px; width: auto; }
.footer-logo-text { font-family: var(--fh); font-size: 1.8rem; font-weight: 800; background: linear-gradient(135deg,var(--pink),var(--yellow)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-desc { color: rgba(255,255,255,.7); line-height: 1.7; font-size: .95rem; margin-bottom: 1rem; }
.footer-heading { font-family: var(--fh); font-size: 1.1rem; font-weight: 700; color: var(--yellow); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .95rem; transition: var(--t); display: inline-block; }
.footer-links a:hover { color: var(--pink); transform: translateX(4px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-copyright { color: rgba(255,255,255,.5); font-size: .875rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.5); font-size: .875rem; transition: var(--t); }
.footer-legal a:hover { color: var(--pink); }

/* === LEGAL PAGES === */
.page-hero {
  background: linear-gradient(135deg,var(--pink) 0%,var(--purple) 100%);
  padding: 5rem 2rem 4rem; text-align: center; color: #fff;
}
.page-hero h1 { font-family: var(--fh); font-size: clamp(2.5rem,6vw,4rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.page-hero p { font-size: 1.15rem; opacity: .85; max-width: 600px; margin: 0 auto; }
.legal-content { max-width: 860px; margin: 0 auto; padding: 4rem 2rem; }
.legal-content h2 { font-family: var(--fh); font-size: 1.7rem; font-weight: 800; color: var(--pink); margin: 2.5rem 0 .75rem; }
.legal-content h3 { font-family: var(--fh); font-size: 1.25rem; font-weight: 700; color: var(--text); margin: 1.75rem 0 .5rem; }
.legal-content p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; font-size: 1rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { color: var(--text-mid); line-height: 1.8; margin-bottom: .35rem; list-style: disc; font-size: 1rem; }
.legal-content a { color: var(--pink); text-decoration: underline; }
.legal-card { background: #fff; border-radius: var(--radius); padding: 2rem 2.5rem; box-shadow: var(--shadow-sm); margin-bottom: 1.5rem; border-left: 6px solid var(--pink); }
.legal-card h2 { margin-top: 0; }

/* === BACK TO TOP === */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg,var(--pink),var(--purple));
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(255,31,156,.5);
  transition: all .3s var(--ease-spring);
  opacity: 0; transform: translateY(20px); pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { transform: translateY(-4px) scale(1.12); box-shadow: 0 8px 32px rgba(255,31,156,.7); }

/* === ANIMATIONS === */
@keyframes fadeDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeUp   { from { opacity:0; transform:translateY(30px); }  to { opacity:1; transform:translateY(0); } }

@supports (animation-timeline: scroll()) {
  .scroll-reveal {
    animation: fadeUp linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 25%;
  }
}
@supports not (animation-timeline: scroll()) {
  .scroll-reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
  .scroll-reveal.is-visible { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 768px) {
  .navbar { padding: .875rem 1.25rem; }
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 280px;
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 5.5rem 1.5rem 2rem; box-shadow: -4px 0 32px rgba(0,0,0,.15);
    transition: right .3s ease; z-index: 1000;
  }
  .nav-links.open { right: 0; }
  .nav-links a { padding: .75rem 1rem; border-radius: var(--radius-sm); font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .features-bar { gap: 1.5rem; padding: 1.5rem; }
  .feature-item { font-size: .9rem; }
  .products-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .75rem; }
  .cookie-banner { flex-direction: column; padding: 1.25rem 1.5rem; }
  .cookie-text { max-width: 100%; }
  .cookie-buttons { justify-content: center; }
  .section { padding: 4rem 1.25rem; }
  .legal-content { padding: 3rem 1.25rem; }
}
@media (max-width: 480px) {
  .product-price { font-size: 2.1rem; }
  .hero-logo-img { height: 80px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg, .candy-blob { animation: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
@media print {
  .navbar, .cookie-banner, .back-to-top, .hero-bg, .candy-blob, .features-bar { display: none; }
  body { background: #fff; color: #000; }
}
