@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Nueva paleta de colores inspirada en la imagen */
  --turquoise: #00D4D8;
  --turquoise-light: #5CE1E6;
  --turquoise-dark: #00A8AC;
  --fuschia: #E91E8C;
  --fuschia-light: #FF5CB3;
  --fuschia-dark: #C70064;
  --coral: #FF6B6B;
  --coral-light: #FF8C8C;
  --orange: #FF9F66;
  --yellow: #FDB931;
  --yellow-light: #FFD666;
  --green: #4A9B8E;
  --green-light: #6FBFAF;
  --purple: #B565D8;
  --purple-light: #D89EF0;
  --text: #1A2332;
  --text-light: #4A5568;
  --muted: #718096;
  --card: #ffffff;
  --border: #E2E8F0;
  --shadow: 0 20px 60px rgba(0, 212, 216, 0.15);
  --shadow-lg: 0 25px 80px rgba(233, 30, 140, 0.25);
}

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

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #FAFBFC;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.2;
}

p {
  margin: 0;
}

/* Reset para listas - los estilos específicos los sobreescribirán */

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: white;
  border-bottom: 1px solid #E5E7EB;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.topbar.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 3vw, 18px);
  padding-top: 18px;
  padding-bottom: 18px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.topbar.scrolled .container {
  padding-top: 12px;
  padding-bottom: 12px;
}

.branding h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  color: var(--text);
  transition: all 0.3s ease;
  font-weight: 700;
}

.branding .pretitle {
  margin: 0;
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  color: var(--text-light);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--text);
  background: #F3F4F6;
}

.header-cta {
  font-weight: 700;
  text-decoration: none;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--fuschia), var(--fuschia-dark));
  border-radius: 10px;
  color: white;
  transition: all 0.2s ease;
  border: none;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(233, 30, 140, 0.25);
  white-space: nowrap;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 140, 0.35);
  background: linear-gradient(135deg, var(--fuschia-dark), var(--fuschia));
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 25;
  transition: all 0.3s ease;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle:hover span {
  background: var(--fuschia);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

.mobile-cta {
  display: none;
}

.desktop-cta {
  display: inline-flex;
}

/* Menu overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 19;
}

body.menu-open::after {
  opacity: 1;
  visibility: visible;
}

main {
  position: relative;
  z-index: 1;
}

main section {
  scroll-margin-top: 80px;
}

.hero {
  padding: 120px 0 100px;
  background: white;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin: 16px 0 20px;
  color: var(--text);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-text h2 span {
  color: var(--fuschia);
  display: block;
}

.lead {
  color: var(--text-light);
  max-width: 540px;
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 32px;
}

.pretitle {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  background: #F0F9FF;
  color: var(--turquoise-dark);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.75rem;
  border: 1px solid #B3E5FC;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
  color: var(--text-light);
}

.hero-bullets li {
  display: flex;
  align-items: center;
  background: #F9FAFB;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.hero-bullets li:hover {
  background: white;
  border-color: var(--fuschia-light);
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(233, 30, 140, 0.1);
}

.hero-bullets li::before {
  content: '✓';
  margin-right: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fuschia);
  background: linear-gradient(135deg, var(--fuschia-light), var(--fuschia));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  border: 2px solid transparent;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  font-size: 1rem;
}

.btn.primary {
  background: linear-gradient(135deg, var(--fuschia), var(--fuschia-dark));
  color: white;
  box-shadow: 0 4px 14px rgba(233, 30, 140, 0.25);
  border: none;
  font-weight: 700;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 140, 0.35);
  background: linear-gradient(135deg, var(--fuschia-dark), var(--fuschia));
}

.btn.ghost {
  background: white;
  border: 2px solid #E5E7EB;
  color: var(--text);
}

.btn.ghost:hover {
  background: #F9FAFB;
  border-color: var(--fuschia-light);
  color: var(--fuschia);
  transform: translateY(-2px);
}

.btn.secondary {
  background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark));
  color: white;
  box-shadow: 0 4px 14px rgba(0, 212, 216, 0.25);
  border: none;
  font-weight: 700;
}

.btn.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 216, 0.35);
  background: linear-gradient(135deg, var(--turquoise-dark), var(--turquoise));
}

.btn.outline {
  border: 2px solid #E5E7EB;
  color: var(--text);
  background: white;
}

.btn.outline:hover {
  background: #F9FAFB;
  border-color: var(--turquoise);
  color: var(--turquoise);
  transform: translateY(-2px);
}

.price-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(135deg, #FFF5F7, #FFF0F6);
  border: 2px solid var(--fuschia-light);
  border-radius: 12px;
  padding: 18px 24px;
  margin-top: 16px;
  box-shadow: 0 2px 8px rgba(233, 30, 140, 0.1);
  max-width: 260px;
}

.price-label {
  font-weight: 600;
  color: var(--fuschia);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

.price-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--fuschia);
}

.price-note {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-visual {
  display: grid;
  gap: 16px;
  position: relative;
}

.hero-slider {
  position: relative;
  overflow: visible;
  background: transparent;
  aspect-ratio: 1 / 1;
  transform-style: preserve-3d;
  max-width: 100%;
}

.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1.2s ease, filter 0.3s ease;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  animation: float-gentle 6s ease-in-out infinite;
}

.hero-slider img.active {
  opacity: 1;
}

.hero-slider img:hover {
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.25));
}

@keyframes float-gentle {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}


.content-block {
  padding: 80px 0;
}

.content-block.alt {
  background: #F9FAFB;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

.text h3,
.list-card h4,
.brands h3,
.moments h3,
.delivery h3,
.cta h3,
.content-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.brands h3,
.moments h3 {
  text-align: center;
  margin-bottom: 24px;
}

.cta h3 {
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.muted {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.content-block p {
  line-height: 1.7;
  color: var(--text-light);
  font-size: 1.05rem;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pill {
  background: #FFF0F6;
  border: 2px solid var(--fuschia-light);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--fuschia);
  box-shadow: 0 2px 8px rgba(233, 30, 140, 0.1);
  transition: all 0.3s ease;
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 30, 140, 0.2);
  background: white;
}

.list-card {
  background: white;
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(233, 30, 140, 0.12);
  border-color: var(--fuschia-light);
}

.list-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
  color: var(--text-light);
}

.list-card li::before {
  content: '🌸';
  margin-right: 10px;
}

.list-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.list-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.list-columns li::before {
  content: '✨';
  margin-right: 10px;
}

/* Products Carousel */
.products-carousels-container {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.products-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.products-carousel::before,
.products-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.products-carousel::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.products-carousel::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.products-track {
  display: flex;
  gap: 24px;
  animation: scroll-infinite 60s linear infinite;
  width: max-content;
}

.products-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 2));
  }
}

