/* ========================================
   NeutralReviewPoint - Candy Design System
   Sweet / Pastel / Playful Theme
   ======================================== */

/* Candy Color Palette */
:root {
  --candy-white: #fffbf7;
  --cream-base: #fef6f0;
  --sugar-pink: #ff8fab;
  --bubblegum: #ffb3c6;
  --mint-fresh: #98d8aa;
  --mint-light: #c9f4d5;
  --lemon-drop: #ffe66d;
  --lemon-soft: #fff4b8;
  --lavender-sweet: #c8b6ff;
  --grape-candy: #e0aaff;
  --caramel-gold: #f4a261;
  --marshmallow: #ffeef2;
  --text-dark: #4a3f55;
  --text-muted: #7d6b8a;
  --border-candy: rgba(200, 182, 255, 0.35);
  --glow-pink: rgba(255, 143, 171, 0.2);
  --glow-mint: rgba(152, 216, 170, 0.2);
}

/* Reset & Foundation */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito', 'Quicksand', 'Segoe UI', system-ui, sans-serif;
  background: linear-gradient(165deg, var(--candy-white) 0%, var(--cream-base) 40%, var(--marshmallow) 100%);
  background-attachment: fixed;
  color: var(--text-dark);
  line-height: 1.75;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Candy Sprinkles Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(4px 4px at 50px 50px, rgba(255, 143, 171, 0.3), transparent),
    radial-gradient(3px 3px at 150px 100px, rgba(152, 216, 170, 0.35), transparent),
    radial-gradient(4px 4px at 250px 180px, rgba(255, 230, 109, 0.3), transparent),
    radial-gradient(3px 3px at 100px 250px, rgba(200, 182, 255, 0.35), transparent),
    radial-gradient(4px 4px at 300px 80px, rgba(255, 179, 198, 0.25), transparent),
    radial-gradient(3px 3px at 200px 300px, rgba(201, 244, 213, 0.3), transparent),
    radial-gradient(4px 4px at 80px 180px, rgba(224, 170, 255, 0.25), transparent);
  background-size: 400px 400px;
  animation: sprinkleFloat 80s linear infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

@keyframes sprinkleFloat {
  from { transform: translateY(0) rotate(0deg); }
  to { transform: translateY(-100px) rotate(5deg); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Baloo 2', 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

a {
  color: var(--sugar-pink);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--lavender-sweet);
}

/* Layout Container */
.bonbon-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Accent Utilities */
.sweet-highlight {
  background: linear-gradient(135deg, var(--sugar-pink), var(--lavender-sweet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mint-accent {
  color: var(--mint-fresh);
}

/* ========================================
   Navigation - Candy Bar Header
   ======================================== */
.candy-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.97) 0%, rgba(254, 246, 240, 0.95) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--border-candy);
  box-shadow: 0 4px 20px rgba(200, 182, 255, 0.15);
}

.candy-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.875rem 0;
}

.sweet-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sweet-brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(145deg, var(--sugar-pink), var(--lavender-sweet));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(255, 143, 171, 0.35);
}

.sweet-brand-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.sweet-brand-name {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.candy-nav {
  display: none;
  justify-content: center;
  gap: 0.15rem;
}

.candy-nav-item {
  padding: 0.5rem 0.9rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 20px;
  transition: all 0.25s ease;
}

.candy-nav-item:hover,
.candy-nav-item:focus {
  color: var(--text-dark);
  background: var(--glow-pink);
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.age-pill {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--caramel-gold);
  padding: 0.3rem 0.7rem;
  border: 2px solid var(--caramel-gold);
  border-radius: 20px;
  display: none;
}

.menu-toggle {
  background: linear-gradient(135deg, var(--mint-fresh), var(--mint-light));
  border: none;
  border-radius: 10px;
  padding: 0.5rem 0.7rem;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(152, 216, 170, 0.3);
}

.menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(152, 216, 170, 0.4);
}

.mobile-candy-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 0;
  border-top: 1px solid var(--border-candy);
}

.mobile-candy-nav.open {
  display: flex;
}

.mobile-candy-nav .candy-nav-item {
  padding: 0.7rem 0;
  border-radius: 0;
}

/* ========================================
   Hero - Sweet Welcome Section
   ======================================== */
.sweet-hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
  background: 
    radial-gradient(ellipse 70% 50% at 20% 20%, rgba(255, 143, 171, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 45% at 80% 70%, rgba(152, 216, 170, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 90%, rgba(200, 182, 255, 0.08) 0%, transparent 50%);
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero-title {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.hero-title-accent {
  display: block;
  background: linear-gradient(100deg, var(--sugar-pink), var(--lavender-sweet), var(--mint-fresh));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 1.75rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.candy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.candy-btn-primary {
  background: linear-gradient(135deg, var(--sugar-pink), var(--bubblegum));
  color: white;
  box-shadow: 0 4px 18px rgba(255, 143, 171, 0.4);
}

.candy-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 143, 171, 0.5);
  color: white;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
}

.hero-badges li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-badges li::before {
  content: '🍬';
  font-size: 0.85rem;
}

.floating-age-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.15), rgba(255, 230, 109, 0.1));
  border: 2px solid var(--caramel-gold);
  border-radius: 25px;
}

