:root {
  --pink: #E91E8C;
  --pink-hover: #c91577;
  --pink-light: #fce4f5;
  --teal: #3D9B96;
  --teal-light: #e0f5f4;
  --cream: #FDF5EE;
  --gold: #C8A951;
  --dark: #1a1a2e;
  --text: #333;
  --text-light: #777;
  --white: #fff;
  --shadow: 0 4px 20px rgba(233, 30, 140, 0.12);
  --shadow-hover: 0 10px 36px rgba(233, 30, 140, 0.22);
  --radius: 16px;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(253,245,238,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(233,30,140,0.1);
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-logo-icon { display: flex; align-items: center; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--pink); letter-spacing: 1px;
}
.nav-logo-text .tagline {
  font-size: .58rem; letter-spacing: 2.5px;
  color: var(--text-light); text-transform: uppercase;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--dark);
  font-size: .88rem; font-weight: 500;
  transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--pink);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--pink); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; gap: .75rem; align-items: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .6rem 1.2rem; border-radius: 30px;
  font-size: .85rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: var(--transition); font-family: 'Poppins', sans-serif;
}
.btn-primary { background: var(--pink); color: #fff; }
.btn-primary:hover {
  background: var(--pink-hover);
  transform: translateY(-2px); box-shadow: var(--shadow-hover);
}
.btn-outline { background: transparent; color: var(--pink); border: 2px solid var(--pink); }
.btn-outline:hover { background: var(--pink); color: #fff; transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover {
  background: #1db954; transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,.3);
}
.btn-white { background: #fff; color: var(--pink); font-weight: 700; }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ── Hamburger ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); transition: var(--transition); }

/* ── Mobile menu ── */
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: var(--white); padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  z-index: 999; flex-direction: column; gap: .75rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--dark); font-weight: 500;
  padding: .75rem; border-bottom: 1px solid rgba(0,0,0,.05);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--pink); padding-left: 1.1rem; }

/* ── Hero ── */
.hero {
  min-height: 90vh; display: flex; align-items: center;
  padding: 4rem 2rem; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, #fff5fb 55%, #f0fffe 100%);
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(233,30,140,.07) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(61,155,150,.07) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--pink-light); color: var(--pink);
  padding: .4rem 1rem; border-radius: 30px;
  font-size: .75rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.4rem,5vw,3.8rem);
  line-height: 1.15; color: var(--dark); margin-bottom: .9rem;
}
.hero h1 span { color: var(--pink); }
.hero-subtitle {
  font-size: 1.05rem; color: var(--text-light);
  line-height: 1.75; margin-bottom: 2rem; max-width: 460px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2.5rem; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; font-weight: 700; color: var(--pink);
}
.stat-label {
  font-size: .72rem; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.hero-images {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr; gap: 1rem; height: 480px;
}
.hero-img-main { grid-row: span 2; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hero-img-sm { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hero-img-main img, .hero-img-sm img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease;
}
.hero-img-main:hover img, .hero-img-sm:hover img { transform: scale(1.06); }

/* ── Shared section ── */
section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block; font-size: .72rem; font-weight: 600;
  color: var(--teal); letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: .65rem;
}
.section-header h2 { font-size: clamp(1.8rem,4vw,2.8rem); color: var(--dark); margin-bottom: .65rem; }
.section-header p { color: var(--text-light); font-size: .95rem; max-width: 500px; margin: 0 auto; }

/* ── Categories ── */
.categories { background: var(--white); }
.categories-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  gap: 1.15rem; max-width: 1200px; margin: 0 auto;
}
.category-card {
  background: var(--cream); border-radius: var(--radius); padding: 1.5rem 1rem;
  text-align: center; cursor: pointer; transition: var(--transition);
  border: 2px solid transparent; text-decoration: none; color: var(--dark);
}
.category-card:hover {
  border-color: var(--pink); background: var(--pink-light);
  transform: translateY(-4px); box-shadow: var(--shadow);
}
.category-emoji { font-size: 2.4rem; margin-bottom: .6rem; display: block; }
.category-card h3 { font-family: 'Poppins',sans-serif; font-size: .88rem; font-weight: 600; margin-bottom: .2rem; }
.category-card p { font-size: .73rem; color: var(--text-light); }

