/* ====================================================
   HAPPYINDIA – LUXURY SANITARY PADS WEBSITE
   Ultra-Luxury CSS with Full Animations
   ==================================================== */

:root {
  --pink-light: #FFB6C1;
  --pink-soft: #FFC0CB;
  --pink-blush: #FFE4E1;
  --pink-deep: #F48FB1;
  --pink-rose: #E91E8C;
  --rose-gold: #B76E79;
  --rose-gold-light: #D4A5A5;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --white-soft: #FFF5F5;
  --white: #FFFFFF;
  --text-dark: #3D1C2E;
  --text-medium: #6D3A52;
  --text-light: #A67C8E;
  --gradient-hero: linear-gradient(135deg, #FFE4E1 0%, #FFC0CB 40%, #FFB6C1 70%, #F8BBD9 100%);
  --gradient-section: linear-gradient(180deg, #FFF5F5 0%, #FFE4E1 100%);
  --gradient-gold: linear-gradient(135deg, #D4AF37, #F0D060, #D4AF37);
  --gradient-rose: linear-gradient(135deg, #B76E79, #E91E8C, #B76E79);
  --shadow-soft: 0 8px 40px rgba(183, 110, 121, 0.15);
  --shadow-card: 0 20px 60px rgba(183, 110, 121, 0.2);
  --shadow-hover: 0 30px 80px rgba(183, 110, 121, 0.35);
  --border-radius: 20px;
  --border-radius-lg: 32px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white-soft);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; outline: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 100px 0; }
.text-center { text-align: center; }

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--rose-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: all 0.1s ease;
}

.cursor-outline {
  position: fixed;
  width: 36px; height: 36px;
  border: 2px solid var(--pink-deep);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}

body:hover .cursor-dot { opacity: 1; }

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #FFE4E1, #FFC0CB, #F8BBD9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
  animation: loaderPop 0.6s ease forwards;
}

.loader-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto 24px;
  animation: logoPulse 1.5s ease-in-out infinite;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(183,110,121,0.3);
}

.loader-bar {
  width: 200px;
  height: 4px;
  background: rgba(183,110,121,0.2);
  border-radius: 2px;
  margin: 16px auto;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: var(--gradient-rose);
  border-radius: 2px;
  animation: loaderProgress 2s ease forwards;
  width: 0;
}

.loader-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--rose-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInOut 2s ease infinite;
}

@keyframes loaderPop {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(183,110,121,0.3); }
  50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(183,110,121,0.5); }
}
@keyframes loaderProgress {
  to { width: 100%; }
}
@keyframes fadeInOut {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ===== FLOATING PETALS ===== */
.petals-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.petal {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--pink-soft);
  border-radius: 50% 50% 50% 0;
  opacity: 0;
  animation: petalFall linear infinite;
}

@keyframes petalFall {
  0% { opacity: 0; top: -20px; transform: rotate(0deg) translateX(0); }
  10% { opacity: 0.7; }
  90% { opacity: 0.4; }
  100% { opacity: 0; top: 110vh; transform: rotate(720deg) translateX(60px); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 245, 245, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(183, 110, 121, 0.15);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(183,110,121,0.2);
  transition: var(--transition);
}

.nav-logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(183,110,121,0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-medium);
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-rose);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--rose-gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gradient-rose) !important;
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px rgba(233, 30, 140, 0.3);
  transition: var(--transition-bounce) !important;
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.05) !important;
  box-shadow: 0 8px 30px rgba(233, 30, 140, 0.4) !important;
}
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--rose-gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://drive.google.com/thumbnail?id=12NXwIWpLKseRSQ_9cNeHeOeG9UFhv4aH&sz=w1000');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 228, 225, 0.75) 0%, rgba(255, 192, 203, 0.75) 40%, rgba(255, 182, 193, 0.75) 70%, rgba(248, 187, 217, 0.75) 100%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  animation: shapeFloat ease-in-out infinite;
}
.shape-1 { width: 500px; height: 500px; top: -150px; right: -100px; animation-duration: 8s; }
.shape-2 { width: 300px; height: 300px; bottom: -50px; left: -80px; animation-duration: 10s; animation-delay: 2s; }
.shape-3 { width: 200px; height: 200px; top: 30%; left: 10%; animation-duration: 12s; animation-delay: 4s; }

@keyframes shapeFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(183,110,121,0.2);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 24px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rose-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-logo-wrap {
  margin-bottom: 24px;
}

.hero-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(183,110,121,0.3), 0 0 0 8px rgba(255,255,255,0.5);
  animation: herLogoFloat 4s ease-in-out infinite;
}