.floating-age-num {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--caramel-gold);
}

.floating-age-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ========================================
   Platform Cards - Candy Boxes
   ======================================== */
.candy-platforms {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 238, 242, 0.4) 100%);
}

.section-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  margin-bottom: 0.6rem;
}

.section-desc {
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
}

.editorial-notice {
  background: linear-gradient(135deg, rgba(152, 216, 170, 0.15), rgba(201, 244, 213, 0.1));
  border: 1px solid rgba(152, 216, 170, 0.3);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.editorial-notice strong {
  color: var(--text-dark);
}

.candy-box-grid {
  display: grid;
  gap: 1.5rem;
}

.candy-box {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(254, 246, 240, 0.9));
  border: 2px solid var(--border-candy);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.candy-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sugar-pink), var(--lavender-sweet), var(--mint-fresh));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.candy-box:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 143, 171, 0.4);
  box-shadow: 0 15px 40px rgba(200, 182, 255, 0.2);
}

.candy-box:hover::before {
  opacity: 1;
}

.candy-box-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.candy-box-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.candy-box-visual {
  width: 120px;
  height: 48px;
  background: linear-gradient(135deg, rgba(200, 182, 255, 0.2), rgba(255, 179, 198, 0.15));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.candy-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.candy-stars {
  display: flex;
  gap: 2px;
  color: var(--lemon-drop);
}

.candy-score {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.candy-box-info {
  flex: 1;
}

.candy-box-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.candy-box-features {
  list-style: none;
}

.candy-box-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.candy-box-features li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--mint-fresh);
  margin-top: 3px;
}

.candy-box-cta {
  display: flex;
  justify-content: center;
}

.sweet-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  background: linear-gradient(135deg, var(--lavender-sweet), var(--grape-candy));
  color: white;
  font-weight: 700;
  border-radius: 22px;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.sweet-link:hover {
  background: linear-gradient(135deg, var(--sugar-pink), var(--bubblegum));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 182, 255, 0.4);
  color: white;
}

/* ========================================
   Info Sections - Pastel Blocks
   ======================================== */
.pastel-section {
  padding: 3.5rem 0;
  position: relative;
}

.pastel-section.tinted {
  background: linear-gradient(180deg, rgba(201, 244, 213, 0.15) 0%, rgba(255, 244, 184, 0.1) 100%);
}

.pastel-content {
  max-width: 850px;
  margin: 0 auto;
}

.pastel-content.centered {
  text-align: center;
}

.info-cards {
  display: grid;
  gap: 0.9rem;
  list-style: none;
}

.info-cards li {
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  border-left: 4px solid var(--sugar-pink);
  border-radius: 0 12px 12px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about-text {
  margin-top: 1.25rem;
}

.about-text p {
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ========================================
   Responsible Gaming - Safety Zone
   ======================================== */
.safety-zone {
  padding: 3.5rem 0;
  background: 
    radial-gradient(ellipse 60% 45% at 50% 100%, rgba(244, 162, 97, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255, 238, 242, 0.5) 0%, rgba(255, 244, 184, 0.3) 100%);
}

.safety-wrapper {
  max-width: 950px;
  margin: 0 auto;
}

.safety-header {
  text-align: center;
  margin-bottom: 2rem;
}

.safety-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.2), rgba(255, 230, 109, 0.15));
  border: 3px solid var(--caramel-gold);
  border-radius: 50%;
  margin-bottom: 0.9rem;
}

.safety-icon span {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--caramel-gold);
}

.safety-title {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.safety-subtitle {
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
}

.safety-content {
  display: grid;
  gap: 1.75rem;
}

.safety-rules {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.safety-rules li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.safety-rules li::before {
  content: '🍭';
  font-size: 1rem;
}

.safety-links {
  text-align: center;
}

.safety-links p {
  margin-bottom: 0.6rem;
  color: var(--text-muted);
}

.official-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  background: transparent;
  border: 2px solid var(--caramel-gold);
  border-radius: 25px;
  color: var(--caramel-gold);
  font-weight: 700;
  margin-top: 0.75rem;
  transition: all 0.3s ease;
}

.official-link:hover {
  background: rgba(244, 162, 97, 0.1);
  color: var(--caramel-gold);
}

.safety-disclaimer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-candy);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ========================================
   Teaser Block
   ======================================== */
.teaser-strip {
  padding: 2.5rem 0;
  background: rgba(200, 182, 255, 0.1);
}

.teaser-content {
  max-width: 850px;
}

