/* ============================================
   CRACKERS JOY - Diwali Website Styles
   Premium Black & Gold Theme
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --charcoal: #1a1a1f;
  --gold: #d4af37;
  --gold-light: #e8c547;
  --gold-dark: #b8860b;
  --gold-glow: rgba(212, 175, 55, 0.3);
  --gold-glow-strong: rgba(212, 175, 55, 0.6);
  --maroon: #4a1831;
  --burgundy: #5f0e2a;
  --cream: #f5e9d0;
  --ivory: #faf3e3;
  --orange: #e67e22;
  --whatsapp: #25d366;
  --whatsapp-hover: #1ebe5d;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --font-script: 'Great Vibes', cursive;
  --transition: all 0.3s ease;
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.15);
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black-2);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

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

.gold {
  color: var(--gold);
}

/* ============================================
   Preloader
   ============================================ */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

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

.diya-spinner {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  animation: preloaderDiya 2s ease-in-out infinite;
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 40px var(--gold-glow);
  position: relative;
}

.diya-spinner::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px dashed rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  animation: spin 10s linear infinite;
}

@keyframes preloaderDiya {
  0%, 100% { transform: scale(1); box-shadow: 0 0 30px var(--gold-glow); }
  50% { transform: scale(1.15); box-shadow: 0 0 60px var(--gold-glow-strong); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.preloader-text {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 24px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* ============================================
   Particle Canvas
   ============================================ */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(212, 175, 55, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1400px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-diya {
  font-size: 28px;
  color: var(--gold);
  filter: drop-shadow(0 0 15px var(--gold-glow-strong));
  animation: diyaPulse 3s ease-in-out infinite;
}

@keyframes diyaPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px var(--gold-glow)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 20px var(--gold-glow-strong)); }
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 2px;
  white-space: nowrap;
}

.logo-text .gold {
  color: var(--gold);
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  box-shadow: 0 0 10px var(--gold-glow);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.whatsapp-icon-sm {
  width: 16px;
  height: 16px;
}

.header-btn {
  padding: 10px 20px;
  font-size: 13px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-link {
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 28px;
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--gold);
}

.mobile-wa-btn {
  margin-top: 10px;
  font-size: 16px;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(74, 24, 49, 0.35) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
              linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.7) 100%);
  z-index: 2;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10,10,10,0.6) 0%, var(--black) 75%);
  z-index: 1;
}

/* Fireworks */
.firework {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  z-index: 0;
}

.firework::before, .firework::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  transform-origin: center;
}

.firework-1 {
  top: 20%;
  left: 15%;
  animation: fireworkPulse 4s ease-in-out infinite;
}

.firework-1::before, .firework-1::after {
  background: #ff6b35;
  box-shadow: 0 0 20px #ff6b35;
  animation: burst 4s ease-in-out infinite;
}

.firework-1::before { animation-delay: 0.2s; }
.firework-1::after { animation-delay: 0.4s; }

.firework-2 {
  top: 25%;
  right: 18%;
  background: #ffd700;
  box-shadow: 0 0 20px #ffd700;
  animation: fireworkPulse 5s ease-in-out infinite;
  animation-delay: 1s;
}

.firework-2::before, .firework-2::after {
  background: #ff4500;
  box-shadow: 0 0 20px #ff4500;
  animation: burst 5s ease-in-out infinite;
  animation-delay: 1s;
}

.firework-2::before { animation-delay: 1.2s; }
.firework-2::after { animation-delay: 1.4s; }

.firework-3 {
  top: 45%;
  left: 50%;
  background: #ff69b4;
  box-shadow: 0 0 20px #ff69b4;
  animation: fireworkPulse 6s ease-in-out infinite;
  animation-delay: 2s;
}

.firework-3::before, .firework-3::after {
  background: #00ffff;
  box-shadow: 0 0 20px #00ffff;
  animation: burst 6s ease-in-out infinite;
  animation-delay: 2s;
}

.firework-3::before { animation-delay: 2.2s; }
.firework-3::after { animation-delay: 2.4s; }

@keyframes fireworkPulse {
  0%, 100% { transform: scale(1); opacity: 0; }
  5% { opacity: 1; }
  15% { transform: scale(3); opacity: 0.5; }
  20%, 95% { transform: scale(1); opacity: 0; }
}

@keyframes burst {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  50% { transform: translate(15px, -15px) scale(1.5); opacity: 0.6; }
  70% { transform: translate(-15px, 15px) scale(0.8); opacity: 0.3; }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  animation: heroReveal 1.2s ease forwards;
  opacity: 0;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 30px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

.badge-diya {
  font-size: 16px;
  animation: diyaPulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 25px;
  text-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
  position: relative;
}

.hero-title .gold-script {
  font-family: var(--font-script);
  font-size: 1.25em;
  color: var(--gold);
  display: inline-block;
  background: linear-gradient(135deg, #f5d061 0%, #d4af37 45%, #f0c040 55%, #8a6d1a 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3)); }
  50% { filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.6)); }
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--cream);
  opacity: 0.85;
  max-width: 650px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-hero {
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 30px var(--gold-glow);
  transform: translateY(-2px);
}

