/* ============================================================
   FUNHOODS — style.css
   Childhood Full of Fun | funhoods.com
   ============================================================ */

/* ── RESET & ROOT ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red:     #E8001C;
  --red2:    #C0001A;
  --blue:    #1A3FBF;
  --blue2:   #0D2690;
  --yellow:  #FFB800;
  --yellow2: #FFD84D;
  --bg:      #FFF8F0;
  --white:   #ffffff;
  --text:    #1a1a2e;
  --muted:   #666677;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  overflow-x: hidden;
  color: var(--text);
}

.ff { font-family: 'Fredoka One', cursive; }

img { display: block; }

/* ============================================================
   LOADER
   ============================================================ */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, var(--red) 0%, var(--blue) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  transition: opacity .6s ease, visibility .6s ease;
}
#loader.out { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 3.5rem; color: #fff; letter-spacing: 2px;
}
.loader-logo span { color: var(--yellow); }

.loader-toys { display: flex; gap: 1.2rem; font-size: 2.2rem; }
.loader-toy { animation: loaderBounce .6s ease-in-out infinite alternate; }
.loader-toy:nth-child(2) { animation-delay: .15s; }
.loader-toy:nth-child(3) { animation-delay: .30s; }
.loader-toy:nth-child(4) { animation-delay: .45s; }

.loader-bar {
  width: 220px; height: 5px;
  background: rgba(255,255,255,.25); border-radius: 10px; overflow: hidden;
}
.loader-fill {
  height: 100%; background: var(--yellow);
  border-radius: 10px; width: 0; transition: width 1s ease;
}

@keyframes loaderBounce {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-18px); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
  transition: box-shadow .3s;
}
.nav-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: .6rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { height: 54px; width: auto; object-fit: contain; }
.nav-logo-fallback {
  font-family: 'Fredoka One', cursive;
  font-size: 1.7rem; color: var(--red); display: none;
}
.nav-logo-fallback span { color: var(--blue); }

/* Links */
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-weight: 800; font-size: .95rem; color: #333;
  text-decoration: none; position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2.5px; background: var(--red); border-radius: 2px;
  transform: scaleX(0); transition: transform .25s;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { transform: scaleX(1); }

/* WhatsApp CTA in nav */
.nav-wa {
  display: inline-flex; align-items: center; gap: .45rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; padding: .5rem 1.25rem;
  border-radius: 999px; font-weight: 800; font-size: .88rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
}
.nav-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.55);
}
.nav-wa svg { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; z-index: 10; padding: 4px;
}
.hamburger span {
  width: 26px; height: 3px; background: var(--red);
  border-radius: 2px; transition: .3s; display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  display: none; flex-direction: column; gap: .25rem;
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; padding: 1.25rem 1.5rem 1.5rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  border-top: 2px solid #f0f0f0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-weight: 800; color: #333; text-decoration: none;
  font-size: 1.05rem; padding: .65rem 0;
  border-bottom: 1px solid #f0f0f0; transition: color .2s;
}
.nav-mobile a:last-child { border-bottom: none; color: #25D366; }
.nav-mobile a:hover { color: var(--red); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
#hero {
  min-height: 100svh;
  position: relative; overflow: hidden;
  margin-top: 68px;
}

.hero-slides {
  width: 100%; position: relative;
  min-height: calc(100svh - 68px);
}

.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  min-height: calc(100svh - 68px);
}
.hero-slide.active { opacity: 1; pointer-events: auto; }

