:root {
  --cream: #fff4df;
  --cream-2: #fffaf0;
  --sky: #78d7ff;
  --sky-dark: #1295c8;
  --pink: #ff74ae;
  --pink-dark: #e83781;
  --yellow: #ffd84d;
  --brown: #5a321f;
  --choco: #7a452e;
  --dark: #151d2d;
  --text: #322b2b;
  --muted: #70646a;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(84, 53, 31, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--cream-2);
  overflow-x: hidden;
}
img { width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 240, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { box-shadow: 0 16px 42px rgba(67, 40, 29, 0.14); background: rgba(255, 255, 255, 0.96); }
.navbar {
  width: min(1220px, calc(100% - 28px));
  margin: 0 auto;
  height: 108px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; min-width: 315px; }
.brand img {
  width: 300px;
  height: 96px;
  object-fit: contain;
  object-position: left center;
}
.nav-menu { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav-menu a { padding: 10px 13px; border-radius: 999px; font-weight: 700; font-size: .94rem; color: var(--brown); transition: .25s ease; }
.nav-menu a:hover, .nav-menu a.active { color: var(--pink-dark); background: rgba(255, 116, 174, 0.12); }
.header-call { white-space: nowrap; padding: 12px 16px; border-radius: 999px; color: var(--white); background: linear-gradient(135deg, var(--sky-dark), var(--pink)); font-weight: 800; box-shadow: 0 14px 30px rgba(18, 149, 200, .22); }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 8px; margin-left: auto; }
.menu-toggle span { display: block; height: 3px; margin: 6px 0; border-radius: 5px; background: var(--brown); transition: .25s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.hero { position: relative; min-height: 760px; display: grid; align-items: center; overflow: hidden; }
.hero-bg, .page-hero-bg, .order-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.home-hero:before, .page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(255,244,223,.96), rgba(120,215,255,.68), rgba(255,116,174,.38)),
    radial-gradient(circle at 70% 20%, rgba(255,216,77,.5), transparent 28%);
  z-index: 1;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 44px; padding: 92px 0; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink-dark);
  background: rgba(255,255,255,.78);
  padding: 9px 15px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(255, 116, 174, .14);
}
.hero h1, .page-hero h1 { font-family: "Baloo 2", cursive; font-size: clamp(3.1rem, 7vw, 6.8rem); line-height: .9; margin: 18px 0; color: var(--brown); max-width: 760px; }
.hero p, .page-hero p { max-width: 690px; font-size: 1.08rem; line-height: 1.85; color: #473b3d; font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-4px); }
.btn-primary { color: var(--brown); background: linear-gradient(135deg, var(--yellow), #fff0a2); box-shadow: 0 15px 32px rgba(255, 204, 42, .34); }
.btn-choco { color: var(--white); background: linear-gradient(135deg, var(--brown), var(--choco)); box-shadow: 0 15px 32px rgba(90, 50, 31, .22); }
.btn-whatsapp { color: var(--white); background: linear-gradient(135deg, #17b55c, #0d8e46); box-shadow: 0 15px 32px rgba(23, 181, 92, .22); }
.pulse { animation: pulseGlow 2s infinite; }
.hero-card { position: relative; }
.hero-card img { height: min(560px, 70vh); border-radius: 32px; border: 12px solid rgba(255,255,255,.72); box-shadow: var(--shadow); transform: rotate(2deg); }
.product-hero img {
  object-fit: contain;
  object-position: center;
  background: radial-gradient(circle at 50% 42%, #ffffff 0 42%, #e8fbff 43% 100%);
  padding: 24px;
}
.hero-badge { position: absolute; left: -18px; bottom: 36px; padding: 18px 20px; border-radius: 22px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); }
.hero-badge strong { display: block; color: var(--pink-dark); font-family: "Baloo 2", cursive; font-size: 1.5rem; }
.hero-badge span { color: var(--muted); font-weight: 600; }
.float-sweet { position: absolute; z-index: 2; width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: linear-gradient(135deg, var(--pink), var(--sky)); box-shadow: var(--shadow); animation: floatSweet 5s ease-in-out infinite; }
.sweet-a { left: 7%; top: 18%; }
.sweet-b { right: 8%; bottom: 16%; animation-delay: 1s; }
.milk-splash { position: absolute; z-index: 1; width: 150px; height: 150px; border-radius: 46% 54% 64% 36%; background: rgba(255,255,255,.58); filter: blur(1px); animation: splashMove 7s ease-in-out infinite; }
.splash-one { left: 44%; top: 12%; }
.splash-two { right: 15%; top: 38%; animation-delay: 1.2s; }

.strip-section { margin-top: -46px; position: relative; z-index: 4; padding-bottom: 52px; }
.product-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.strip-card { position: relative; height: 188px; overflow: hidden; border-radius: 26px; box-shadow: var(--shadow); background: var(--white); isolation: isolate; transition: .3s ease; }
.strip-card:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(90,50,31,.72)); z-index: 1; }
.strip-card img { height: 100%; transition: transform .45s ease; }
.strip-card.product-photo img {
  object-fit: contain;
  object-position: center;
  padding: 14px;
  background: linear-gradient(135deg, #fff, #eefbff);
}
.strip-card span { position: absolute; left: 18px; bottom: 16px; z-index: 2; color: var(--white); font-family: "Baloo 2", cursive; font-size: 1.55rem; font-weight: 800; text-shadow: 0 3px 12px rgba(0,0,0,.32); }
.strip-card:hover { transform: translateY(-8px); box-shadow: 0 26px 70px rgba(255,116,174,.28); }
.strip-card:hover img { transform: scale(1.12); }

section { position: relative; }
.about-split, .why-section, .testimonials-section, .contact-cards-section, .contact-layout { padding: 92px 0; }
.split-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.image-stack { position: relative; }
.main-img { height: 560px; border-radius: 32px; box-shadow: var(--shadow); }
.product-main-img {
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, #ffffff, #e9f8ff 55%, #fff2cf);
  padding: 18px;
}
.mini-card { position: absolute; right: -18px; bottom: 28px; display: flex; align-items: center; gap: 12px; max-width: 250px; padding: 18px 20px; background: var(--white); border-radius: 22px; box-shadow: var(--shadow); font-weight: 800; color: var(--brown); }
.mini-card i { color: var(--pink-dark); font-size: 1.4rem; }
.split-copy h2, .section-heading h2, .order-copy h2, .contact-panel h2 { font-family: "Baloo 2", cursive; font-size: clamp(2.15rem, 4vw, 4rem); line-height: 1; color: var(--brown); margin: 18px 0; }
.split-copy p, .section-heading p, .order-copy p, .contact-panel p { color: var(--muted); line-height: 1.85; font-weight: 500; }
.tick-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 0; margin: 24px 0 28px; list-style: none; }
.tick-list li { padding: 13px 14px; border-radius: 15px; background: var(--white); box-shadow: 0 10px 22px rgba(90,50,31,.08); font-weight: 800; color: var(--brown); }
.tick-list li:before { content: "✓"; color: #14a75a; margin-right: 8px; }

.products-section { padding: 96px 0; background: linear-gradient(135deg, #e9f8ff, #fff7e6 52%, #ffe9f4); }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 42px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { position: relative; padding: 12px 12px 24px; border-radius: 28px; background: rgba(255,255,255,.86); box-shadow: 0 18px 45px rgba(90,50,31,.11); transition: .3s ease; overflow: hidden; }
.product-card img {
  height: 210px;
  border-radius: 20px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, #ffffff, #f0fbff);
  padding: 12px;
}
.product-card i { width: 50px; height: 50px; margin: -25px 0 0 18px; position: relative; display: grid; place-items: center; border-radius: 16px; color: var(--white); background: linear-gradient(135deg, var(--pink), var(--sky-dark)); box-shadow: 0 12px 25px rgba(255,116,174,.24); }
.product-card h3 { margin: 18px 14px 8px; font-family: "Baloo 2", cursive; color: var(--brown); font-size: 1.45rem; line-height: 1.1; }
.product-card p { margin: 0 14px 18px; color: var(--muted); line-height: 1.62; font-size: .94rem; }
.product-card a { margin-left: 14px; color: var(--pink-dark); font-weight: 800; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 26px 70px rgba(18,149,200,.2); }

.gallery-section { padding: 96px 0; background: var(--cream-2); }
.masonry-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 18px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 26px; box-shadow: var(--shadow); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { height: 100%; transition: transform .45s ease; }
.gallery-item.product-gallery img {
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, #ffffff, #fff7e8);
  padding: 12px;
}
.gallery-item span { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; background: linear-gradient(135deg, rgba(255,116,174,.72), rgba(18,149,200,.64)); color: var(--white); font-size: 2rem; transition: .3s ease; }
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item:hover span { opacity: 1; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { overflow: hidden; border-radius: 30px; background: var(--white); box-shadow: var(--shadow); transition: .3s ease; }
.why-card img {
  height: 260px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, #ffffff, #eaf9ff);
  padding: 14px;
}

.brand-products-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 216, 77, .28), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(120, 215, 255, .3), transparent 24%),
    linear-gradient(135deg, #fffaf0, #fff0f7 48%, #eaf8ff);
}
.brand-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.brand-product {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 16px 16px 20px;
  border-radius: 28px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 45px rgba(90,50,31,.12);
  transition: transform .3s ease, box-shadow .3s ease;
}
.brand-product:before {
  content: "";
  position: absolute;
  inset: auto -30% -48% -30%;
  height: 58%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,116,174,.22), rgba(120,215,255,.26), rgba(255,216,77,.24));
}
.brand-product img {
  position: relative;
  z-index: 1;
  height: 230px;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background: #fff;
  border-radius: 22px;
}
.brand-product h3 {
  position: relative;
  z-index: 1;
  margin: 16px 4px 0;
  color: var(--brown);
  font-family: "Baloo 2", cursive;
  font-size: 1.35rem;
  line-height: 1.05;
  text-align: center;
}
.brand-product:hover {
  transform: translateY(-9px);
  box-shadow: 0 26px 70px rgba(255,116,174,.22);
}
.brand-product:hover img {
  transform: scale(1.04);
}
.why-card i { margin: -31px 24px 0; position: relative; width: 62px; height: 62px; display: grid; place-items: center; border-radius: 20px; color: var(--brown); background: var(--yellow); box-shadow: 0 14px 30px rgba(255,216,77,.3); }
.why-card h3 { margin: 20px 24px 8px; color: var(--brown); font-family: "Baloo 2", cursive; font-size: 1.7rem; line-height: 1.1; }
.why-card p { margin: 0 24px 28px; color: var(--muted); line-height: 1.75; }
.why-card:hover { transform: translateY(-9px); box-shadow: 0 28px 72px rgba(255,116,174,.2); }

.counter-section { padding: 64px 0; background: linear-gradient(135deg, var(--brown), #23213a); color: var(--white); }
.counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.counter-card { text-align: center; padding: 28px 18px; border-radius: 24px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); }
.counter-card strong { display: block; font-family: "Baloo 2", cursive; font-size: 3rem; line-height: 1; color: var(--yellow); }
.counter-card strong[data-count]:after { content: "+"; }
.counter-card:nth-child(2) strong[data-count]:after { content: "%"; }
.counter-card:nth-child(3) strong[data-count]:after { content: "/7"; }
.counter-card span { font-weight: 800; }

.testimonial-slider { max-width: 780px; margin: 0 auto; position: relative; }
.testimonial-card { display: none; text-align: center; padding: 42px; border-radius: 30px; background: var(--white); box-shadow: var(--shadow); }
.testimonial-card.active { display: block; animation: fadeUp .55s ease both; }
.quote { color: var(--pink); font-size: 2.6rem; }
.testimonial-card p { color: var(--muted); line-height: 1.8; font-size: 1.04rem; }
.stars { color: #ffbc19; font-size: 1.25rem; letter-spacing: 2px; }
.testimonial-card h3 { color: var(--brown); font-family: "Baloo 2", cursive; font-size: 1.5rem; margin: 10px 0 0; }
.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.slider-dots button { width: 12px; height: 12px; border: 0; border-radius: 50%; background: #f6bad2; cursor: pointer; }
.slider-dots button.active { width: 34px; border-radius: 999px; background: var(--pink-dark); }

.contact-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.contact-card { padding: 30px 22px; border-radius: 28px; background: linear-gradient(180deg, #fff, #fff7e8); box-shadow: var(--shadow); text-align: center; transition: .3s ease; }
.contact-card i { color: var(--pink-dark); font-size: 2rem; }
.contact-card h3 { color: var(--brown); font-family: "Baloo 2", cursive; font-size: 1.55rem; margin: 14px 0 8px; }
.contact-card p { color: var(--muted); line-height: 1.65; margin: 0; overflow-wrap: anywhere; }
.contact-card:hover { transform: translateY(-8px); box-shadow: 0 26px 70px rgba(18,149,200,.18); }

.order-section { padding: 100px 0; overflow: hidden; }
.order-section:before { content: ""; position: absolute; inset: 0; z-index: 1; backdrop-filter: blur(2px); background: linear-gradient(120deg, rgba(255,244,223,.9), rgba(120,215,255,.72), rgba(255,116,174,.5)); }
.order-wrap { position: relative; z-index: 2; display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: start; padding: 34px; border-radius: 34px; background: rgba(255,255,255,.74); box-shadow: var(--shadow); }
.order-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.order-form input, .order-form textarea {
  width: 100%;
  border: 1px solid rgba(90,50,31,.12);
  background: rgba(255,255,255,.92);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}
.order-form textarea { min-height: 112px; resize: vertical; grid-column: 1 / -1; }
.order-form button { grid-column: 1 / -1; }

.page-hero { min-height: 500px; display: grid; align-items: center; overflow: hidden; color: var(--brown); }
.page-hero .container { position: relative; z-index: 2; padding: 100px 0 70px; }
.contact-two { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: stretch; }
.contact-panel, .contact-form { padding: 34px; border-radius: 30px; background: var(--white); box-shadow: var(--shadow); }

.footer {
  background:
    radial-gradient(circle at 12% 8%, rgba(120, 215, 255, .28), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(255, 116, 174, .2), transparent 24%),
    linear-gradient(135deg, #ffffff, #fff7e8 52%, #eaf9ff);
  color: var(--brown);
  padding-top: 68px;
  box-shadow: inset 0 1px 0 rgba(90,50,31,.08);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .8fr 1.2fr; gap: 34px; }
.footer h3, .footer h4 { color: var(--brown); font-family: "Baloo 2", cursive; margin-top: 0; font-size: 1.55rem; }
.footer p { line-height: 1.75; }
.footer a { display: block; margin: 9px 0; transition: .2s ease; }
.footer a:hover { color: var(--pink-dark); }
.footer-logo {
  width: min(310px, 100%);
  height: 126px;
  object-fit: contain;
  object-position: left center;
  margin: -16px 0 12px;
}
.socials { display: flex; gap: 12px; margin-top: 14px; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,116,174,.12); color: var(--pink-dark); }
.copyright { margin-top: 48px; padding: 18px; text-align: center; border-top: 1px solid rgba(90,50,31,.12); }
.floating-actions { pointer-events: none; position: fixed; inset: auto 0 20px; z-index: 1200; }
.floating-actions a { pointer-events: auto; position: fixed; bottom: 20px; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; color: var(--white); font-size: 1.35rem; box-shadow: 0 16px 34px rgba(0,0,0,.22); animation: floatPulse 2s infinite; }
.float-call { left: 20px; background: var(--sky-dark); }
.float-wa { right: 20px; background: #16b65d; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes pulseGlow { 0%, 100% { box-shadow: 0 15px 32px rgba(255,204,42,.34); } 50% { box-shadow: 0 20px 52px rgba(255,116,174,.48); } }
@keyframes floatSweet { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-18px) rotate(8deg); } }
@keyframes splashMove { 0%, 100% { transform: scale(1) rotate(0deg); } 50% { transform: scale(1.16) rotate(14deg); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.07); } }

@media (max-width: 1020px) {
  .navbar { height: 96px; }
  .menu-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 96px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 8px;
    padding: 18px;
    background: rgba(255,255,255,.98);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu a { border-radius: 14px; }
  .header-call { display: none; }
  .hero-grid, .split-grid, .order-wrap, .contact-two { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card img { height: 430px; }
  .product-strip, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .contact-card-grid, .counters, .brand-product-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .brand { min-width: 0; }
  .brand img { width: 190px; height: 72px; }
  .footer-logo { width: 250px; height: 104px; }
  .hero-grid { padding: 62px 0 80px; gap: 28px; }
  .hero p, .page-hero p { font-size: .98rem; line-height: 1.7; }
  .hero-actions .btn { width: 100%; }
  .hero-card img, .main-img { height: 350px; border-radius: 24px; }
  .hero-badge, .mini-card { left: 12px; right: 12px; bottom: 16px; max-width: none; }
  .product-strip, .product-grid, .why-grid, .contact-card-grid, .counters, .footer-grid, .brand-product-grid { grid-template-columns: 1fr; }
  .strip-section { margin-top: -24px; }
  .strip-card { height: 210px; }
  .about-split, .products-section, .gallery-section, .why-section, .testimonials-section, .contact-cards-section, .contact-layout, .brand-products-section { padding: 66px 0; }
  .brand-product { min-height: 260px; }
  .brand-product img { height: 190px; }
  .tick-list, .order-form { grid-template-columns: 1fr; }
  .masonry-gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .order-wrap, .contact-panel, .contact-form { padding: 22px; border-radius: 24px; }
  .testimonial-card { padding: 30px 20px; }
  .float-call { left: 14px; }
  .float-wa { right: 14px; }
}
