/* ===== VARIABLES ===== */
:root {
  --pink:        #F570BD;
  --pink-light:  #FDE8F5;
  --teal:        #00B4C5;
  --teal-dark:   #009BAA;
  --yellow:      #F9E84A;
  --yellow-light:#FFFDE7;
  --dark:        #2D2D2D;
  --mid:         #555555;
}

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

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

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Fredoka One', cursive;
  font-weight: 400;
  line-height: 1.15;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.05rem;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn-pink  { background: var(--pink);  color: #fff; }
.btn-teal  { background: var(--teal);  color: #fff; }

/* ===== UTILITY ===== */
.pink        { color: var(--pink); }
.deco        { position: absolute; pointer-events: none; }

/* ===========================
   ANNOUNCEMENT BAR
   =========================== */
.announcement-bar {
  background: var(--teal);
  color: #fff;
  text-align: center;
  padding: 11px 20px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
}

/* ===========================
   HEADER
   =========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 24px;
}

.logo-link img { height: 68px; width: auto; }

.nav {
  display: flex;
  gap: 36px;
}
.nav a {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: var(--dark);
  transition: color .2s;
}
.nav a:hover { color: var(--pink); }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--dark);
  padding: 4px;
}

/* Mobile nav */
.nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  padding: 16px 24px 24px;
  border-top: 1px solid #eee;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  gap: 0;
}
.nav.open a {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1.2rem;
}

/* ===========================
   HERO
   =========================== */
.hero {
  padding: 70px 0 80px;
  background: #fff;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 16px;
  max-width: 520px;
}

.hero-text .btn { margin-top: 12px; }

.deco-star-teal {
  top: -24px;
  right: 20px;
  width: 52px;
}
.deco-star-yellow {
  bottom: 0;
  left: -16px;
  width: 44px;
}

.hero-image {
  flex: 0 0 460px;
  display: flex;
  justify-content: center;
}

.hero-photo {
  width: 100%;
  max-width: 440px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}

/* ===========================
   CHAOS / WHY IT WORKS
   =========================== */
.chaos-section {
  background: var(--pink-light);
  padding: 80px 0;
  overflow: hidden;
}

.chaos-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.chaos-image {
  flex: 0 0 400px;
  position: relative;
}

.chaos-photo {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
}

.deco-swirl-pink {
  width: 80px;
  bottom: -24px;
  right: -20px;
}

.chaos-text {
  flex: 1;
  position: relative;
}

.deco-splat {
  width: 90px;
  top: -40px;
  right: -10px;
}

.chaos-text h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  color: var(--dark);
  margin-bottom: 8px;
}

.chaos-text h3 {
  font-size: 1.25rem;
  color: var(--teal-dark);
  margin-bottom: 28px;
  font-family: 'Fredoka One', cursive;
}

.subtext {
  font-family: 'Nunito', sans-serif;
  font-size: .75em;
  font-weight: 600;
  color: var(--mid);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.features-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-star {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 4px;
}

.features-list strong {
  display: block;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.features-list p {
  font-size: .93rem;
  color: var(--mid);
  line-height: 1.5;
}

/* ===========================
   PRODUCTS
   =========================== */
.products {
  background: var(--yellow-light);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.deco-dots {
  top: -60px;
  right: -60px;
  width: 300px;
  opacity: .45;
}

.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  text-align: center;
  color: var(--dark);
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.section-title.white { color: #fff; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.product-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 36px rgba(0,0,0,.15);
}

.product-img-wrap {
  background: #f8f8f8;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  text-align: center;
}

.product-info h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.15rem;
  color: var(--dark);
}

.price {
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--pink);
}

.coming-soon {
  text-align: center;
  margin-top: 44px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--teal);
  position: relative;
  z-index: 1;
}

/* ===========================
   BENEFITS
   =========================== */
.benefits {
  background: var(--teal);
  padding: 80px 0;
  text-align: center;
}

.benefits-sub {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: rgba(255,255,255,.85);
  margin-top: -34px;
  margin-bottom: 52px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  background: rgba(255,255,255,.15);
  border-radius: 22px;
  padding: 40px 28px;
  color: #fff;
  backdrop-filter: blur(6px);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 20px;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.benefit-headline {
  font-size: .98rem;
  font-weight: 700;
  opacity: .95;
  margin-bottom: 8px;
}

.benefit-detail {
  font-size: .88rem;
  opacity: .75;
  font-style: italic;
  line-height: 1.5;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  background: var(--pink-light);
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  border-radius: 22px;
  padding: 36px 28px;
  box-shadow: 0 4px 18px rgba(0,0,0,.07);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-mark {
  width: 48px;
  opacity: .25;
  margin-bottom: 16px;
}

.quote {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--dark);
  font-style: italic;
  flex: 1;
  margin-bottom: 16px;
}

.author {
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  color: var(--pink);
}

/* ===========================
   UGC / SOCIAL
   =========================== */
.ugc {
  background: #1a1a2e;
  padding: 80px 0;
}

.ugc-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.ugc-photo {
  flex: 1;
}

.ugc-photo img {
  width: 100%;
  border-radius: 28px;
  max-height: 520px;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
}

.ugc-text {
  flex: 1;
  color: #fff;
}

.ugc-woman {
  width: 220px;
  margin-bottom: 24px;
}

.ugc-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--yellow);
  margin-bottom: 20px;
  line-height: 1.2;
}

.ugc-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--teal-dark);
  color: #fff;
  padding: 60px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.footer-logo {
  height: 76px;
  width: auto;
  background: #fff;
  border-radius: 14px;
  padding: 6px 12px;
}

.footer-col h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  color: var(--yellow);
  margin-bottom: 14px;
  letter-spacing: .04em;
}

.footer-col a,
.footer-col p {
  font-size: .98rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  transition: color .2s;
}

.footer-col a:hover { color: var(--yellow); }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.social-btn {
  background: rgba(255,255,255,.15);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: .9rem;
  color: #fff;
  transition: background .2s;
}

.social-btn:hover { background: var(--pink); }

.footer-bottom {
  max-width: 1180px;
  margin: 24px auto 0;
  padding: 0 24px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

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

@media (max-width: 860px) {
  /* Header */
  .nav    { display: none; }
  .hamburger { display: block; }

  /* Hero */
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero-image { flex: none; width: 100%; }
  .hero-photo { max-width: 360px; margin: 0 auto; }
  .hero-text p { max-width: 100%; }

  /* Chaos */
  .chaos-inner { flex-direction: column; }
  .chaos-image { flex: none; width: 100%; max-width: 420px; margin: 0 auto; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  /* UGC */
  .ugc-inner { flex-direction: column; }
  .ugc-woman { width: 160px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .products-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.75rem; }
}