.hs1 { background: linear-gradient(135deg, #E8001C 0%, #C0001A 45%, #8B0011 100%); }
.hs2 { background: linear-gradient(135deg, #1A3FBF 0%, #0D2690 50%, #051880 100%); }
.hs3 { background: linear-gradient(135deg, #7B2D8B 0%, #E8001C 55%, #FFB800 100%); }
.hs4 { background: linear-gradient(135deg, #1a6e2a 0%, #0e4a1a 50%, #1A3FBF 100%); }

/* Bubbles inside each slide */
.slide-bg-art { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.bubble {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.08);
  animation: bubbleRise linear infinite;
}
@keyframes bubbleRise {
  0%   { transform: translateY(110vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .6; }
  100% { transform: translateY(-200px) scale(1); opacity: 0; }
}

/* Slide layout */
.slide-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 2rem;
  max-width: 1100px; width: 100%; padding: 3rem 2rem;
}

.slide-text { color: #fff; }

.slide-badge {
  display: inline-block; background: var(--yellow); color: #333;
  font-weight: 900; font-size: .82rem; letter-spacing: .5px;
  padding: .35rem 1rem; border-radius: 999px; margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(255,184,0,.4);
}

.slide-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1; margin-bottom: 1rem;
}
.slide-title .hl { color: var(--yellow2); }

.slide-sub {
  font-size: 1.05rem; font-weight: 600;
  opacity: .9; line-height: 1.75;
  margin-bottom: 1.75rem; max-width: 440px;
}

.slide-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.sbtn-w {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: #333; padding: .8rem 1.6rem;
  border-radius: 999px; font-weight: 900; font-size: .95rem;
  text-decoration: none; box-shadow: 0 6px 20px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
}
.sbtn-w:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.28); }

.sbtn-t {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.15); color: #fff;
  border: 2px solid rgba(255,255,255,.6); padding: .8rem 1.6rem;
  border-radius: 999px; font-weight: 800; font-size: .95rem;
  text-decoration: none; transition: background .2s;
}
.sbtn-t:hover { background: rgba(255,255,255,.28); }

/* Slide image */
.slide-img-wrap {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.slide-img-wrap img {
  max-width: 100%; max-height: 420px; width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.4));
  animation: heroFloat 3.5s ease-in-out infinite;
  border-radius: 1.5rem;
  position: relative; z-index: 2;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-20px) rotate(1deg); }
}
.ring1 {
  position: absolute; width: 110%; height: 110%; border-radius: 50%;
  border: 3px dashed rgba(255,255,255,.2);
  animation: spinRing 20s linear infinite;
}
.ring2 {
  position: absolute; width: 130%; height: 130%; border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.1);
  animation: spinRing 35s linear infinite reverse;
}
@keyframes spinRing { to { transform: rotate(360deg); } }

/* Slider controls */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,.4); color: #fff;
  font-size: 1.6rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  user-select: none;
}
.slider-arrow:hover { background: rgba(255,255,255,.4); transform: translateY(-50%) scale(1.1); }
.sa-prev { left: 1.25rem; }
.sa-next { right: 1.25rem; }

.slider-dots {
  position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .6rem; z-index: 10;
}
.sdot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer; transition: .35s;
}
.sdot.active { background: #fff; width: 28px; border-radius: 5px; }

.slider-progress {
  position: absolute; bottom: 0; left: 0; height: 3px;
  background: var(--yellow); z-index: 10;
  transition: width .12s linear;
}

/* Floating star particles */
.star-particle {
  position: absolute; pointer-events: none;
  color: rgba(255,255,255,.55); font-size: 1rem;
  animation: starDrift linear infinite; z-index: 1;
}
@keyframes starDrift {
  0%   { transform: translateY(0) rotate(0deg); opacity: .8; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

/* Bottom wave on hero */
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 5; line-height: 0; }

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.marquee-strip {
  background: var(--yellow); overflow: hidden;
  border-top: 3px solid var(--red); border-bottom: 3px solid var(--red);
  padding: .65rem 0;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marqueeMove 22s linear infinite;
}
.marquee-track span {
  display: inline-block; padding: 0 2rem;
  font-family: 'Fredoka One', cursive; font-size: 1.1rem; color: #333;
}
.marquee-track span::after { content: "★"; margin-left: 2rem; color: var(--red); }
@keyframes marqueeMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.wave-divider { line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

.section-label {
  display: inline-block;
  font-weight: 800; font-size: .78rem; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--red);
  padding: .3rem .9rem; border-radius: 999px;
  background: rgba(232,0,28,.08); border: 1px solid rgba(232,0,28,.2);
  margin-bottom: .75rem;
}
.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--text); line-height: 1.15;
}
.section-title .r { color: var(--red); }
.section-title .b { color: var(--blue); }

/* ============================================================
   ABOUT
   ============================================================ */
#about { padding: 6rem 1.5rem; background: #fff; position: relative; overflow: hidden; }

.about-deco {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  pointer-events: none;
}

.about-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

