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

:root {
  --pink-primary: #f5c6cb;
  --pink-rose: #d4a5a5;
  --pink-light: #fce4e8;
  --sparkle-pink: #ff4d8d;
  --vibrant-pink: #ff1a75;
  --soft-pink: #ff85b3;
  --gold-sparkle: #ffd166;
  --rose-gold: #ff9a8b;
  --pearl-white: #fffaf5;
  --crystal-white: #ffffff;
  --diamond-shine: #f0f8ff;
  --silver-mist: #f8f9fa;
  --sparkle-purple: #c77dff;
  --deep-rose: #ff6b9d;
  --glitter-gold: #ffb347;
  --cream: #faf8f5;
  --cream-dark: #f0ebe3;
  --gray-soft: #8b8680;
  --gray-dark: #4a4541;
  --rosy-gold: #c9a690;
  --rosy-gold-bright: #d8b4a0;
  --white: #ffffff;
  --black: #1a1614;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, var(--pearl-white) 0%, var(--diamond-shine) 50%, var(--silver-mist) 100%);
  color: #5a4a42;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.001em;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.08;
  mix-blend-mode: overlay;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 5vw, 3rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 245, 0.98) 100%);
  backdrop-filter: blur(30px) saturate(180%);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 40px rgba(255, 77, 141, 0.15);
  
}

.header.scrolled {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 245, 0.99) 100%);
  box-shadow: 0 10px 50px rgba(255, 77, 141, 0.2);
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--sparkle-pink), var(--rose-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
  letter-spacing: 0.05em;
  position: relative;
}

.logo.serif {
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-shadow: 0 0 15px rgba(255, 105, 180, 0.7); /* hot pink */
    filter: drop-shadow(0 0 8px rgba(255, 105, 180, 0.5));
}

.glow {
    color: #ffb347;
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    text-shadow: 0 0 15px rgba(255, 179, 71, 0.7);
    filter: drop-shadow(0 0 8px rgba(255, 179, 71, 0.5));
}

.nav-desktop {
  display: none;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav-desktop a {
  color: var(--gray-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sparkle-pink), var(--gold-sparkle));
  
}

.nav-desktop a:hover {
  color: var(--sparkle-pink);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sparkle-pink), var(--rose-gold), var(--gold-sparkle), var(--sparkle-purple));
  background-size: 300% 100%;
  animation: shimmerProgress 3s ease infinite;
  z-index: 1001;
  width: 0%;
  box-shadow: 0 0 20px rgba(255, 77, 141, 0.6);
}

@keyframes shimmerProgress {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(6rem, 15vh, 10rem) clamp(1rem, 5vw, 3rem) clamp(3rem, 8vh, 5rem);
}

.aurora-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.aurora-layer {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: linear-gradient(45deg, 
    rgba(255, 77, 141, 0.25) 0%,
    rgba(255, 209, 102, 0.2) 25%,
    rgba(199, 125, 255, 0.3) 50%,
    rgba(255, 154, 139, 0.25) 75%,
    rgba(255, 77, 141, 0.2) 100%);
  animation: aurora1 20s ease-in-out infinite;
}

.aurora-layer:nth-child(2) {
  background: linear-gradient(135deg, 
    rgba(212, 165, 165, 0.25) 0%,
    rgba(245, 198, 203, 0.2) 33%,
    rgba(252, 228, 232, 0.3) 66%,
    rgba(212, 165, 165, 0.25) 100%);
  animation: aurora2 20s ease-in-out infinite reverse;
}

.aurora-layer:nth-child(3) {
  background: radial-gradient(circle at 30% 50%, 
    rgba(201, 166, 144, 0.2) 0%,
    transparent 50%);
  animation: aurora3 25s ease-in-out infinite;
}

.sparkle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(80vw, 600px);
  height: min(80vw, 600px);
  z-index: 2;
  opacity: 0.4;
  filter: blur(60px);
}


.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text {
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  background: linear-gradient(135deg, var(--sparkle-pink), var(--rose-gold), var(--gold-sparkle));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 40px rgba(255, 77, 141, 0.3);
}

.hero-subtext {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  color: #7a6a62;
  max-width: 600px;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1.7;
}

.hero-cta {
  display: inline-block;
  padding: clamp(1rem, 2.5vw, 1.25rem) clamp(2rem, 5vw, 3rem);
  background: linear-gradient(135deg, var(--soft-pink), var(--pink-rose), var(--sparkle-purple));
  color: var(--pearl-white);
  border-radius: 50px;
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 40px rgba(245, 198, 203, 0.4);
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(245, 198, 203, 0.5);
}