.teaser-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.teaser-content p {
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

/* ========================================
   Footer - Sweet Bottom
   ======================================== */
.sweet-footer {
  padding: 2.5rem 0 1.75rem;
  background: linear-gradient(180deg, rgba(255, 238, 242, 0.6) 0%, rgba(254, 246, 240, 0.9) 100%);
  border-top: 2px solid var(--border-candy);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0.9rem;
}

.footer-age-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-age-mark .age-tag {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.2rem 0.5rem;
  border: 2px solid var(--caramel-gold);
  border-radius: 6px;
  color: var(--caramel-gold);
}

.footer-age-mark span:last-child {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-links-col h3 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 0.4rem;
}

.footer-menu a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.25s ease;
}

.footer-menu a:hover {
  color: var(--sugar-pink);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-candy);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.9;
}

/* ========================================
   Cookie Consent - Sweet Banner
   ======================================== */
.sweet-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.98), rgba(254, 246, 240, 0.99));
  border-top: 2px solid var(--border-candy);
  box-shadow: 0 -8px 30px rgba(200, 182, 255, 0.2);
  backdrop-filter: blur(10px);
}

.sweet-consent.hidden {
  display: none;
}

.consent-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.consent-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.consent-text a {
  color: var(--sugar-pink);
  text-decoration: underline;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.consent-btn {
  padding: 0.55rem 1.1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid var(--border-candy);
  background: transparent;
  color: var(--text-dark);
}

.consent-btn:hover {
  background: var(--glow-pink);
  border-color: var(--sugar-pink);
}

.consent-btn.accept {
  background: linear-gradient(135deg, var(--sugar-pink), var(--bubblegum));
  border-color: transparent;
  color: white;
}

.consent-btn.accept:hover {
  box-shadow: 0 4px 15px rgba(255, 143, 171, 0.4);
}

.consent-btn.prefs {
  background: transparent;
  border: none;
  color: var(--sugar-pink);
  padding: 0.55rem 0.4rem;
}

.consent-prefs {
  display: none;
  padding: 0.9rem;
  border-top: 1px solid var(--border-candy);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  margin-top: 0.4rem;
}

.consent-prefs.show {
  display: block;
}

.consent-pref-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
}

.consent-pref-item:not(:last-child) {
  border-bottom: 1px solid var(--border-candy);
}

.consent-pref-info strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
}

.consent-pref-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.candy-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  background: rgba(200, 182, 255, 0.3);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.candy-toggle[data-active="true"] {
  background: var(--mint-fresh);
}

.candy-toggle .toggle-dot {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  transition: left 0.25s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.candy-toggle[data-active="true"] .toggle-dot {
  left: 23px;
}

.candy-toggle[data-locked] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========================================
   Page-Specific Styles
   ======================================== */
.page-banner {
  padding: 2.5rem 0;
  background: radial-gradient(ellipse 55% 40% at 50% 0%, rgba(200, 182, 255, 0.15) 0%, transparent 60%);
}

.page-body {
  padding: 2.5rem 0;
}

.page-inner {
  max-width: 850px;
  margin: 0 auto;
}

.prose-content {
  color: var(--text-muted);
  line-height: 1.9;
}

.prose-content h2 {
  font-size: 1.4rem;
  margin: 1.75rem 0 0.9rem;
  color: var(--text-dark);
}

.prose-content p {
  margin-bottom: 0.9rem;
}

.prose-content ul, .prose-content ol {
  margin: 0.9rem 0 0.9rem 1.4rem;
}

.prose-content li {
  margin-bottom: 0.45rem;
}

.prose-content a {
  color: var(--sugar-pink);
  text-decoration: underline;
}

/* Review Page Specific */
.review-banner {
  padding: 2.5rem 0;
  background: radial-gradient(ellipse 60% 45% at 50% 0%, rgba(255, 143, 171, 0.1) 0%, transparent 60%);
}

.review-body {
  padding: 2.5rem 0;
}

.review-inner {
  max-width: 850px;
  margin: 0 auto;
}

.review-heading {
  font-size: 1.3rem;
  margin: 2rem 0 0.9rem;
  padding-bottom: 0.45rem;
  border-bottom: 2px solid var(--border-candy);
}

.review-cta-area {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-candy);
}

.site-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  background: linear-gradient(135deg, var(--lavender-sweet), var(--grape-candy));
  color: white;
  font-weight: 700;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.site-btn:hover {
  background: linear-gradient(135deg, var(--sugar-pink), var(--bubblegum));
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(200, 182, 255, 0.4);
  color: white;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (min-width: 768px) {
  .candy-nav {
    display: flex;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .age-pill {
    display: block;
  }
  
  .consent-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .candy-box-content {
    flex-direction: row;
    align-items: center;
  }
  
  .candy-box-header {
    width: 22%;
    flex-shrink: 0;
  }
  
  .candy-box-info {
    padding: 0 1.25rem;
    width: 53%;
  }
  
  .candy-box-cta {
    width: 25%;
    flex-shrink: 0;
  }
  
  .sweet-link {
    width: auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .safety-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  
  .candy-box-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .candy-box-grid .candy-box:first-child {
    grid-column: 1 / -1;
    max-width: 680px;
    justify-self: center;
  }
}
