/* ============================================
   xocomama — Every Smile Matters
   ============================================ */

:root {
  /* Brand palette from packaging */
  --cream: #FFF8F0;
  --cream-dark: #F5EDE3;
  --lavender: #E8D5F0;
  --lavender-deep: #C9A8E0;
  --purple: #7B4B9A;
  --purple-dark: #5C3578;
  --peach: #F5C99A;
  --peach-deep: #E8A87C;
  --orange: #F0A060;
  --yellow: #F5E6A3;
  --yellow-deep: #E8D080;
  --blue: #B8D4E8;
  --blue-deep: #8BB8D4;
  --brown: #4A2C2A;
  --brown-light: #6B4540;
  --chocolate: #3D2314;
  --red-heart: #E8505B;
  --white: #FFFFFF;
  --text: #3D2B2B;
  --text-muted: #7A6560;

  /* Typography */
  --font-display: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 7rem);
  --container: min(1140px, 92vw);

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(74, 44, 42, 0.08);
  --shadow-md: 0 8px 30px rgba(74, 44, 42, 0.12);
  --shadow-lg: 0 20px 60px rgba(74, 44, 42, 0.15);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: var(--container); margin-inline: auto; }

/* Background decorations */
.bg-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-decor .heart,
.bg-decor .flower {
  position: absolute;
  opacity: 0.06;
  animation: float 8s ease-in-out infinite;
}
.bg-decor .heart { color: var(--red-heart); font-size: 2rem; }
.bg-decor .flower { color: var(--purple); font-size: 1.5rem; }
.bg-decor .h1 { top: 15%; left: 8%; animation-delay: 0s; }
.bg-decor .h2 { top: 45%; right: 5%; animation-delay: 2s; font-size: 1.5rem; }
.bg-decor .h3 { bottom: 20%; left: 15%; animation-delay: 4s; }
.bg-decor .f1 { top: 30%; right: 12%; animation-delay: 1s; }
.bg-decor .f2 { bottom: 35%; right: 20%; animation-delay: 3s; }
.bg-decor .f3 { top: 60%; left: 5%; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled {
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo { display: flex; flex-direction: column; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--chocolate);
  letter-spacing: -0.02em;
}
.logo-phonetic {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown-light);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:hover { color: var(--purple); }
.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--chocolate);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--cream);
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: opacity 1s ease;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-video.active {
  opacity: 1;
}
.hero.video-active .hero-bg-img {
  opacity: 0;
}
.hero.video-active .hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(255, 248, 240, 0.82) 0%,
    rgba(232, 213, 240, 0.72) 40%,
    rgba(245, 201, 154, 0.65) 100%
  );
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 248, 240, 0.95) 0%,
    rgba(232, 213, 240, 0.85) 40%,
    rgba(245, 201, 154, 0.75) 100%
  );
  transition: background var(--transition);
}
.hero-sound-toggle {
  position: absolute;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform var(--transition), background var(--transition);
}
.hero-sound-toggle:hover {
  transform: scale(1.08);
  background: var(--white);
}
.hero-sound-toggle .sound-on { display: none; }
.hero-sound-toggle.unmuted .sound-off { display: none; }
.hero-sound-toggle.unmuted .sound-on { display: inline; }
.hero:not(.video-active) .hero-sound-toggle {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 7rem 0 4rem;
  max-width: 1000px;
}

/* Hero trust bar — below hero copy */
.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  animation: fadeInDown 0.8s ease 0.4s both;
}
.trust-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(123, 75, 154, 0.12);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
}
.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--lavender-deep);
}
.trust-card-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
}
.trust-card-img--round {
  object-fit: cover;
  background: var(--cream);
}
.trust-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.trust-card-text strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--chocolate);
  line-height: 1.2;
}
.trust-card-text span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
}

.hero-badge {
  display: inline-block;
  background: var(--white);
  color: var(--purple);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease;
}
.hero-title {
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease 0.1s both;
}
.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 700;
  color: var(--chocolate);
  line-height: 1;
  letter-spacing: -0.03em;
}
.tagline {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 500;
  color: var(--purple);
  margin-top: 0.5rem;
}
.tagline::before,
.tagline::after {
  content: '♥';
  color: var(--red-heart);
  font-size: 0.7em;
  margin: 0 0.3em;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  animation: fadeInDown 0.8s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
  animation: fadeInDown 0.8s ease 0.3s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  animation: bounce 2s ease infinite;
  z-index: 1;
}
.scroll-arrow { font-size: 1.2rem; margin-top: 0.25rem; }

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(123, 75, 154, 0.35);
}
.btn-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 75, 154, 0.45);
}
.btn-secondary {
  background: var(--white);
  color: var(--purple);
  border-color: var(--lavender-deep);
}
.btn-secondary:hover {
  background: var(--lavender);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }

/* Loved banner */
.loved-banner {
  background: linear-gradient(90deg, var(--purple), var(--lavender-deep));
  padding: 1.2rem 0;
  text-align: center;
}
.loved-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--white);
}
.heart-accent { color: var(--red-heart); margin: 0 0.3em; }