.product-card {
  position: relative;
  width: min(90vw, 300px);
  height: min(90vw, 300px);
  margin: 0 auto;
  perspective: 1000px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.product-card-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 245, 0.98));
  border-radius: 30px;
  padding: clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 30px 90px rgba(255, 77, 141, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245,198,203,0.15) 0%, transparent 70%);
  transform: translateZ(20px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-card-inner::before {
  opacity: 1;
}

.product-image {
  width: 100%;
  height: 60%;
  background: linear-gradient(135deg, var(--soft-pink), var(--pink-rose), var(--sparkle-purple));
  color: var(--crystal-white);
  box-shadow: 0 20px 60px rgba(255, 77, 141, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(3rem, 10vw, 5rem);  
  transform: translateZ(30px);
  
}

.product-info {
  transform: translateZ(40px);
  text-align: center;
}

.product-name {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.5rem;
  color: var(--gray-dark);
}

.product-tagline {
  font-size: clamp(1rem, 2vw, 1rem);
  color: #7a6a62;
  font-weight: 300;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding: clamp(4rem, 10vh, 8rem) clamp(1rem, 5vw, 3rem);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 8vh, 6rem);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-family: 'Prata', serif;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--sparkle-pink), var(--rose-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  color: #8a7a72;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
}

.ingredient-timeline {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2rem 0;
  scrollbar-width: thin;
  scrollbar-color: var(--pink-primary) var(--cream-dark);
}

.ingredient-card {
  flex: 0 0 clamp(280px, 80vw, 350px);
  scroll-snap-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 245, 0.98));
  box-shadow: 0 15px 50px rgba(255, 77, 141, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 2rem);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.ingredient-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 77, 141, 0.1) 70%, rgba(255, 209, 102, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ingredient-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 70px rgba(255, 77, 141, 0.2);
}

.ingredient-card:hover::before {
  opacity: 1;
}

.ingredient-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--soft-pink), var(--pink-rose), var(--sparkle-purple));
  color: var(--crystal-white);
  border-radius: 15px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  
}

.ingredient-name {
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  margin-bottom: 0.5rem;
  color: var(--gray-dark);
}

.ingredient-origin {
  color: #8a7a72;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.ingredient-benefit {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--soft-pink), var(--pink-rose), var(--sparkle-purple));
  color: var(--crystal-white);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.science-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(2rem, 5vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}

.science-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 245, 0.98));
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  box-shadow: 0 15px 50px rgba(255, 77, 141, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.science-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.science-icon {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--soft-pink);
  text-shadow: 0 5px 20px rgba(255, 77, 141, 0.3);
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

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

.science-card h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: 1rem;
  color: var(--gray-dark);
}

.science-card p {
  color: var(--gray-soft);
  font-weight: 400;
  line-height: 1.7;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(2rem, 5vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}

.counter-card {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem);
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(252,228,232,0.3));
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.8);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.counter-card.visible {
  opacity: 1;
  transform: scale(1);
}

.counter-number {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 600;
  color: var(--rosy-gold);
  display: block;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.counter-label {
  color: #8a7a72;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
}

.countdown-container {
  max-width: 800px;
  margin: clamp(3rem, 8vh, 5rem) auto;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(252,228,232,0.4));
  border-radius: 30px;
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.9);
  text-align: center;
}

.countdown-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: clamp(1.5rem, 4vh, 2rem);
  color: var(--gray-dark);
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: clamp(1.5rem, 4vh, 2rem);
}

.countdown-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-value {
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 600;
  color: var(--soft-pink);
  font-variant-numeric: tabular-nums;
  min-width: clamp(60px, 15vw, 100px);
  background: linear-gradient(135deg, var(--pearl-white), var(--diamond-shine));
  border-radius: 15px;
  padding: clamp(0.5rem, 2vw, 1rem);
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  
}

.countdown-value.flip {
  animation: flipNumber 0.6s ease;
}

@keyframes flipNumber {
  0% { transform: rotateX(0); }
  50% { transform: rotateX(90deg); }
  100% { transform: rotateX(0); }
}

.countdown-label {
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  color: #8a7a72;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.stock-bar {
  width: 100%;
  height: 10px;
  background: var(--cream-dark);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}

.stock-fill {
  height: 100%;
  background: linear-gradient(135deg, var(--soft-pink), var(--pink-rose), var(--sparkle-purple));
  border-radius: 10px;
  
  box-shadow: 0 0 20px rgba(245,198,203,0.6);
  position: relative;
  overflow: hidden;
}

.stock-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  to { left: 100%; }
}

.stock-label {
  color: var(--gray-soft);
  font-size: 0.9rem;
  font-weight: 500;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 245, 0.98));
  
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: none;
  border: none;
  text-align: left;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 400;
  color: #8a7a72;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

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