@keyframes herLogoFloat {
  0%, 100% { transform: translateY(0); box-shadow: 0 20px 60px rgba(183,110,121,0.3), 0 0 0 8px rgba(255,255,255,0.5); }
  50% { transform: translateY(-12px); box-shadow: 0 30px 80px rgba(183,110,121,0.4), 0 0 0 8px rgba(255,255,255,0.6); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-title .line1 {
  display: block;
  font-weight: 700;
}

.hero-title .line2 {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--rose-gold);
  background: var(--gradient-rose);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-medium);
  letter-spacing: 1px;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-price {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(183,110,121,0.2);
  border-radius: 50px;
  padding: 12px 28px;
  margin-bottom: 32px;
}

.price-mrp {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-current {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rose-gold);
  font-family: 'Playfair Display', serif;
}

.price-off {
  background: linear-gradient(135deg, #27AE60, #2ECC71);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-rose);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  transition: var(--transition-bounce);
  box-shadow: 0 8px 30px rgba(233, 30, 140, 0.35);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 2.5s infinite;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 50px rgba(233, 30, 140, 0.5);
}

.glow-btn { animation: glowPulse 2s ease-in-out infinite; }
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(233, 30, 140, 0.35); }
  50% { box-shadow: 0 8px 50px rgba(233, 30, 140, 0.6), 0 0 0 8px rgba(233,30,140,0.1); }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.8);
  color: var(--rose-gold);
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 36px;
  border-radius: 50px;
  border: 2px solid var(--rose-gold-light);
  backdrop-filter: blur(10px);
  transition: var(--transition-bounce);
}
.btn-secondary:hover {
  background: var(--rose-gold);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(183, 110, 121, 0.4);
  border-color: var(--rose-gold);
}

.hero-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-medium);
}

.trust-item i {
  color: var(--rose-gold);
  font-size: 1rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 2;
}

.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid var(--rose-gold);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--rose-gold);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose-gold);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
@keyframes scrollWheel {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0; transform: translateY(8px); }
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: var(--gradient-rose);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track span {
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTION COMMON STYLES ===== */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose-gold);
  background: rgba(183, 110, 121, 0.08);
  border: 1px solid rgba(183, 110, 121, 0.2);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose-gold);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.section-header { margin-bottom: 56px; }

/* ===== ABOUT SECTION ===== */
.about {
  background: linear-gradient(180deg, #FFF5F5 0%, #FFE8EE 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,182,193,0.3), transparent 70%);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-tag.reveal-left,
.section-title.reveal-left { text-align: left; }

.about-text {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-medium);
  font-weight: 500;
}

.highlight-item i {
  color: var(--rose-gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.about-right { display: flex; justify-content: center; }

.about-image-wrap {
  position: relative;
  display: inline-block;
}

.about-img {
  width: 320px;
  height: 380px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.about-img:hover { transform: scale(1.03) rotate(1deg); }

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gradient-rose);
  color: white;
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(233, 30, 140, 0.3);
  animation: badgeFloat 3s ease-in-out infinite;
}

.badge-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.badge-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

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

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFB6C1 0%, #F48FB1 50%, #E91E8C 100%);
  opacity: 0.1;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFF0F5 0%, #FFE4E1 100%);
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(183, 110, 121, 0.15);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-bounce);
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--rose-gold-light);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--rose-gold);
  line-height: 1;
}

