:root {
  --bg: #0f0f0f;
  --surface: rgba(20, 20, 20, 0.92);
  --surface-light: rgba(255, 255, 255, 0.08);
  --text: #f7f3ee;
  --muted: #b7b0a4;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.12);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #090909 0%, #120f13 100%);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

button, input, textarea, a {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  transition: all 0.4s ease;
  background: transparent;
}

.site-header.solid {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-size: 1rem;
  background: rgba(255,255,255,0.04);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text);
}

.hero-section {
  min-height: 95vh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 8rem 0 6rem;
  background-image: linear-gradient(180deg, rgba(15,15,15,0.7), rgba(15,15,15,0.96)), url('https://99pandit.com/wp-content/uploads/2023/04/Baba-Baidyanath-Temple-3.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-section.peda-hero {
  background-image: linear-gradient(180deg, rgba(16,13,9,0.72), rgba(15,15,15,0.98)), url('https://images.unsplash.com/photo-1540405137308-6156ce1d2aa5?auto=format&fit=crop&w=1500&q=80');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(255,255,255,0.08), transparent 25%), linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.8));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 4vw, 5.4rem);
  line-height: 1.02;
  margin: 0;
  max-width: 14ch;
}

.hero-content h1 .typewriter-text {
  display: inline;
}

.hero-content h1 .hero-caret {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  margin-left: 0.45rem;
  vertical-align: bottom;
  background: var(--text);
  animation: blinkCaret 0.8s step-end infinite;
}

@keyframes blinkCaret {
  50% { opacity: 0; }
}

.hero-content p {
  margin: 1.8rem 0 2.4rem;
  color: var(--muted);
  max-width: 700px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 1rem 1.8rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(212,175,55,1), rgba(212,175,55,0.85));
  color: #090909;
  font-weight: 700;
  box-shadow: 0 18px 60px rgba(212,175,55,0.18);
}

.btn-secondary {
  background: rgba(255,255,255,0.07);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 7rem 0;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 2.9vw, 3.6rem);
  margin: 0.8rem 0 1rem;
}

.section-intro p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 680px;
}

.category-grid, .product-grid, .features-grid, .testimonial-grid, .faq-grid {
  display: grid;
  gap: 1.9rem;
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 15%, rgba(15,15,15,0.98) 90%);
}

.category-card .category-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(212,175,55,0.18), transparent 28%);
}

.category-card h3,
.category-card p,
.category-card .chip,
.category-card .category-link {
  position: relative;
  z-index: 1;
}

.category-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin: 0 0 0.75rem;
}

.category-card p {
  color: rgba(255,255,255,0.78);
  margin: 0 0 1.5rem;
}

.category-card .category-link,
.category-card .chip {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.category-card .category-link {
  background: rgba(255,255,255,0.12);
  color: var(--text);
  text-decoration: none;
}

.category-card .chip {
  background: rgba(255,255,255,0.08);
  color: var(--gold);
}

.category-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.3);
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.8);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.product-copy {
  padding: 1.8rem;
}

.product-copy .label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.product-copy h3 {
  margin: 0 0 0.9rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
}

.product-copy p {
  color: var(--muted);
  margin: 0 0 1.4rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
  font-weight: 600;
}

.order-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  overflow: hidden;
}

.qty-btn {
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.quantity-selector input {
  width: 64px;
  border: none;
  background: transparent;
  text-align: center;
  color: var(--text);
  font-size: 1rem;
  padding: 0.85rem 0;
}

.stock-indicator {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
}

.stars {
  color: #f6c564;
  letter-spacing: 0.08em;
}

.features-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  margin-top: 0;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--muted);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}

.testimonial-card p {
  margin: 0 0 1.8rem;
  color: var(--muted);
}

.testimonial-author strong {
  display: block;
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 0.95rem;
}

.banner-section {
  padding: 5rem 0;
}

.banner-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(212,175,55,0.12));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.banner-card h2 {
  margin: 0.8rem 0 1rem;
  font-family: 'Playfair Display', serif;
  max-width: 540px;
}

.faq-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.faq-card h3 {
  margin-top: 0;
  font-family: 'Playfair Display', serif;
}

.faq-card p {
  color: var(--muted);
}

.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2rem;
}

.footer-links, .footer-contact {
  display: grid;
  gap: 0.8rem;
}

