:root {
  --pink-deep: #c4507a;
  --pink-main: #e8829e;
  --pink-soft: #f2a6bc;
  --pink-light: #fce4ec;
  --pink-pale: #fef2f5;
  --pink-cream: #fff8fa;
  --gold: #c9a96e;
  --gold-light: #e8d5a8;
  --text-dark: #3a2434;
  --text-body: #5c3d4e;
  --text-light: #8a6578;
  --white: #ffffff;
  --shadow-soft: 0 4px 20px rgba(196,80,122,0.1);
  --shadow-card: 0 8px 32px rgba(196,80,122,0.12);
  --shadow-hover: 0 12px 40px rgba(196,80,122,0.2);
  --radius: 20px;
  --radius-sm: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Quicksand', sans-serif;
  color: var(--text-body);
  background: var(--pink-cream);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ===== ANIMATIONS ===== */
@keyframes floatUp {
  from { opacity:0; transform: translateY(40px); }
  to { opacity:1; transform: translateY(0); }
}
@keyframes floatIn {
  from { opacity:0; transform: scale(0.95) translateY(20px); }
  to { opacity:1; transform: scale(1) translateY(0); }
}
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes bobble {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes sparkle {
  0%,100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== DECORATIVE ELEMENTS ===== */
.sparkle-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: sparkle 2s ease-in-out infinite;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,248,250,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232,130,158,0.15);
  transition: all 0.4s;
}
.navbar.scrolled {
  background: rgba(255,248,250,0.95);
  box-shadow: 0 2px 20px rgba(196,80,122,0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  height: 65px;
  max-width: 280px;
  object-fit: contain;
  transition: transform 0.3s;
}
.nav-logo:hover { transform: scale(1.05); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--pink-main);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--pink-deep); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--pink-main), var(--pink-deep));
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(196,80,122,0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,80,122,0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  margin: 6px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, var(--pink-cream) 0%, var(--pink-pale) 40%, var(--pink-light) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,130,158,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-logo {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  margin-bottom: 32px;
  animation: floatIn 1s ease-out, bobble 4s ease-in-out 1s infinite;
  box-shadow: 0 10px 40px rgba(196,80,122,0.2);
}
.hero-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--pink-deep);
  margin-bottom: 12px;
  animation: floatUp 0.8s ease-out 0.2s both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 24px;
  animation: floatUp 0.8s ease-out 0.4s both;
  line-height: 1.5;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 550px;
  margin: 0 auto 40px;
  animation: floatUp 0.8s ease-out 0.6s both;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: floatUp 0.8s ease-out 0.8s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink-main), var(--pink-deep));
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 25px rgba(196,80,122,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(196,80,122,0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--pink-deep);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--pink-soft);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover {
  background: var(--pink-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

/* ===== FEATURES BAR ===== */
.features-bar {
  background: white;
  padding: 40px 24px;
  border-top: 1px solid rgba(232,130,158,0.1);
  border-bottom: 1px solid rgba(232,130,158,0.1);
}
.features-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 4px;
}
.feature-label {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}
.feature-desc {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ===== SECTION COMMON ===== */
section {
  padding: 80px 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  font-family: 'Great Vibes', cursive;
  font-size: 1.5rem;
  color: var(--pink-main);
  margin-bottom: 4px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text-dark);
  margin-bottom: 12px;
}
.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: white;
  padding: 80px 24px;
}
.steps-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step-card {
  background: var(--pink-pale);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  flex: 1;
  min-width: 240px;
  max-width: 300px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  background: white;
}
.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--pink-main), var(--pink-deep));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(196,80,122,0.3);
}
.step-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 700;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}
.step-connector {
  font-size: 1.5rem;
  padding: 0 12px;
  color: var(--pink-main);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .steps-grid {
    flex-direction: column;
    gap: 32px;
  }
  .step-connector {
    transform: rotate(90deg);
    padding: 0;
  }
  .step-card {
    max-width: 100%;
  }
}

/* ===== CATALOG ===== */
.catalog { background: var(--pink-pale); }

.catalog-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--pink-soft);
  border-radius: 50px;
  background: white;
  color: var(--text-body);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--pink-main), var(--pink-deep));
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196,80,122,0.25);
}

.catalog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(201,169,110,0.3);
}

.card-visual {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.card-gradient {
  position: absolute;
  inset: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.card-body {
  padding: 24px;
}
.card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 700;
}
.card-includes {
  margin-bottom: 16px;
}
.card-includes p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 4px;
}
.card-includes p::before {
  content: '✦';
  color: var(--pink-main);
  font-size: 0.7rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.card-decoration {
  padding: 12px 16px;
  background: var(--pink-pale);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.card-decoration p {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--pink-light);
}
.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pink-deep);
}
.card-price-note {
  font-size: 0.72rem;
  color: var(--text-light);
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
}
.card-order {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}
.card-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37,211,102,0.4);
}