.hero-note {
  font-size: 13px;
  color: rgba(245, 233, 208, 0.5);
  letter-spacing: 1px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 24px;
  height: 36px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  position: relative;
}

.scroll-arrow::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

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

@keyframes scrollWheel {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 20px; }
}

/* ============================================
   Section Common Styles
   ============================================ */
.section {
  position: relative;
  padding: 100px 0;
  z-index: 5;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.3;
  background: linear-gradient(135deg, #f5d061 0%, #d4af37 50%, #f0c040 60%, #8a6d1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--gold);
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.gold-divider::after {
  background: linear-gradient(270deg, transparent, var(--gold));
}

.gold-divider span {
  font-size: 18px;
  animation: diyaPulse 3s ease-in-out infinite;
}

/* Section ornament */
.section-ornament-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: repeating-linear-gradient(90deg,
    transparent 0px, transparent 15px,
    var(--gold) 15px, var(--gold) 17px,
    transparent 17px, transparent 32px);
  opacity: 0.15;
}

/* ============================================
   Categories Section
   ============================================ */
.categories-section {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.category-card {
  background: linear-gradient(180deg, var(--black-3), var(--black-2));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.15), var(--shadow-gold);
}

.category-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.category-card:hover .category-img {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 30%, rgba(10, 10, 10, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

.category-info {
  padding: 25px;
  text-align: center;
}

.category-info h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 10px;
  font-weight: 700;
}

.category-info p {
  font-size: 13px;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 20px;
  line-height: 1.7;
}

.btn-category {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50px;
  transition: var(--transition);
}

.btn-category:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 25px var(--gold-glow);
}

/* ============================================
   Products Section
   ============================================ */
.products-section {
  background: linear-gradient(180deg, var(--black-2) 0%, var(--black) 100%);
}

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

.product-card {
  background: linear-gradient(180deg, var(--black-3), var(--charcoal));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.15);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 0 20px var(--gold-glow);
}

.product-badge.hot {
  background: linear-gradient(135deg, #ff6b35, #e74c3c);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.product-badge.new {
  background: linear-gradient(135deg, #9b59b6, #7295f0);
  color: #fff;
  box-shadow: 0 0 20px rgba(155, 89, 182, 0.4);
}

.product-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 10px;
  font-weight: 700;
}

.product-desc {
  font-size: 13px;
  color: rgba(245, 233, 208, 0.65);
  margin-bottom: 15px;
  line-height: 1.7;
}

.product-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.product-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold-light);
  padding: 4px 10px;
  border-radius: 30px;
}

.btn-product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  width: 100%;
}

.btn-product:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 30px var(--gold-glow-strong);
  transform: translateY(-2px);
}

/* ============================================
   Promo Banner
   ============================================ */
.promo-banner {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--burgundy) 50%, var(--maroon) 100%);
  overflow: hidden;
  z-index: 5;
}

.promo-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
              radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
              repeating-linear-gradient(45deg, transparent 0px, transparent 20px, rgba(212,175,55,0.03) 20px, rgba(212,175,55,0.03) 21px);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.promo-bg::before {
  content: '\1FEEF';
  position: absolute;
  font-size: 80px;
  opacity: 0.05;
  top: 20%;
  left: 10%;
  animation: floatEmoji 4s ease-in-out infinite;
}

.promo-bg::after {
  content: '\1FEEF';
  position: absolute;
  font-size: 80px;
  opacity: 0.05;
  bottom: 20%;
  right: 10%;
  animation: floatEmoji 4s ease-in-out infinite 2s;
}

.promo-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.promo-content {
  text-align: left;
}

.promo-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 30px rgba(212, 175, 55, 0.3);
}

.promo-text {
  font-size: 15px;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 30px;
  line-height: 1.8;
  max-width: 550px;
}

.promo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 30px 15px;
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg, #f5d061, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.stat-plus {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 36px;
  font-weight: 800;
}

.stat-label {
  display: block;
  color: var(--cream);
  opacity: 0.7;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%);
}

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

.about-content h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.about-content p {
  color: var(--cream);
  opacity: 0.75;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 15px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  transition: var(--transition);
}

.about-feature:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.35);
}

.feature-icon {
  font-size: 24px;
  filter: drop-shadow(0 0 15px var(--gold-glow));
}

.about-feature h4 {
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-feature p {
  color: var(--cream);
  opacity: 0.6;
  font-size: 12px;
  margin: 0;
  line-height: 1.6;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 100px;
}

.about-card {
  position: relative;
  padding: 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--black-3), var(--charcoal));
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.card-mandala {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border: 1px dashed rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.card-mandala::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 80px;
  height: 80px;
  border: 1px dashed rgba(212, 175, 55, 0.15);
  border-radius: 50%;
}

.card-mandala::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50%;
}

.about-card-diya {
  font-size: 50px;
  display: block;
  margin-bottom: 15px;
  animation: diyaPulse 3s ease-in-out infinite;
}