/* ── Products ── */
.products-section { background: var(--cream); }
.filter-bar {
  display: flex; justify-content: center; gap: .7rem;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .5rem 1.25rem; border-radius: 30px;
  border: 2px solid rgba(233,30,140,.2);
  background: transparent; color: var(--text);
  font-size: .82rem; font-weight: 500; cursor: pointer;
  transition: var(--transition); font-family: 'Poppins',sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--pink); border-color: var(--pink); color: #fff;
}
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(255px,1fr));
  gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-img-wrap { position: relative; height: 240px; overflow: hidden; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--pink); color: #fff;
  font-size: .68rem; font-weight: 700;
  padding: .22rem .6rem; border-radius: 20px; letter-spacing: .5px;
}
.badge-teal { background: var(--teal) !important; }
.badge-gold { background: var(--gold) !important; }
.product-info { padding: 1.2rem; }
.product-cat {
  font-size: .68rem; font-weight: 600;
  color: var(--teal); text-transform: uppercase;
  letter-spacing: 1.2px; margin-bottom: .3rem;
}
.product-name {
  font-size: .98rem; font-weight: 600; color: var(--dark);
  margin-bottom: .95rem; font-family: 'Playfair Display',serif;
}
.product-actions { display: flex; gap: .6rem; }
.btn-order {
  flex: 1; justify-content: center; font-size: .8rem;
  padding: .55rem .8rem; background: #25D366; color: #fff;
  border: none; border-radius: 30px; cursor: pointer;
  font-family: 'Poppins',sans-serif; font-weight: 600;
  transition: var(--transition); display: flex; align-items: center;
  gap: .4rem; text-decoration: none;
}
.btn-order:hover {
  background: #1db954; transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37,211,102,.35);
}
.btn-ig {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid rgba(233,30,140,.2); background: transparent;
  cursor: pointer; display: flex; align-items: center;
  justify-content: center; font-size: 1rem;
  transition: var(--transition); text-decoration: none; color: var(--pink);
}
.btn-ig:hover { background: var(--pink); border-color: var(--pink); color: #fff; }

/* ── About ── */
.about { background: var(--white); }
.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; height: 400px; }
.about-img { border-radius: var(--radius); overflow: hidden; }
.about-img:first-child { grid-row: span 2; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-tag { text-align: left; }
.about-content h2 { font-size: clamp(1.8rem,3.5vw,2.5rem); color: var(--dark); margin-bottom: 1rem; }
.about-content p { color: var(--text-light); line-height: 1.8; margin-bottom: .8rem; }
.about-features { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.5rem; }
.feature-item { display: flex; align-items: center; gap: .75rem; font-size: .88rem; font-weight: 500; }
.feature-icon {
  width: 36px; height: 36px; background: var(--pink-light);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}

/* ── Instagram banner ── */
.insta-banner {
  background: linear-gradient(135deg, var(--pink) 0%, #c91577 100%);
  color: #fff; text-align: center; padding: 5rem 2rem;
}
.insta-banner h2 { font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: .75rem; }
.insta-banner p { font-size: 1.05rem; opacity: .9; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.insta-banner .btn-white { padding: .85rem 2.2rem; font-size: 1rem; margin: 0 .5rem; }

/* ── Footer ── */
footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 3.5rem 2rem 1.5rem; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
.footer-brand .brand-name {
  font-family: 'Playfair Display',serif;
  font-size: 1.5rem; color: var(--pink); margin-bottom: .4rem;
}
.footer-brand .brand-tagline {
  font-size: .7rem; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: .88rem; line-height: 1.75; max-width: 280px; margin-bottom: 1.25rem; }
.social-links { display: flex; gap: .7rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex;
  align-items: center; justify-content: center;
  text-decoration: none; font-size: 1rem; color: #fff;
  transition: var(--transition);
}
.social-link:hover { background: var(--pink); transform: translateY(-3px); }
.footer-col h4 {
  font-family: 'Poppins',sans-serif; font-size: .85rem; font-weight: 600;
  color: #fff; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1.5px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  text-decoration: none; color: rgba(255,255,255,.55);
  font-size: .83rem; transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem; text-align: center;
  font-size: .78rem; color: rgba(255,255,255,.35);
  max-width: 1200px; margin: 0 auto;
}

/* ── Floating WhatsApp ── */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem; text-decoration: none; color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition); animation: waPulse 2.2s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); animation: none; box-shadow: 0 6px 28px rgba(37,211,102,.55); }

/* ── Animations ── */
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.7); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp .55s ease forwards; }
.hidden { display: none !important; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-subtitle { max-width: 100%; margin: 0 auto 2rem; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-images { height: 320px; max-width: 400px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-images { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn-outline { display: none; }
}
@media (max-width: 600px) {
  section { padding: 3rem 1.25rem; }
  .navbar { padding: 1rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .products-grid { grid-template-columns: repeat(auto-fill,minmax(160px,1fr)); gap: 1rem; }
  .product-img-wrap { height: 180px; }
  .hero-images { height: 260px; }
  .categories-grid { grid-template-columns: repeat(3,1fr); }
}