/* Sections */
.section { padding: var(--section-pad) 0; position: relative; z-index: 1; }
.section-header { text-align: center; max-width: 650px; margin: 0 auto 3.5rem; }
.section-label {
  display: inline-block;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--purple);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--chocolate);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.highlight {
  background: linear-gradient(120deg, var(--lavender-deep), var(--peach));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Fun Pack */
.fun-pack { background: var(--white); }
.fun-pack-showcase {
  position: relative;
  margin-bottom: 3rem;
  margin-inline: auto;
  max-width: min(100%, 520px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--chocolate);
}
.fun-pack-showcase img {
  width: 100%;
  height: auto;
  display: block;
}

/* Fun pack video */
.fun-pack-showcase {
  aspect-ratio: var(--video-ar);
  width: 100%;
}
.fun-pack-showcase .video-native {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: var(--chocolate);
}
.fun-pack-video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem 1.5rem 1.25rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
}
.fun-pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.fun-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 0 0 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}
.fun-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--lavender);
}
.fun-card-photo {
  height: 200px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.fun-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fun-card:hover .fun-card-photo img { transform: scale(1.06); }
.fun-card h3,
.fun-card p { padding-inline: 1.5rem; }
.fun-card-num {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--lavender);
  opacity: 0.5;
}
.fun-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--chocolate);
  margin-bottom: 0.75rem;
}
.fun-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.fun-pack-cta {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--lavender), var(--peach));
  border-radius: var(--radius);
}
.collect-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--chocolate);
  margin-bottom: 0.5rem;
}
.price-tag {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--purple-dark);
}
.price-tag small {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown-light);
}

/* Characters */
.characters { background: var(--cream); }
.characters-showcase {
  margin-bottom: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.characters-showcase img {
  width: 100%;
  height: auto;
  display: block;
}
.characters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.character-card {
  text-align: center;
  padding: 1.25rem 1rem 1.5rem;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}
.character-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.character-pack {
  max-width: 160px;
  height: 200px;
  margin: 0 auto 1rem;
  padding: 1rem 0.75rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.55);
}
.character-card:hover .character-pack { transform: scale(1.05); }
.character-pack img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.character-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--chocolate);
  margin-bottom: 0.15rem;
}
.character-animal {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.character-color {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.65;
}
.character-card.gigi { background: linear-gradient(180deg, #FFF0D0, #FFE0A0); }
.character-card.koko { background: linear-gradient(180deg, #F5E0F0, #E8C8E8); }
.character-card.tigo { background: linear-gradient(180deg, #FFE8D0, #FFD0A0); }
.character-card.ellie { background: linear-gradient(180deg, #D8ECFA, #B8D4E8); }

.collectibles-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.collectibles-banner img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.collectibles-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(transparent, rgba(61, 35, 20, 0.85));
  color: var(--white);
  text-align: center;
}
.collectibles-caption h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.collectibles-caption p {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
}

/* Moments */
.moments { background: var(--white); padding: var(--section-pad) 0; }
.moments-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
}
.moment-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.moment-card:hover { transform: scale(1.02); }
.moment-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.moment-card.large img { min-height: 100%; }
.moment-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.25rem 1.25rem;
  background: linear-gradient(transparent, rgba(61, 35, 20, 0.75));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

/* Quality */
.quality { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); }
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.quality-content .section-title { text-align: left; }
.quality-content .section-label { text-align: left; }
.story-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--purple);
  border-left: 4px solid var(--lavender-deep);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  line-height: 1.6;
  font-style: italic;
}
.quality-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.quality-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.quality-badges img,
.badge-round {
  width: 100px;
  height: 100px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.quality-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.quality-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Ingredients */
.ingredients { background: var(--white); }
.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.ingredients-card,
.nutrition-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 2px solid var(--cream-dark);
}
.ingredients-card h3,
.nutrition-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--chocolate);
  margin-bottom: 1.25rem;
}
.ingredients-list {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.allergen-box {
  background: #FFF0F0;
  border: 1px solid #FFD0D0;
  border-radius: var(--radius-sm);
  padding: 1rem;
  font-size: 0.9rem;
  color: #8B4040;
  margin-bottom: 1rem;
}
.storage-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.nutrition-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.95rem;
}
.nutrition-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--brown);
}
.net-qty {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-top: 0.5rem;
  border-top: 2px solid var(--lavender);
}