.about-card h3 {
  font-family: var(--font-heading);
  color: var(--gold-light);
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}

.about-card p {
  color: var(--cream);
  opacity: 0.75;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-section {
  background: linear-gradient(180deg, var(--black-2) 0%, var(--black) 100%);
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.step-card {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(180deg, var(--black-3), var(--charcoal));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(212, 175, 55, 0.5);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--gold-glow);
}

.step-icon {
  font-size: 44px;
  margin-bottom: 15px;
  display: block;
  animation: floatEmoji 3s ease-in-out infinite;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 12px;
  font-weight: 700;
}

.step-card p {
  color: var(--cream);
  opacity: 0.65;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.step-connector {
  width: 60px;
  flex-shrink: 0;
}

.connector-arrow {
  width: 100%;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--black-3), var(--charcoal));
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.35);
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 5px 30px rgba(212, 175, 55, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 25px;
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

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

.faq-toggle {
  font-size: 24px;
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 25px 20px;
  color: var(--cream);
  opacity: 0.75;
  font-size: 14px;
  line-height: 1.8;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
  background: linear-gradient(180deg, var(--black-2) 0%, var(--black) 100%);
  padding-bottom: 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--cream);
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-info > p {
  color: var(--cream);
  opacity: 0.7;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: linear-gradient(180deg, var(--black-3), var(--charcoal));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  transition: var(--transition);
}

.contact-method:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.contact-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.contact-method h4 {
  color: var(--gold-light);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-method p {
  color: var(--cream);
  opacity: 0.7;
  font-size: 13px;
  margin-bottom: 10px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.contact-wa-card {
  background: linear-gradient(180deg, var(--black-3), var(--charcoal));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.contact-wa-card:hover {
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.5);
}

.wa-card-mandala {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border: 1px dashed rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.wa-card-mandala::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  width: 120px;
  height: 120px;
  border: 1px dashed rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}

.wa-card-inner {
  position: relative;
  z-index: 2;
}

.wa-card-icon {
  display: block;
  font-size: 60px;
  margin-bottom: 20px;
  animation: floatEmoji 3s ease-in-out infinite;
}

.contact-wa-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--gold-light);
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-wa-card p {
  color: var(--cream);
  opacity: 0.7;
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.wa-card-note {
  color: var(--gold);
  font-size: 15px !important;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 0;
  letter-spacing: 1px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  position: relative;
  background: linear-gradient(180deg, #080808, #050505);
  padding: 80px 0 0;
  z-index: 5;
}

.footer-top-border {
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%, var(--gold-dark) 25%, var(--gold) 50%,
    var(--gold-dark) 75%, transparent 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-brand p {
  color: var(--cream);
  opacity: 0.6;
  font-size: 13px;
  line-height: 1.8;
  margin: 20px 0;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 0 25px var(--gold-glow);
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-family: var(--font-heading);
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links-col h4::after,
.footer-contact-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

.footer-links-col ul {
  list-style: none;
}

.footer-links-col ul li {
  margin-bottom: 12px;
}

.footer-links-col ul li a {
  color: var(--cream);
  opacity: 0.7;
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
}

.footer-links-col ul li a:hover {
  color: var(--gold);
  opacity: 1;
  padding-left: 8px;
}

.footer-phone {
  color: var(--cream);
  opacity: 0.8;
  font-size: 15px;
  margin-bottom: 20px;
}

.footer-wa-btn {
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-bottom-inner {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-inner p {
  color: var(--cream);
  opacity: 0.5;
  font-size: 12px;
}

.footer-disclaimer {
  text-align: right;
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.floating-wa {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5);
  z-index: 998;
  transition: var(--transition);
  animation: waPulse 2s ease-in-out infinite;
  text-decoration: none;
}

.floating-wa svg {
  width: 32px;
  height: 32px;
}

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 40px rgba(37, 211, 102, 0.7);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5), 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  text-decoration: none;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 25px var(--gold-glow);
}

/* ============================================
   AOS-like Reveal Animations
   ============================================ */
[data-aos] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .about-visual {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    flex-wrap: wrap;
  }

  .step-card {
    max-width: 45%;
  }

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

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

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-btn {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .header-btn-mobile {
    display: inline-flex;
  }
}

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

  .hero {
    padding: 120px 0 60px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-hero {
    width: 100%;
  }

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

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

  .product-card {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .about-visual {
    grid-template-columns: 1fr;
  }

  .promo-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-plus {
    font-size: 26px;
  }

  .steps-grid {
    flex-direction: column;
  }

  .step-card {
    max-width: 100%;
  }

  .step-connector {
    transform: rotate(90deg);
    width: auto;
    height: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .container {
    padding: 0 15px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 8px 16px;
    gap: 8px;
  }

  .hero-note {
    font-size: 12px;
  }

  .section-title {
    font-size: 30px;
  }

  .promo-stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 20px 15px;
  }

  .logo-text {
    font-size: 18px;
  }

  .contact-wa-card {
    padding: 35px 25px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}