.stat-suffix {
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose-gold);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-medium);
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* ===== PRODUCTS SECTION ===== */
.products {
  background: linear-gradient(180deg, #FFF5F5 0%, #FFE4E1 50%, #FFF5F5 100%);
  position: relative;
}

.price-banner {
  margin-bottom: 48px;
}

.price-banner-inner {
  background: linear-gradient(135deg, #3D1C2E, #6D3A52);
  border-radius: var(--border-radius);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: var(--shadow-card);
}

.pb-left { color: rgba(255,255,255,0.8); }
.pb-pack { display: block; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.pb-mrp { font-size: 0.95rem; color: rgba(255,255,255,0.6); }
.pb-mrp s { color: rgba(255,255,255,0.4); }

.pb-center { text-align: center; }
.pb-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 0 30px rgba(255,182,193,0.5);
}

.pb-right { text-align: right; }
.pb-save { display: block; font-size: 1.1rem; font-weight: 600; color: #7FFF7F; margin-bottom: 4px; }
.pb-off {
  display: inline-block;
  background: linear-gradient(135deg, #D4AF37, #F0D060);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(183, 110, 121, 0.1);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: var(--shadow-hover);
  border-color: rgba(183, 110, 121, 0.3);
}

.product-card.featured {
  border: 2px solid var(--rose-gold-light);
  box-shadow: 0 20px 60px rgba(183, 110, 121, 0.25);
}

.featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gradient-gold);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  z-index: 3;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: linear-gradient(135deg, #FFE4E1, #FFF5F5);
}

.product-image-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.08) translateY(-6px);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(183, 110, 121, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay { opacity: 1; }

.product-overlay-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.product-overlay-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

.product-info { padding: 20px; }

.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.product-info p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.product-tags span {
  font-size: 0.7rem;
  color: var(--rose-gold);
  background: rgba(183, 110, 121, 0.08);
  border: 1px solid rgba(183, 110, 121, 0.2);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 500;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.p-mrp {
  font-size: 0.8rem;
  color: var(--text-light);
}
.p-mrp s { color: var(--text-light); }

.p-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rose-gold);
}

.p-off {
  font-size: 0.7rem;
  font-weight: 700;
  color: #27AE60;
  background: rgba(39, 174, 96, 0.1);
  padding: 2px 8px;
  border-radius: 50px;
}

.btn-buy {
  width: 100%;
  background: var(--gradient-rose);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 12px;
  border-radius: 12px;
  transition: var(--transition-bounce);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(233, 30, 140, 0.2);
  position: relative;
  overflow: hidden;
}

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

.btn-buy:hover::before { left: 100%; }
.btn-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(233, 30, 140, 0.4);
}

/* ===== FEATURES SECTION ===== */
.features {
  background: linear-gradient(180deg, #FFF5F5 0%, #FFE8EE 100%);
  position: relative;
  overflow: hidden;
}

.features-bg-decor {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255, 182, 193, 0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(183, 110, 121, 0.12);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-rose);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--rose-gold-light);
}

.feature-icon-wrap {
  margin-bottom: 20px;
}

.feature-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(183, 110, 121, 0.1), rgba(233, 30, 140, 0.1));
  border: 2px solid rgba(183, 110, 121, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: var(--transition-bounce);
}

.feature-icon i {
  font-size: 1.6rem;
  color: var(--rose-gold);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-rose);
  border-color: transparent;
  transform: rotate(10deg) scale(1.1);
  animation: iconSpin 0.5s ease;
}

.feature-card:hover .feature-icon i { color: white; }

@keyframes iconSpin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(15deg) scale(1.15); }
  100% { transform: rotate(10deg) scale(1.1); }
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background: linear-gradient(135deg, #FFF5F5 0%, #FFE4E1 100%);
  overflow: hidden;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(183, 110, 121, 0.15);
  border-radius: var(--border-radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  flex-shrink: 0;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.t-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.t-stars i {
  color: var(--gold);
  font-size: 0.9rem;
  animation: starFill 0.5s ease forwards;
}

.t-text {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}

.t-text::before {
  content: '"';
  font-size: 4rem;
  color: rgba(183, 110, 121, 0.15);
  font-family: 'Playfair Display', serif;
  position: absolute;
  top: -20px; left: -10px;
  line-height: 1;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 44px; height: 44px;
  background: var(--gradient-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.t-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.t-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px; height: 44px;
  background: white;
  border: 2px solid rgba(183, 110, 121, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-gold);
  font-size: 0.9rem;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-soft);
}

.carousel-btn:hover {
  background: var(--gradient-rose);
  color: white;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(233, 30, 140, 0.3);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px; height: 8px;
  background: rgba(183, 110, 121, 0.3);
  border-radius: 50%;
  transition: var(--transition);
  cursor: none;
}

.carousel-dot.active {
  background: var(--rose-gold);
  width: 24px;
  border-radius: 4px;
}

/* ===== ORDER SECTION ===== */
.order-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFE4E1, #FFC0CB, #FFB6C1);
}

.order-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.4) 0%, transparent 50%),
              radial-gradient(circle at 70% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
}

.pricing-card-wrap {
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(183, 110, 121, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 100px rgba(183, 110, 121, 0.3);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--gradient-rose);
}

.pc-header { margin-bottom: 32px; }

.pc-logo {
  width: 80px; height: 80px;
  object-fit: contain;
  margin: 0 auto 16px;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(183, 110, 121, 0.2);
}

.pc-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pc-header p {
  font-size: 0.875rem;
  color: var(--text-light);
}

.pc-price { margin-bottom: 32px; }

.pc-mrp {
  font-size: 1rem;
  color: var(--text-light);
  display: block;
  margin-bottom: 8px;
}