.product-card {
  flex: 0 0 300px;
  background: white;
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(233, 30, 140, 0.12);
  border-color: var(--fuschia-light);
}

.product-image-wrapper {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F9FAFB;
  border-radius: 12px;
  border: 2px solid #E5E7EB;
  margin-bottom: 8px;
  padding: 20px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-card:hover .product-image-wrapper {
  background: linear-gradient(135deg, #FFF5F7, #FFF0F6);
  border-color: var(--fuschia-light);
  transform: scale(1.02);
}

.product-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fuschia);
  margin: 0 0 4px 0;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}

.product-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

.stats {
  padding: 80px 0;
  background: white;
  position: relative;
  overflow: hidden;
  background-image: url('../img/productos.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(249, 250, 252, 0.92) 50%,
    rgba(255, 255, 255, 0.95) 100%
  );
  z-index: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid rgba(229, 231, 235, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(233, 30, 140, 0.2);
  border-color: var(--fuschia-light);
  background: rgba(255, 255, 255, 1);
}

.stat-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--fuschia);
  margin-bottom: 8px;
}

.stat-card p {
  color: var(--text);
  font-weight: 600;
  font-size: 1.1rem;
}

.brands {
  padding: 80px 0;
  background: #F9FAFB;
  text-align: center;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.brand-grid span {
  background: white;
  padding: 18px 16px;
  border-radius: 12px;
  border: 2px solid #E5E7EB;
  font-weight: 700;
  color: var(--text);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.brand-grid span:hover {
  border-color: var(--fuschia-light);
  color: var(--fuschia);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(233, 30, 140, 0.15);
}

.moments {
  padding: 80px 0;
  background: white;
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.moment-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: center;
  background: #F9FAFB;
  border-radius: 16px;
  padding: 20px;
  border: 2px solid #E5E7EB;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.moment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(233, 30, 140, 0.12);
  border-color: var(--fuschia-light);
  background: white;
}

.moment-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #E5E7EB;
}

.delivery {
  padding: 80px 0;
  background: #F9FAFB;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.delivery .card {
  background: white;
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.delivery .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(233, 30, 140, 0.12);
  border-color: var(--fuschia-light);
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: white;
  position: relative;
}

.faq h3 {
  text-align: center;
  margin-bottom: 16px;
}

.faq .muted {
  text-align: center;
  margin-bottom: 48px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--fuschia), var(--turquoise));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: var(--fuschia-light);
  box-shadow: 0 4px 16px rgba(233, 30, 140, 0.1);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: var(--fuschia);
  box-shadow: 0 8px 24px rgba(233, 30, 140, 0.15);
  background: linear-gradient(to bottom, #FFF5F7 0%, white 5%);
}