/* image mosaic */
.about-mosaic { position: relative; }
.mosaic-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr; gap: .8rem;
  border-radius: 2rem; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.mosaic-grid img {
  width: 100%; height: 185px; object-fit: cover;
  transition: transform .45s ease;
}
.mosaic-grid img:hover { transform: scale(1.06); }
.mosaic-grid img:nth-child(1) { border-radius: 1.5rem 0 0 0; }
.mosaic-grid img:nth-child(2) { border-radius: 0 1.5rem 0 0; }
.mosaic-grid img:nth-child(3) { border-radius: 0 0 0 1.5rem; }
.mosaic-grid img:nth-child(4) { border-radius: 0 0 1.5rem 0; }

.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 112px; height: 112px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red2));
  color: #fff; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: 'Fredoka One', cursive;
  box-shadow: 0 8px 24px rgba(232,0,28,.4);
  animation: badgePulse 2.2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.07); }
}
.about-badge .big { font-size: 1.8rem; line-height: 1; }
.about-badge .sm  { font-size: .62rem; text-align: center; opacity: .9; line-height: 1.4; margin-top: .1rem; }

/* Stats */
.stats-row { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.stat-box {
  flex: 1; min-width: 90px; padding: 1rem;
  border-radius: 1.25rem; text-align: center; color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.18); transition: transform .3s; cursor: default;
}
.stat-box:hover { transform: translateY(-5px); }
.stat-box.s1 { background: linear-gradient(135deg, var(--red), var(--red2)); box-shadow: 0 6px 20px rgba(232,0,28,.28); }
.stat-box.s2 { background: linear-gradient(135deg, var(--blue), var(--blue2)); box-shadow: 0 6px 20px rgba(26,63,191,.28); }
.stat-box.s3 { background: linear-gradient(135deg, #e67e00, var(--yellow)); box-shadow: 0 6px 20px rgba(255,184,0,.28); }
.stat-box .num { font-family: 'Fredoka One', cursive; font-size: 2rem; }
.stat-box .lbl { font-size: .74rem; font-weight: 700; opacity: .9; margin-top: .1rem; }

/* About body text */
.about-body { margin-top: 1.25rem; color: var(--muted); font-size: 1rem; line-height: 1.85; font-weight: 600; }
.about-body strong { color: var(--text); }
.about-body em   { color: var(--red); font-style: italic; }

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
#toys { padding: 6rem 1.5rem; background: var(--bg); }

.toys-header { text-align: center; margin-bottom: 3rem; }
.toys-header p { color: var(--muted); font-weight: 600; margin-top: .65rem; }

.products-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}

.prod-card {
  background: #fff; border-radius: 1.75rem; overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,.07);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s;
  cursor: pointer; position: relative;
  display: flex; flex-direction: column;
}
.prod-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 56px rgba(0,0,0,.15);
}

.prod-img {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.prod-img img {
  width: 85%; height: 85%; object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.15));
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.prod-card:hover .prod-img img { transform: scale(1.12) rotate(-3deg); }

