@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Nunito:wght@400;600;700;800&display=swap');

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

:root {
  --pink: #ff2d78;
  --pink-light: #ff6fa8;
  --pink-pale: #fff0f5;
  --dark: #1a0010;
  --text: #2a0018;
  --muted: #884466;
  --white: #ffffff;
  --bg: #fff7fa;
}

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

/* GLITTER */
.glitter-container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9999; overflow: hidden; }
.glitter { position: absolute; border-radius: 50%; animation: glitterFall linear infinite; opacity: 0; }
@keyframes glitterFall { 0%{transform:translateY(-20px) rotate(0deg);opacity:1} 100%{transform:translateY(100vh) rotate(360deg);opacity:0} }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 10px 32px; background: rgba(255,247,250,0.95); backdrop-filter: blur(16px); border-bottom: 2px solid #ffd0e0; box-shadow: 0 2px 20px rgba(255,45,120,0.08); }
.nav-logo { height: 48px; width: auto; object-fit: contain; display: block; }
nav ul { list-style: none; display: flex; gap: 28px; align-items: center; }
nav ul li a { text-decoration: none; font-size: 14px; font-weight: 700; color: var(--muted); transition: color 0.2s; }
nav ul li a:hover { color: var(--pink); }
.nav-cta { background: var(--pink); color: var(--white) !important; padding: 9px 20px; border-radius: 50px; font-size: 13px !important; box-shadow: 0 4px 16px rgba(255,45,120,0.3); }
.nav-cta:hover { background: #e0005a !important; }
.burger { display: none; background: none; border: 2px solid #ffd0e0; border-radius: 8px; padding: 6px 10px; font-size: 20px; cursor: pointer; color: var(--pink); }
.mobile-menu { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; z-index: 199; background: var(--white); border-bottom: 2px solid #ffd0e0; box-shadow: 0 8px 30px rgba(255,45,120,0.1); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 15px 28px; text-decoration: none; font-weight: 700; color: var(--text); border-bottom: 1px solid #ffe0ec; font-size: 15px; }
.mobile-menu a:hover { background: var(--pink-pale); color: var(--pink); }

/* HERO */
.hero { padding: 100px 32px 60px; text-align: center; background: linear-gradient(160deg, #fff0f7 0%, #fff7fa 60%, #ffe8f2 100%); position: relative; overflow: hidden; }
.hero-circles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.circle { position: absolute; border-radius: 50%; filter: blur(70px); }
.c1 { width: 350px; height: 350px; background: #ffb3d0; top: -80px; right: -60px; opacity: 0.45; animation: cpulse 9s ease-in-out infinite; }
.c2 { width: 250px; height: 250px; background: #ffccee; bottom: -40px; left: -60px; opacity: 0.4; animation: cpulse 11s ease-in-out infinite reverse; }
@keyframes cpulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.2)} }
.hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.hero-logo-small { width: 180px; height: auto; object-fit: contain; margin: 0 auto 24px; filter: drop-shadow(0 8px 24px rgba(255,45,120,0.25)); animation: floatLogo 5s ease-in-out infinite; }
@keyframes floatLogo { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hero-badge { display: inline-block; background: var(--white); color: var(--pink); border: 2px solid #ffd0e0; font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 18px; border-radius: 100px; margin-bottom: 20px; box-shadow: 0 4px 16px rgba(255,45,120,0.12); }
.hero h1 { font-family: 'Great Vibes', cursive; font-size: clamp(42px, 8vw, 72px); line-height: 1.2; color: var(--dark); margin-bottom: 16px; }
.hero h1 span { color: var(--dark); }
.hero-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 480px; margin: 0 auto 32px; }
.hero-sub em { color: var(--pink); font-style: normal; font-weight: 800; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }

/* SOCIAL BUTTONS — pink, below hero btns, above marquee */
.hero-socials { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 0; padding-bottom: 20px; }
.hero-social-btn { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 800; font-size: 13px; padding: 10px 22px; border-radius: 50px; color: var(--pink); background: rgba(255,45,120,0.08); border: 2px solid #ffb3d0; transition: all 0.2s; }
.hero-social-btn svg { fill: var(--pink) !important; transition: fill 0.2s; width: 18px; height: 18px; }
.hero-social-btn:hover { background: var(--pink); color: #fff; border-color: var(--pink); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,45,120,0.3); }
.hero-social-btn:hover svg { fill: #fff; }

/* MARQUEE */
.marquee-strip { background: linear-gradient(135deg, var(--pink), #ff6fa8); color: white; padding: 12px 0; overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-block; animation: marquee 22s linear infinite; }
.marquee-inner span { font-size: 13px; font-weight: 800; letter-spacing: 0.05em; margin: 0 24px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* SECTIONS */
.section { padding: 72px 24px; }
.section-inner { max-width: 1060px; margin: 0 auto; }
.section-tag { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink); margin-bottom: 12px; }
.section-tag.light { color: #ffb3d0; }
h2 { font-family: 'Great Vibes', cursive; font-size: clamp(34px, 5vw, 56px); line-height: 1.2; color: var(--dark); margin-bottom: 16px; }
.light-h2 { color: var(--white); }
.pink { color: var(--pink); }
.white { color: rgba(255,255,255,0.85); }
.section-desc { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 500px; margin-bottom: 40px; }
.light-p { color: rgba(255,255,255,0.85) !important; }

/* ABOUT */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-text p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.about-cards { display: flex; flex-direction: column; gap: 14px; }
.about-card { background: var(--white); border: 2px solid #ffd0e0; border-radius: 16px; padding: 20px; display: flex; gap: 14px; align-items: flex-start; transition: transform 0.2s, box-shadow 0.2s; }
.about-card:hover { transform: translateX(5px); box-shadow: 0 6px 24px rgba(255,45,120,0.1); }
.ac-icon { font-size: 26px; flex-shrink: 0; }
.about-card h3 { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 5px; }
.about-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }

/* PRODUCTS */
.section-pink { background: linear-gradient(135deg, var(--pink) 0%, #ff6fa8 100%); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-top: 8px; }
.product-card { background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border: 1.5px solid rgba(255,255,255,0.3); border-radius: 18px; padding: 24px 20px; position: relative; transition: background 0.2s, transform 0.2s; }
.product-card:hover { background: rgba(255,255,255,0.25); transform: translateY(-5px); }
.product-icon { font-size: 32px; margin-bottom: 12px; }
.product-card h3 { font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 7px; }
.product-card p { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.product-badge { position: absolute; top: -10px; right: 14px; background: var(--white); color: var(--pink); font-size: 9px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 11px; border-radius: 100px; }

/* WHY */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; margin-top: 8px; }
.why-item { padding-top: 16px; border-top: 3px solid #ffd0e0; }
.why-num { font-family: 'Great Vibes', cursive; font-size: 46px; color: var(--dark); line-height: 1; margin-bottom: 6px; }
.why-item h3 { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 7px; }
.why-item p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* CONTACT */
.section-dark { background: var(--dark); }
.contact-inner { max-width: 640px; }
.pink-light { color: var(--pink-light); }
.contact-form { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form input, .contact-form textarea {
  background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,100,150,0.3);
  border-radius: 12px; padding: 13px 16px;
  font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--white); outline: none; transition: border-color 0.2s; resize: vertical; width: 100%;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--pink-light); }
.multiselect-wrap { display: flex; flex-direction: column; gap: 8px; }
.multiselect-label { font-size: 14px; font-weight: 800; color: #ffffff; }
.multiselect-label span { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 600; margin-left: 6px; }
.multiselect { background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,100,150,0.3); border-radius: 12px; padding: 6px; font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 700; color: #fff; width: 100%; outline: none; transition: border-color 0.2s; }
.multiselect:focus { border-color: var(--pink-light); }
.multiselect option { background: #2a0018; color: #fff; padding: 10px 12px; margin: 3px 0; font-size: 14px; cursor: pointer; }
.multiselect option:checked { background: var(--pink); color: #fff; }
.form-success { display: none; margin-top: 14px; background: rgba(255,110,168,0.15); border: 1px solid var(--pink-light); color: var(--pink-light); border-radius: 12px; padding: 14px 18px; font-size: 14px; font-weight: 700; }

/* Send buttons */
.send-btn { display: inline-block; text-decoration: none; padding: 12px 22px; border-radius: 50px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 14px; transition: transform 0.2s; }
.send-btn:hover { transform: translateY(-2px); }
.wa-btn { background: #25D366; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
.email-btn { background: var(--pink); color: #fff; box-shadow: 0 4px 16px rgba(255,45,120,0.35); }

/* FOOTER */
footer { background: #0d0008; padding: 40px 24px; text-align: center; border-top: 1px solid #3a001a; }
.footer-logo { height: 70px; width: auto; object-fit: contain; margin-bottom: 14px; }
footer p { font-size: 13px; color: #cc5580; font-weight: 700; margin-bottom: 5px; }
.footer-sub { color: #ffffff !important; font-size: 12px !important; }

/* ANIMATIONS */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 10px 20px; }
  nav ul { display: none; }
  .burger { display: block; }
  .hero { padding: 90px 20px 50px; }
  .hero-logo-small { width: 140px; }
  .hero h1 { font-size: clamp(36px, 10vw, 52px); }
  .hero-sub { font-size: 14px; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 56px 20px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-pink, .btn-outline { width: 100%; text-align: center; }
}