.faq-item.active::before {
  transform: scaleX(1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  color: var(--fuschia);
}

.faq-question:focus {
  outline: none;
  color: var(--fuschia);
}

.faq-question-text {
  flex: 1;
  line-height: 1.5;
}

.faq-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFF5F7, #FFF0F6);
  border: 2px solid var(--fuschia-light);
  border-radius: 50%;
  color: var(--fuschia);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.faq-icon svg {
  width: 20px;
  height: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon .faq-icon-plus {
  opacity: 1;
  transform: rotate(0deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon .faq-icon-minus {
  opacity: 0;
  transform: rotate(90deg);
  position: absolute;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
  background: linear-gradient(135deg, var(--fuschia), var(--fuschia-dark));
  border-color: var(--fuschia);
  color: white;
  transform: scale(1.1);
}

.faq-item.active .faq-icon .faq-icon-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-item.active .faq-icon .faq-icon-minus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer-wrapper {
  max-height: 2000px;
}

.faq-answer {
  padding: 0 24px 24px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.faq-item.active .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  margin-bottom: 1em;
  font-size: 0.95rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  padding-left: 20px;
  margin: 0;
  color: var(--text-light);
  list-style-type: none;
  position: relative;
}

.faq-answer ul li {
  margin-bottom: 10px;
  line-height: 1.7;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
}

.faq-answer ul li::before {
  content: '✨';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9rem;
}

.faq-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .faq-list-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  .faq-answer ul li {
    font-size: 0.9rem;
  }
}


.cta {
  padding: 100px 0;
  background: var(--fuschia);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-card {
  position: relative;
  z-index: 1;
}

.cta-content {
  max-width: 600px;
}

.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: var(--fuschia);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: none;
}

.cta-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: white;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta .btn.cta-primary {
  background: white;
  color: var(--fuschia);
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.cta .btn.cta-primary:hover {
  background: #F9FAFB;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta .btn.cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta .btn.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  padding: 80px 0;
  background: var(--fuschia);
  color: white;
  position: relative;
  overflow: hidden;
}

.footer-content {
  text-align: left;
  max-width: 600px;
}

.footer-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: var(--fuschia);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: none;
}

.footer-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: white;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.footer-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: white;
  opacity: 0.95;
  margin: 0;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0;
  }

  .footer-content {
    text-align: center;
  }

  .footer-content h4 {
    font-size: 2rem;
  }

  .footer-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 50px 0;
  }

  .footer-content h4 {
    font-size: 1.8rem;
  }

  .footer-text {
    font-size: 0.9rem;
  }
}

.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 18px 28px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 30;
  animation: bounce-whatsapp 2s infinite;
}

@keyframes bounce-whatsapp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsapp-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

/* Scroll animations - Initial state */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
}

/* Scroll animations - Visible state */
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Specific transitions for animated elements */
.stat-card.animate-on-scroll {
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              all 0.3s ease;
}

.moment-card.animate-on-scroll,
.list-card.animate-on-scroll,
.delivery .card.animate-on-scroll {
  transition: opacity 0.7s ease, transform 0.7s ease,
              all 0.3s ease;
}

.brand-grid span.animate-on-scroll {
  transition: opacity 0.6s ease, transform 0.6s ease,
              all 0.3s ease;
}

/* Stagger animation delays for multiple elements */
.stat-card.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.stat-card.animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.stat-card.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.stat-card.animate-on-scroll:nth-child(4) { transition-delay: 0.45s; }

.moment-card.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.moment-card.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.moment-card.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }

/* Tablet breakpoint */
@media (max-width: 1024px) {
  .container {
    padding: 0 clamp(16px, 4vw, 40px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stat-card {
    padding: 24px 18px;
  }

  .stat-number {
    font-size: 3rem;
  }

  .products-carousels-container {
    gap: 24px;
  }

  .product-card {
    flex: 0 0 280px;
  }

  .product-image-wrapper {
    height: 220px;
    padding: 18px;
  }

  .products-carousel::before,
  .products-carousel::after {
    width: 60px;
  }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .topbar .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .topbar.scrolled .container {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .branding h1 {
    font-size: 1.6rem;
  }

  .topbar.scrolled .branding h1 {
    font-size: 1.4rem;
  }

  .branding .pretitle {
    font-size: 0.7rem;
  }

  /* Show hamburger menu */
  .menu-toggle {
    display: flex;
  }

  /* Hide desktop CTA */
  .desktop-cta {
    display: none;
  }

  /* Mobile nav styles */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 20;
    max-height: 100vh;
    overflow-y: auto;
  }

  .nav.active {
    transform: translateY(0);
  }

  .nav a {
    font-size: 1rem;
    padding: 16px 0;
    border-bottom: 1px solid #F3F4F6;
    border-radius: 0;
    transition: all 0.2s ease;
  }

  .nav a:hover {
    background: transparent;
    color: var(--fuschia);
    padding-left: 8px;
  }

  .nav a:not(.mobile-cta):last-of-type {
    border-bottom: none;
  }

  /* Show mobile CTA inside nav */
  .mobile-cta {
    display: block !important;
    margin-top: 24px;
    padding: 14px 24px !important;
    text-align: center;
    border-radius: 10px;
    border-bottom: none !important;
  }

  .mobile-cta:hover {
    padding: 14px 24px !important;
    transform: translateY(-2px);
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 20px 16px;
    gap: 16px;
  }

  .faq-question-text {
    line-height: 1.4;
  }

  .faq-icon {
    width: 36px;
    height: 36px;
  }

  .faq-icon svg {
    width: 18px;
    height: 18px;
  }

  .faq-item.active .faq-answer-wrapper {
    max-height: 2000px;
  }

  .faq-answer {
    padding: 0 16px 20px;
  }

  .faq-answer ul {
    padding-left: 16px;
  }

  .faq-answer ul li {
    font-size: 0.9rem;
    padding-left: 20px;
  }

  .hero {
    padding: 100px 0 60px;
    margin-top: 0;
  }

  .hero-text h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-top: 24px;
  }

  .lead {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .price-chip {
    margin-top: 20px;
  }

  .cta-row {
  }

  .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .price-chip {
    max-width: 100%;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .list-columns {
    grid-template-columns: 1fr;
  }

  .products-carousels-container {
    gap: 20px;
  }

  .product-card {
    flex: 0 0 260px;
    padding: 24px 20px;
  }

  .product-image-wrapper {
    height: 200px;
    padding: 16px;
  }

  .product-title {
    font-size: 0.85rem;
  }

  .product-card h4 {
    font-size: 0.9rem;
  }

  .products-carousel::before,
  .products-carousel::after {
    width: 40px;
  }

  .products-track {
    animation-duration: 50s;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .moment-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .moment-card img {
    margin: 0 auto;
    width: 80px;
    height: 80px;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-content {
    max-width: 100%;
    text-align: center;
  }

  .cta-badge {
    margin: 0 auto 24px;
  }

  .cta-content h3 {
    text-align: center;
  }

  .cta-description {
    text-align: center;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .cta .btn.cta-primary,
  .cta .btn.cta-secondary {
    width: 100%;
    justify-content: center;
  }

  /* Disable 3D effects on mobile */
  .hero-slider {
    transform: none !important;
  }

  .hero-slider img {
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
    animation: none;
  }

  .whatsapp-btn {
    bottom: 16px;
    right: 16px;
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .content-block {
    padding: 60px 0;
  }

  .stats {
    padding: 60px 0;
  }

  .brands {
    padding: 60px 0;
  }

  .moments {
    padding: 60px 0;
  }

  .delivery {
    padding: 60px 0;
  }

  .faq {
    padding: 60px 0;
  }

  .cta {
    padding: 80px 0;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .topbar .container {
    padding-left: 12px;
    padding-right: 12px;
    gap: 12px;
  }

  .hero {
    padding: 110px 0 50px;
  }

  .hero-text h2 {
    font-size: 1.8rem;
  }

  .hero-bullets {
    font-size: 0.9rem;
    gap: 10px;
  }

  .hero-bullets li {
    padding: 12px 16px;
  }

  .lead {
    font-size: 1rem;
  }

  .products-carousels-container {
    gap: 16px;
  }

  .product-card {
    flex: 0 0 240px;
    padding: 20px 16px;
    gap: 10px;
  }

  .product-image-wrapper {
    height: 180px;
    padding: 14px;
  }

  .product-title {
    font-size: 0.8rem;
  }

  .product-card h4 {
    font-size: 0.85rem;
  }

  .product-card p {
    font-size: 0.8rem;
  }

  .products-carousel::before,
  .products-carousel::after {
    width: 30px;
  }

  .products-track {
    animation-duration: 45s;
    gap: 16px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .price-chip {
    font-size: 0.9rem;
    padding: 16px 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .brand-grid {
    grid-template-columns: 1fr;
  }

  .brand-grid span {
    font-size: 0.85rem;
    padding: 12px 10px;
  }

  .moment-card {
    padding: 16px;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 16px 14px;
    gap: 12px;
  }

  .faq-question-text {
    line-height: 1.45;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
  }

  .faq-icon svg {
    width: 16px;
    height: 16px;
  }

  .faq-item.active .faq-answer-wrapper {
    max-height: 2500px;
  }

  .faq-answer {
    padding: 0 14px 16px;
  }

  .faq-answer p {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .faq-answer ul {
    padding-left: 14px;
  }

  .faq-answer ul li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    padding-left: 18px;
  }
}

/* Ultra small screens */
@media (max-width: 360px) {
  .hero-text h2 {
    font-size: 1.6rem;
  }

  .branding h1 {
    font-size: 1.4rem;
  }

  .nav a {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
}