/* Background tones per card */
.bg-green  { background: linear-gradient(135deg, #e6f4e6, #f0ffe0); }
.bg-orange { background: linear-gradient(135deg, #fff5e0, #ffe8b0); }
.bg-red    { background: linear-gradient(135deg, #fff0e8, #ffe0d0); }
.bg-pink   { background: linear-gradient(135deg, #ffe5e5, #ffd0d0); }
.bg-blue   { background: linear-gradient(135deg, #e5efff, #d0dfff); }
.bg-purple { background: linear-gradient(135deg, #f0e5ff, #dfc8ff); }
.bg-yellow { background: linear-gradient(135deg, #fff5cc, #ffe680); }

.prod-info { padding: 1rem 1.1rem 1.25rem; display: flex; flex-direction: column; flex: 1; }

.prod-tag {
  display: inline-block; font-size: .7rem; font-weight: 800;
  letter-spacing: .5px; text-transform: uppercase;
  padding: .2rem .65rem; border-radius: 999px; margin-bottom: .5rem;
}
.tag-red    { background: rgba(232,0,28,.1);   color: var(--red); }
.tag-blue   { background: rgba(26,63,191,.1);  color: var(--blue); }
.tag-yellow { background: rgba(255,184,0,.15); color: #b07d00; }
.tag-green  { background: rgba(26,122,26,.1);  color: #1a7a1a; }
.tag-purple { background: rgba(120,60,200,.1); color: #7830c8; }

.prod-name { font-family: 'Fredoka One', cursive; font-size: 1.1rem; color: var(--text); margin-bottom: .3rem; }
.prod-desc { font-size: .82rem; color: #888; font-weight: 600; line-height: 1.55; margin-bottom: .65rem; }
.prod-age  { font-size: .78rem; font-weight: 800; color: #666; display: flex; align-items: center; gap: .3rem; }

.wa-card-btn {
  display: block; margin-top: auto; padding-top: .75rem; text-align: center;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; padding: .55rem; border-radius: .75rem;
  font-weight: 800; font-size: .82rem; text-decoration: none;
  box-shadow: 0 4px 12px rgba(37,211,102,.28);
  transition: transform .2s, box-shadow .2s;
}
.wa-card-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,.5); }

/* View all CTA */
.view-all-wrap { text-align: center; margin-top: 2.5rem; }
.btn-catalogue {
  display: inline-flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, var(--red), var(--red2));
  color: #fff; padding: .95rem 2.25rem; border-radius: 999px;
  font-family: 'Fredoka One', cursive; font-size: 1.15rem;
  text-decoration: none; box-shadow: 0 8px 24px rgba(232,0,28,.35);
  transition: transform .25s, box-shadow .25s;
}
.btn-catalogue:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(232,0,28,.5); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why { padding: 6rem 1.5rem; background: #fff; position: relative; overflow: hidden; }

.why-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 20% 50%, rgba(232,0,28,.04) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 50%, rgba(26,63,191,.04) 0%, transparent 55%);
}

.why-header { text-align: center; margin-bottom: 3.5rem; }

.why-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

.why-card {
  border-radius: 1.75rem; padding: 2.2rem 1.75rem;
  position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s;
  cursor: default;
}
.why-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,0,0,.1); }

.wc1 { background: linear-gradient(135deg, #ffe5e5, #ffd0d0); }
.wc2 { background: linear-gradient(135deg, #e5edff, #d0dbff); }
.wc3 { background: linear-gradient(135deg, #fff5cc, #ffe680); }
.wc4 { background: linear-gradient(135deg, #e5ffe5, #c8f5c8); }
.wc5 { background: linear-gradient(135deg, #f0e5ff, #dfc8ff); }
.wc6 { background: linear-gradient(135deg, #ffe5f5, #ffc8e8); }

.why-icon {
  width: 72px; height: 72px; border-radius: 1.25rem;
  background: rgba(255,255,255,.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transition: transform .3s;
}
.why-card:hover .why-icon { transform: scale(1.15) rotate(-6deg); }

.why-card h3 { font-family: 'Fredoka One', cursive; font-size: 1.25rem; color: var(--text); margin-bottom: .5rem; }
.why-card p  { font-size: .88rem; color: #555; font-weight: 600; line-height: 1.65; }

.why-num {
  position: absolute; bottom: .75rem; right: 1.25rem;
  font-family: 'Fredoka One', cursive; font-size: 4.5rem;
  color: rgba(0,0,0,.06); line-height: 1; pointer-events: none;
}

/* ============================================================
   PARTNER / CONNECT
   ============================================================ */
#connect {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, #1A3FBF 0%, #0D2690 40%, #E8001C 100%);
  position: relative; overflow: hidden;
}

/* Twinkling stars */
.connect-stars { position: absolute; inset: 0; pointer-events: none; }
.cstar {
  position: absolute; background: #fff; border-radius: 50%;
  animation: twinkle ease-in-out infinite;
}
@keyframes twinkle {
  0%,100% { opacity: .12; transform: scale(1); }
  50%      { opacity: .7;  transform: scale(1.6); }
}

.connect-content { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }

.connect-header { text-align: center; margin-bottom: 3rem; color: #fff; }
.connect-title  { font-family: 'Fredoka One', cursive; font-size: clamp(2rem,5vw,3.5rem); margin-bottom: .75rem; }
.connect-sub    { font-size: 1.05rem; font-weight: 600; opacity: .85; max-width: 580px; margin: 0 auto; }

.connect-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 3rem; }

.cc {
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,.2); border-radius: 1.75rem;
  padding: 2rem 1.5rem; text-align: center; color: #fff;
  transition: background .3s, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.cc:hover { background: rgba(255,255,255,.22); transform: translateY(-8px); }
.cc-icon  { font-size: 3rem; margin-bottom: 1rem; display: block; }
.cc h3    { font-family: 'Fredoka One', cursive; font-size: 1.5rem; margin-bottom: .5rem; }
.cc p     { font-size: .88rem; opacity: .85; font-weight: 600; line-height: 1.65; }
.cc .moq  { margin-top: 1rem; font-weight: 900; color: var(--yellow2); font-size: .9rem; }

/* CTA buttons */
.cta-btns { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }

.wa-big {
  display: inline-flex; align-items: center; gap: .75rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; padding: 1.1rem 2.5rem; border-radius: 999px;
  font-family: 'Fredoka One', cursive; font-size: 1.3rem;
  text-decoration: none; box-shadow: 0 8px 28px rgba(37,211,102,.4);
  transition: transform .25s, box-shadow .25s;
  animation: waPulseAnim 2.5s ease-in-out infinite;
}
@keyframes waPulseAnim {
  0%,100% { box-shadow: 0 8px 28px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 12px 40px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.12); }
}
.wa-big:hover { transform: translateY(-4px) scale(1.03); }

.ig-big {
  display: inline-flex; align-items: center; gap: .75rem;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff; padding: 1.1rem 2.5rem; border-radius: 999px;
  font-family: 'Fredoka One', cursive; font-size: 1.3rem;
  text-decoration: none; box-shadow: 0 8px 28px rgba(220,39,67,.4);
  transition: transform .25s, box-shadow .25s;
}
.ig-big:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 12px 40px rgba(220,39,67,.6); }

/* Contact info box */
.dist-info {
  max-width: 700px; margin: 3rem auto 0;
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,.2); border-radius: 1.5rem;
  padding: 2rem; text-align: center; color: #fff;
}
.dist-info h3 { font-family: 'Fredoka One', cursive; font-size: 1.6rem; margin-bottom: .85rem; }
.dist-info p  { font-weight: 600; opacity: .9; line-height: 1.7; }

.contact-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.25rem; }
.contact-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.28);
  border-radius: 999px; padding: .5rem 1.2rem;
  font-weight: 800; color: #fff; text-decoration: none; font-size: .92rem;
  transition: background .2s;
}
.contact-chip:hover { background: rgba(255,255,255,.28); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #06060f; color: #aaa;
  text-align: center; padding: 2.5rem 1.5rem;
}
.footer-logo { margin-bottom: .75rem; }
.footer-logo img { height: 52px; object-fit: contain; margin: 0 auto; }
.footer-tagline { color: #aaa; font-size: .95rem; margin-bottom: 1rem; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.footer-links a { color: #888; text-decoration: none; font-weight: 700; font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-wa {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #25D366; color: #fff; padding: .5rem 1.3rem;
  border-radius: 999px; font-weight: 800; font-size: .9rem;
  text-decoration: none; margin-top: .25rem; transition: opacity .2s;
}
.footer-wa:hover { opacity: .85; }
.footer-copy { font-size: .75rem; color: #555; margin-top: 1rem; }
.footer-copy a { color: var(--yellow); text-decoration: none; }

/* ============================================================
   FLOATING WHATSAPP + SCROLL TOP
   ============================================================ */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  text-decoration: none; animation: waBounce 2.2s ease-in-out infinite;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.12) !important; animation-play-state: paused; }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes waBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

#scrollTop {
  position: fixed; bottom: 6.5rem; right: 1.5rem; z-index: 200;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: #fff; border: none; cursor: pointer;
  font-size: 1.2rem; display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(232,0,28,.4); transition: transform .2s;
}
#scrollTop.show { display: flex; }
#scrollTop:hover { transform: scale(1.1); }

/* ============================================================
   SCROLL REVEAL CLASSES
   ============================================================ */
.rv   { opacity: 0; transform: translateY(40px);   transition: opacity .7s ease, transform .7s ease; }
.rv-l { opacity: 0; transform: translateX(-50px);  transition: opacity .7s ease, transform .7s ease; }
.rv-r { opacity: 0; transform: translateX(50px);   transition: opacity .7s ease, transform .7s ease; }
.rv.visible, .rv-l.visible, .rv-r.visible { opacity: 1; transform: translate(0); }

/* stagger delays */
.d1 { transition-delay: .05s; }
.d2 { transition-delay: .12s; }
.d3 { transition-delay: .19s; }
.d4 { transition-delay: .26s; }
.d5 { transition-delay: .33s; }
.d6 { transition-delay: .40s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── TABLET ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── SMALL TABLET / LARGE MOBILE ── */
@media (max-width: 900px) {
  /* HERO — single column, generous padding so arrows don't overlap text */
  .slide-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3.5rem 5rem 5rem; /* left/right 5rem keeps text clear of arrows */
  }
  .slide-img-wrap { display: none; }
  .slide-sub      { margin-inline: auto; }
  .slide-btns     { justify-content: center; }

  /* Move arrows to very bottom of slide so they never cover text */
  .slider-arrow {
    top: auto;
    bottom: 1.5rem;
    transform: none;
    width: 42px; height: 42px; font-size: 1.3rem;
  }
  .slider-arrow:hover { transform: scale(1.1); }
  .sa-prev { left: calc(50% - 56px); }
  .sa-next { right: calc(50% - 56px); }

  /* Push dots above the arrows */
  .slider-dots { bottom: 4.5rem; }

  /* About */
  .about-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-badge   { right: .5rem; bottom: -1rem; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Why grid */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Partner cards */
  .connect-cards { grid-template-columns: 1fr; }

  /* Nav */
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  /* HERO — tighter side padding on small screens */
  .slide-inner {
    padding: 2.5rem 4.5rem 5rem;
  }
  .slide-title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
    line-height: 1.15;
  }
  .slide-sub {
    font-size: .95rem;
    margin-bottom: 1.25rem;
  }
  .slide-badge { font-size: .75rem; }

  /* Arrows: small circles, centred bottom row */
  .slider-arrow {
    width: 38px; height: 38px; font-size: 1.2rem;
    bottom: 1.2rem;
  }
  .sa-prev { left: calc(50% - 50px); }
  .sa-next { right: calc(50% - 50px); }
  .slider-dots { bottom: 4.2rem; }

  /* Slide buttons: stack vertically on very small screens */
  .slide-btns { flex-direction: column; align-items: center; gap: .75rem; }
  .sbtn-w, .sbtn-t {
    width: 100%; max-width: 280px;
    justify-content: center;
    padding: .75rem 1rem; font-size: .9rem;
  }

  /* Products — 2 col, tighter */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; padding-inline: .25rem; }
  .prod-img      { height: 150px; }
  .prod-info     { padding: .75rem .85rem 1rem; }
  .prod-name     { font-size: 1rem; }
  .prod-desc     { font-size: .78rem; line-height: 1.5; }
  .prod-tag      { font-size: .65rem; }
  .prod-age      { font-size: .72rem; }
  .wa-card-btn   { font-size: .78rem; padding: .5rem; margin-top: .6rem; }

  /* Why grid — 1 col on phones */
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
  .why-card { padding: 1.5rem 1.25rem; }

  /* Partner CTA */
  .cta-btns         { flex-direction: column; align-items: center; }
  .wa-big, .ig-big  { font-size: 1rem; padding: .9rem 1.6rem; }

  /* Stats */
  .stats-row { gap: .65rem; }
  .stat-box .num { font-size: 1.6rem; }

  /* Footer */
  .footer-links { gap: 1rem; }

  /* About section */
  #about { padding: 4rem 1.25rem; }
  #toys  { padding: 4rem 1rem; }
  #why   { padding: 4rem 1.25rem; }
}

/* ── VERY SMALL (≤ 400px) ── */
@media (max-width: 400px) {
  .slide-inner { padding: 2rem 3.5rem 5rem; }
  .slide-title { font-size: 1.7rem; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .prod-img      { height: 130px; }
  .prod-name     { font-size: .95rem; }
  .prod-desc     { display: none; } /* hide desc on tiny screens for cleaner look */

  .slider-arrow  { width: 34px; height: 34px; font-size: 1.1rem; bottom: 1rem; }
  .sa-prev { left: calc(50% - 45px); }
  .sa-next { right: calc(50% - 45px); }
}