.pc-main-price {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--rose-gold);
  line-height: 1;
  margin-bottom: 12px;
  background: var(--gradient-rose);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pc-save {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.save-tag {
  background: rgba(39, 174, 96, 0.1);
  color: #27AE60;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(39, 174, 96, 0.2);
}

.off-tag {
  background: var(--gradient-gold);
  color: var(--text-dark);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
}

.pc-features {
  text-align: left;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pcf-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-medium);
  font-weight: 500;
}

.pcf-item i {
  color: var(--rose-gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.btn-order {
  width: 100%;
  background: var(--gradient-rose);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 32px;
  border-radius: 16px;
  transition: var(--transition-bounce);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(233, 30, 140, 0.35);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-order:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 50px rgba(233, 30, 140, 0.5);
}

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

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.pc-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}

.trust-badge i { color: var(--rose-gold); }

/* ===== ORDER MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(61, 28, 46, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 40px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: var(--transition-bounce);
  box-shadow: 0 40px 100px rgba(61, 28, 46, 0.4);
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: rgba(183, 110, 121, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
}

.modal-close:hover { background: var(--gradient-rose); color: white; transform: rotate(90deg); }

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-header img {
  width: 70px; height: 70px;
  object-fit: contain;
  margin: 0 auto 12px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(183, 110, 121, 0.2);
}

.modal-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.modal-header p { font-size: 0.85rem; color: var(--text-light); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(183, 110, 121, 0.15);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: var(--text-dark);
  background: #FFF5F5;
  transition: border-color 0.3s ease;
  outline: none;
  cursor: auto;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose-gold);
  background: white;
}

.modal-price-summary {
  background: linear-gradient(135deg, #FFF0F5, #FFE4E1);
  border: 1px solid rgba(183, 110, 121, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.modal-price-summary strong {
  font-size: 1.2rem;
  color: var(--rose-gold);
  font-family: 'Playfair Display', serif;
}

.ms-save {
  font-size: 0.8rem;
  color: #27AE60;
  font-weight: 600;
}

.btn-submit {
  width: 100%;
  background: var(--gradient-rose);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px;
  border-radius: 12px;
  transition: var(--transition-bounce);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(233, 30, 140, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(233, 30, 140, 0.4);
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, #27AE60, #2ECC71);
  color: white;
  padding: 16px 28px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(39, 174, 96, 0.4);
  z-index: 99999;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #3D1C2E 0%, #2A0E1F 100%);
  position: relative;
  overflow: hidden;
}

.footer-top { padding: 80px 0 48px; }

.footer-petals {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(183, 110, 121, 0.1), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05), transparent 40%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: 0 8px 30px rgba(183, 110, 121, 0.2);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition-bounce);
}

.footer-social a:hover {
  background: var(--gradient-rose);
  border-color: transparent;
  color: white;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(233, 30, 140, 0.3);
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  width: 32px; height: 2px;
  background: var(--gradient-rose);
  border-radius: 1px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links a:hover { color: var(--pink-soft); transform: translateX(4px); }

.fc-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}

.fc-item i { color: var(--rose-gold-light); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem !important;
  color: rgba(255, 182, 193, 0.7) !important;
}

.heart { animation: heartBeat 1s ease-in-out infinite; display: inline-block; }
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  background: var(--gradient-rose);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(233, 30, 140, 0.35);
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-bounce);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover { transform: translateY(-4px) scale(1.1); }

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }
.delay-4 { transition-delay: 0.6s !important; }
.delay-5 { transition-delay: 0.75s !important; }
.delay-6 { transition-delay: 0.9s !important; }

/* ===== HERO PARTICLE CANVAS ===== */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: heroParticleAnim linear infinite;
}

@keyframes heroParticleAnim {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.8; transform: translateY(-20px) scale(1); }
  80% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-120px) scale(0.5); }
}

/* ===== 3D CARD TILT ===== */
.product-card { transform-style: preserve-3d; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-right { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 32px;
    box-shadow: -10px 0 40px rgba(61, 28, 46, 0.15);
    transition: right 0.4s ease;
    z-index: 999;
    gap: 24px;
  }

  .nav-links.active { right: 0; }
  .nav-hamburger { display: flex; }

  .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }

  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonials-track .testimonial-card { min-width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .pricing-card { padding: 28px 20px; }
  .pc-features { grid-template-columns: 1fr; }
  .pc-main-price { font-size: 3rem; }

  .price-banner-inner { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .hero-trust { gap: 16px; }
  .about-highlights { grid-template-columns: 1fr; }

  .modal-box { padding: 28px 20px; }

  .cursor-dot, .cursor-outline { display: none; }
  body { cursor: default; }
  button { cursor: pointer; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .testimonial-card { padding: 24px 20px; }
}