.faq-icon {
  font-size: 1.25rem;
  color: var(--soft-pink);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 clamp(1.25rem, 3vw, 1.75rem);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.75rem);
}

.faq-answer p {
  color: #8a7a72;
  line-height: 1.7;
  font-weight: 400;
}

.gallery-container {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  border-radius: 30px;
  margin: clamp(2rem, 5vh, 3rem) 0;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-caption {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 245, 0.98));
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  max-width: 600px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s ease 0.3s, opacity 0.6s ease 0.3s;
}

.gallery-slide.active .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-caption h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.75rem;
  color: var(--gray-dark);
}

.gallery-caption p {
  color: var(--gray-soft);
  font-weight: 400;
  line-height: 1.7;
}

.gallery-nav {
  position: absolute;
  bottom: clamp(2rem, 5vh, 3rem);
  right: clamp(2rem, 5vw, 3rem);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.gallery-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 245, 0.98));
  color: var(--soft-pink);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;      
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.gallery-btn:hover {
  transform: scale(1.1);
  background: var(--white);
}

.outro {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(4rem, 10vh, 6rem) clamp(1rem, 5vw, 3rem);
  text-align: center;
}

.outro-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.outro-title {
font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 10vw, 6rem);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  background: linear-gradient(135deg, var(--sparkle-pink), var(--rose-gold), var(--gold-sparkle));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 40px rgba(255, 77, 141, 0.3);
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.outro-text {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  color: #7a6a62;
  margin-bottom: clamp(2rem, 5vh, 3rem);
  font-weight: 400;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.outro-cta {
  display: inline-block;
  padding: clamp(1rem, 2.5vw, 1.25rem) clamp(2.5rem, 6vw, 3.5rem);
  background: linear-gradient(135deg, var(--soft-pink), var(--pink-rose), var(--sparkle-purple));
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 15px 50px rgba(201, 166, 144, 0.4);
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.4s forwards;
}

.outro-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 60px rgba(201, 166, 144, 0.6);
}

.social-proof {
  margin-top: clamp(3rem, 8vh, 5rem);
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.testimonial {
  font-style: italic;
  color: #8a7a72;
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  margin-bottom: 1rem;
  font-weight: 400;
}

.testimonial-author {
  color: var(--soft-pink);
  font-size: 1rem;
  font-weight: 500;
}

.footer {
  background: linear-gradient(135deg, #2a1e1a, #3a2a24);
  color: var(--cream);
  padding: clamp(3rem, 8vh, 5rem) clamp(1rem, 5vw, 3rem) clamp(2rem, 5vh, 3rem);
  text-align: center;
  margin-bottom: 5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 5vh, 3rem);
}

.footer-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--soft-pink);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 5vh, 3rem);
}

.social-links a {
  color: var(--cream);
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: var(--soft-pink);
  transform: translateY(-3px);
}

.footer-copyright {
  color: var(--gray-soft);
  font-size: 0.9rem;
  font-weight: 400;
}

.nav-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 245, 0.99));
  backdrop-filter: blur(30px);
  padding: 1rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 -8px 40px rgba(255, 77, 141, 0.15);
}

.nav-mobile a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: #8a7a72;
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.3s ease;
  padding: 0.5rem;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--sparkle-pink);
}

.nav-mobile i {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  
  .nav-mobile {
    display: none;
  }
  
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-text {
    text-align: left;
  }
  
  .hero-subtext {
    margin-left: 0;
  }
}

@media (min-width: 1024px) {
  .product-card {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 280px) {
  body {
    font-size: 14px;
  }
  
  .header {
    padding: 8px 10px;
  }
  
  .logo {
    font-size: 16px;
  }
  
  .logo.serif {
    font-size: 18px;
  }
  
  .hero {
    padding: 40px 10px 20px;
    margin-top: 1rem;
    min-height: 70vh;
  }
  
  .hero-headline {
    font-size: 20px;
  }
  
  .hero-subtext {
    font-size: 12px;
  }
  
  .hero-cta {
    padding: 10px 20px;
    font-size: 12px;
  }
  
 
  
  .section {
    padding: 24px 10px;
  }
  
  .section-title {
    font-size: 20px;
  }
  
  .section-subtitle {
    font-size: 12px;
  }
  
  .countdown-value {
    font-size: 1.2rem;
    min-width: 40px;
    padding: 6px;
  }
  
  .nav-mobile a {
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .aurora-layer {
    animation: none;
  }
  
  .science-icon {
    animation: none;
  }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

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

.mb-small {
  margin-bottom: clamp(1rem, 3vh, 2rem);
}

.mb-medium {
  margin-bottom: clamp(2rem, 5vh, 3rem);
}

.mb-large {
  margin-bottom: clamp(3rem, 8vh, 5rem);
}