/* ===== OCCASIONS ===== */
.occasions {
  background: linear-gradient(170deg, white 0%, var(--pink-pale) 100%);
  padding: 80px 24px;
}
.occasions-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.occasion-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  cursor: default;
  border: 2px solid transparent;
}
.occasion-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--pink-soft);
}
.occasion-emoji {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s;
}
.occasion-card:hover .occasion-emoji {
  transform: scale(1.2);
}
.occasion-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 700;
}
.occasion-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== DELIVERY ===== */
.delivery {
  background: white;
}
.delivery-container {
  max-width: 900px;
  margin: 0 auto;
}
.delivery-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.delivery-card {
  background: var(--pink-pale);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}
.delivery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.delivery-icon { font-size: 2.5rem; margin-bottom: 12px; }
.delivery-city {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 700;
}
.delivery-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pink-deep);
}
.delivery-note {
  text-align: center;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-pale));
  padding: 20px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-body);
}

/* ===== ABOUT ===== */
.about {
  background: linear-gradient(170deg, var(--pink-cream) 0%, var(--pink-pale) 100%);
}
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.about-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 24px;
}
.about-text strong {
  color: var(--pink-deep);
}
.about-extras {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.extra-chip {
  background: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
}
.extra-chip:hover {
  transform: translateY(-2px);
  background: var(--pink-light);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: white;
  padding: 80px 24px;
  overflow: hidden;
}
.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  gap: 24px;
}
.testimonial-card {
  min-width: 100%;
  background: var(--pink-pale);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-soft);
  box-sizing: border-box;
}
.testimonial-stars {
  font-size: 1.3rem;
  margin-bottom: 16px;
  letter-spacing: 4px;
}
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--pink-main), var(--pink-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(196,80,122,0.2);
}
.testimonial-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
}
.testimonial-product {
  font-size: 0.82rem;
  color: var(--pink-deep);
  font-weight: 600;
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--pink-soft);
  background: white;
  color: var(--pink-deep);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
}
.testimonial-btn:hover {
  background: linear-gradient(135deg, var(--pink-main), var(--pink-deep));
  color: white;
  border-color: transparent;
  transform: scale(1.1);
}
.testimonial-dots {
  display: flex;
  gap: 8px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink-soft);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.testimonial-dot.active {
  background: var(--pink-deep);
  transform: scale(1.3);
}

/* ===== FAQ ===== */
.faq {
  background: linear-gradient(170deg, var(--pink-cream) 0%, var(--pink-pale) 100%);
  padding: 80px 24px;
}
.faq-container {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
}
.faq-item:hover {
  box-shadow: var(--shadow-card);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  gap: 16px;
  transition: color 0.3s;
}
.faq-question:hover {
  color: var(--pink-deep);
}
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--pink-main);
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.4s;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
  background: linear-gradient(170deg, var(--pink-pale) 0%, white 100%);
  padding: 80px 24px;
}
.instagram-grid {
  max-width: 1100px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.insta-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.insta-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
  z-index: 2;
}
.insta-card .insta-gradient {
  position: absolute;
  inset: 0;
}
.insta-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  z-index: 1;
}
.insta-content .insta-emoji {
  font-size: 2.8rem;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}
.insta-content p {
  font-size: 0.75rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.4;
  opacity: 0.8;
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.insta-card:hover .insta-overlay {
  opacity: 1;
}
.insta-overlay span {
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}
.instagram-cta {
  text-align: center;
}
.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 6px 25px rgba(131,58,180,0.35);
}
.instagram-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(131,58,180,0.5);
}
.insta-icon {
  flex-shrink: 0;
}
.instagram-handle {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
}

@media (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .insta-content p {
    display: none;
  }
  .insta-content .insta-emoji {
    font-size: 2rem;
  }
}

/* ===== CTA FINAL ===== */
.cta-section {
  background: linear-gradient(135deg, var(--pink-main), var(--pink-deep));
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white;
  margin-bottom: 16px;
}
.cta-desc {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--pink-deep);
  padding: 18px 42px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}
.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(0,0,0,0.2);
}

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 24px 32px;
  text-align: center;
}
.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}
.footer-brand {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: var(--pink-soft);
  margin-bottom: 12px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--pink-soft); }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--pink-main);
  transform: translateY(-3px);
}
.footer-copy {
  margin-top: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.3s;
  animation: pulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 0 0 var(--radius) var(--radius);
  }
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .hero-logo {
    width: 180px; height: 180px;
  }
  .card-visual { height: 140px; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--pink-pale); }
::-webkit-scrollbar-thumb { background: var(--pink-soft); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink-main); }