.footer-links h4, .footer-contact h4 {
  margin: 0 0 1rem;
  font-family: 'Playfair Display', serif;
}

.footer-links a, .footer-contact a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover, .footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.social-icons a {
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  transition: all 0.35s ease;
}

.social-icons a svg {
  width: 22px;
  height: 22px;
  transition: transform 0.35s ease;
}

.social-icons a:hover {
  background: rgba(212, 175, 55, 0.28);
  transform: translateY(-3px);
}

.social-icons a:hover svg {
  transform: scale(1.1);
}

.social-icons a.instagram:hover {
  background: linear-gradient(135deg, rgba(245, 27, 86, 0.2), rgba(138, 36, 185, 0.2));
}

.social-icons a.facebook:hover {
  background: rgba(59, 89, 152, 0.2);
}

.social-icons a.pinterest:hover {
  background: rgba(230, 0, 35, 0.2);
}

.floating-action, .whatsapp-float {
  position: fixed;
  right: 1.5rem;
  border:none;
  border-radius: 999px;
  padding: 0.95rem 1.3rem;
  backdrop-filter: blur(18px);
  z-index: 60;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.floating-action {
  bottom: 6.5rem;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  cursor: pointer;
}

.whatsapp-float {
  bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 195px;
  background: #25d366;
  color: #090909;
  font-weight: 700;
  text-decoration: none;
}

.floating-action:hover, .whatsapp-float:hover {
  transform: translateY(-3px);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(12px);
  color: var(--text);
  gap: 1rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 72px;
  height: 72px;
  border: 5px solid rgba(255,255,255,0.08);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1.4s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg);
  pointer-events: none;
  z-index: 120;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.page-transition.visible {
  opacity: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(2px);
  animation: floatUp 10s ease-in-out infinite;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.22), transparent 60%);
  filter: blur(12px);
}

.hero-particles::before {
  top: 15%;
  left: 12%;
}

.hero-particles::after {
  bottom: 18%;
  right: 14%;
}

.coming-soon-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, rgba(212,175,55,0.12), transparent 30%), linear-gradient(180deg, #121212 0%, #090909 100%);
  color: var(--text);
}

.coming-soon-wrapper {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100vh;
}

.coming-soon-card {
  position: relative;
  max-width: 760px;
  padding: 4rem 3rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  box-shadow: var(--shadow);
  text-align: center;
}

.coming-soon-card .eyebrow {
  display: inline-flex;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.coming-soon-card h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.coming-soon-card p {
  margin: 1.5rem auto 2.5rem;
  color: var(--muted);
  max-width: 640px;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.countdown-grid div {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 2rem 1rem;
  color: var(--text);
}

.countdown-grid span {
  display: block;
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

.countdown-grid small {
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.coming-soon-accent {
  position: absolute;
  inset: -24px;
  border-radius: 42px;
  background: radial-gradient(circle at center, rgba(212,175,55,0.18), transparent 30%);
  filter: blur(21px);
  z-index: -1;
}

.order-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 2rem;
  display: grid;
  gap: 1rem;
}

.order-form-card label {
  display: grid;
  gap: 0.6rem;
  color: var(--text);
  font-weight: 500;
}

.order-form-card input,
.order-form-card textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 1rem 1rem;
  outline: none;
}

.order-form-card textarea {
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 0.8s ease forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.15s; }
.fade-up:nth-child(2) { animation-delay: 0.25s; }
.fade-up:nth-child(3) { animation-delay: 0.35s; }

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1120px) {
  .category-grid, .product-grid, .features-grid, .testimonial-grid, .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .header-inner {
    flex-wrap: wrap;
  }
  .nav-menu {
    position: fixed;
    inset: 80px 0 auto;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.96);
    gap: 1.4rem;
    padding: 2rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle {
    display: flex;
  }
  .hero-section {
    min-height: 85vh;
    padding: 6rem 0 4rem;
  }
  .category-grid, .product-grid, .features-grid, .testimonial-grid, .faq-grid {
    grid-template-columns: 1fr;
  }
  .banner-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .coming-soon-card {
    padding: 2.5rem 1.5rem;
  }
  .countdown-grid {
    grid-template-columns: 1fr;
  }
  .site-header {
    padding: 0.8rem 0;
  }
}