/* Smiles in Motion */
.motion-section {
  background: linear-gradient(165deg, var(--white) 0%, var(--cream) 45%, var(--lavender) 100%);
  position: relative;
  overflow: hidden;
}
.motion-section::before {
  content: '✿';
  position: absolute;
  top: 8%;
  right: 6%;
  font-size: 4rem;
  color: var(--purple);
  opacity: 0.06;
  pointer-events: none;
}
.motion-section::after {
  content: '♥';
  position: absolute;
  bottom: 12%;
  left: 5%;
  font-size: 3rem;
  color: var(--red-heart);
  opacity: 0.06;
  pointer-events: none;
}
.motion-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 820px;
  margin-inline: auto;
}
.motion-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  width: 100%;
}
.motion-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.motion-card--feature {
  width: 100%;
  max-width: 400px;
}
.motion-card--feature .motion-media {
  aspect-ratio: 9 / 14;
  box-shadow: var(--shadow-lg);
}
.motion-card--feature .motion-info h3 {
  font-size: 1.5rem;
}
.motion-media {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: var(--chocolate);
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(255, 255, 255, 0.85);
  transition: transform var(--transition), box-shadow var(--transition);
}
.motion-card:hover .motion-media {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.motion-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.motion-info {
  text-align: center;
  padding: 0 0.5rem;
}
.motion-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.35rem;
}
.motion-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--chocolate);
  margin-bottom: 0.25rem;
}
.motion-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* From the Farms */
.farm-section {
  background: linear-gradient(180deg, var(--cream) 0%, #f0ebe3 50%, var(--cream-dark) 100%);
  position: relative;
}
.farm-featured-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.farm-featured-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: var(--white);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(74, 44, 42, 0.14),
    0 0 0 1px rgba(123, 75, 154, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.farm-featured-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 32px 72px rgba(74, 44, 42, 0.18),
    0 0 0 1px rgba(123, 75, 154, 0.12);
}
.farm-featured-badge {
  position: absolute;
  top: 1rem;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(123, 75, 154, 0.14);
  white-space: nowrap;
}
.farm-featured-media {
  aspect-ratio: 9 / 16;
  max-height: min(70vh, 620px);
  margin: 0 auto;
  background: linear-gradient(165deg, #2f1a10 0%, var(--chocolate) 45%, #1f1209 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem 0.75rem;
}
.farm-featured-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.farm-featured-caption {
  padding: 1.75rem 1.5rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  border-top: 1px solid var(--cream-dark);
}
.farm-featured-caption h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--chocolate);
  margin-bottom: 0.5rem;
}
.farm-featured-caption p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.farm-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
.farm-story .farm-badge {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1.25rem;
}
.farm-story h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--chocolate);
  margin-bottom: 1rem;
}
.farm-story p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.farm-points {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.farm-points li {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brown);
  background: rgba(255, 255, 255, 0.7);
  padding: 0.65rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(123, 75, 154, 0.1);
}
.farm-infographic-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border: 3px solid rgba(255, 255, 255, 0.9);
}
.farm-infographic {
  width: 100%;
  height: auto;
  display: block;
}
.farm-infographic-caption {
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
}
.farm-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  max-width: 960px;
  margin-inline: auto;
}
.farm-video-card {
  text-align: center;
}
.farm-video-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--chocolate);
  border: 3px solid var(--white);
  margin-bottom: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.farm-video-card:hover .farm-video-media {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.farm-video-media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
}
.farm-video-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--chocolate);
  margin-bottom: 0.25rem;
}
.farm-video-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Gallery */
.gallery { background: var(--cream); }

.video-showcase {
  margin-bottom: 3rem;
}
.video-showcase .video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--chocolate);
}
.video-showcase .video-card.featured {
  margin-bottom: 1.5rem;
}
.video-showcase video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.video-showcase .video-card.featured video {
  aspect-ratio: 21/9;
  max-height: 480px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.video-grid .video-card video {
  aspect-ratio: 9/14;
  max-height: 320px;
}
.video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem 0.85rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.gallery-item.wide img { height: 320px; }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(61, 35, 20, 0.8));
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

/* CTA */
.cta-section { padding: var(--section-pad) 0; }
.cta-card {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 50%, var(--chocolate) 100%);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-hearts {
  font-size: 1.5rem;
  color: var(--red-heart);
  margin-bottom: 1rem;
  opacity: 0.8;
}
.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}
.cta-card p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 2rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-card .btn-primary {
  background: var(--white);
  color: var(--purple);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.cta-card .btn-primary:hover {
  background: var(--cream);
}
.cta-card .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.cta-card .btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* Footer */
.site-footer {
  background: var(--chocolate);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-family: var(--font-display);
  color: var(--lavender);
  margin-bottom: 0.25rem;
}
.footer-sub { font-size: 0.85rem; opacity: 0.6; }
.footer-links h4,
.footer-contact h4,
.footer-legal h4 {
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.footer-links a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--lavender); }
.footer-contact p,
.footer-legal p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.footer-contact a:hover { color: var(--lavender); }
.fssai {
  margin-top: 0.75rem;
  font-size: 0.8rem !important;
  opacity: 0.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
}

/* Scroll animations */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .fun-pack-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .characters-grid { grid-template-columns: repeat(2, 1fr); }
  .moments-grid { grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .quality-visual { order: -1; }
  .motion-row { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  .motion-card--feature { max-width: 400px; }
  .farm-grid { grid-template-columns: 1fr; gap: 2rem; }
  .farm-videos { grid-template-columns: 1fr; max-width: 560px; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .hero-trust-bar {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 2.5rem;
  }
  .trust-card { padding: 0.75rem 1rem; }
  .trust-card-img { width: 52px; height: 52px; }
  .hero-content { padding-top: 6rem; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .characters-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .hero-sound-toggle { bottom: 1.5rem; right: 1rem; }
}

@media (max-width: 480px) {
  .characters-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .quality-badges img { width: 80px; height: 80px; }
}
