/* ===== SEASONAL BANNER ===== */
.seasonal-banner {
  position: relative;
  margin-top: 81px;
  overflow: hidden;
  padding: 24px;
  text-align: center;
  transition: all 0.5s;
}
.seasonal-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.3) 20px,
    rgba(255,255,255,0.3) 40px
  );
}
.seasonal-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.seasonal-emoji {
  font-size: 3rem;
  animation: bobble 2s ease-in-out infinite;
  flex-shrink: 0;
}
.seasonal-info {
  text-align: left;
}
.seasonal-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: white;
  font-weight: 700;
  margin-bottom: 4px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.seasonal-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.seasonal-countdown {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 8px 12px;
  min-width: 52px;
}
.countdown-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.countdown-label {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 2px;
}
.seasonal-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  flex-shrink: 0;
  white-space: nowrap;
}
.seasonal-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.seasonal-close {
  position: absolute;
  top: 8px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 5;
  transition: color 0.2s;
  line-height: 1;
}
.seasonal-close:hover {
  color: white;
}

/* ===== 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%);
}
.seasonal-banner + .hero {
  padding-top: 80px;
}
.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;
}

/* ===== 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);
}

/* ===== 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;
}

/* ===== CATALOG ===== */
.catalog { background: var(--pink-pale); }
.catalog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

/* ===== 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;
}

/* ===== 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);
}
