:root {
  --dark:#050B1E;
  --purple:#1A1036;
  --gold:#D4AF37;
  --orange:#FF9F1C;
}

body {
  margin:0;
  font-family:'Inter',sans-serif;
  background:radial-gradient(circle at top,var(--purple),var(--dark));
  color:#fff;
}

/* HERO */
.product-hero {
  height:50vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:linear-gradient(rgba(5,11,30,.75),rgba(5,11,30,.9)),
  url("https://images.stockcake.com/public/2/5/3/25313c4a-b37c-4244-ac4a-913f5c6a2c6c_large/colorful-gemstones-scattered-stockcake.jpg") center/cover;
  padding-top: 70px; /* navbar height */
}
@media (max-width: 768px) {
  .product-hero {
    padding-top: 90px;
  }
}


.hero-content h1 {
  font-family:'Marcellus', serif;
  font-size:42px;
  background:linear-gradient(135deg,var(--gold),var(--orange));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-content span {
  display:block;
  margin-top:10px;
  color:#ccc;
}

/* SECTION */
.product-section {
  padding:120px 20px;
  max-width:1200px;
  margin:auto;
}

.section-title {
  text-align:center;
  font-family:'Marcellus', serif;;
  font-size:36px;
  background:linear-gradient(135deg,var(--gold),var(--orange));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.section-desc {
  max-width:800px;
  margin:20px auto 60px;
  text-align:center;
  color:#d0d0d0;
}

/* GRID */
.product-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
}

/* CARD */
.product-card {
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(14px);
  border-radius:22px;
  padding:26px;
  text-align:center;
  border:1px solid rgba(212,175,55,0.25);
  transition:.4s;
}

.product-card:hover {
  transform:translateY(-8px);
  box-shadow:0 0 60px rgba(212,175,55,.45);
}

.product-card img {
  width: 140px;
  height: 140px;
  object-fit: contain;

  background: transparent;
  padding: 0;
  border-radius: 0;

  filter: drop-shadow(0 12px 25px rgba(0,0,0,0.55))
          drop-shadow(0 0 18px rgba(212,175,55,0.45));

  transition: transform 0.45s ease, filter 0.45s ease;
}

.product-card:hover img {
  transform: translateY(-6px) scale(1.05);
  filter: drop-shadow(0 18px 35px rgba(0,0,0,0.7))
          drop-shadow(0 0 28px rgba(212,175,55,0.65));
}


.product-card h3 {
  font-family:'Cinzel',serif;
  background:linear-gradient(135deg,var(--gold),var(--orange));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.price {
  display:block;
  margin:8px 0;
  color:#ccc;
  font-size:14px;
}

.product-card p {
  font-size:14px;
  line-height:1.6;
  color:#ddd;
}

.btn {
  display:inline-block;
  margin-top:14px;
  padding:10px 22px;
  border-radius:30px;
  background:linear-gradient(135deg,var(--gold),var(--orange));
  color:#000;
  text-decoration:none;
  font-size:14px;
}
/* ================= NAVBAR ================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 9999;

  background: rgba(5, 11, 30, 0.85);
  backdrop-filter: blur(14px);

  display: flex;
  align-items: center;
}

/* container for proper alignment */
.nav-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 22px;

  display: flex;
  align-items: center;
}

/* Logo */
.logo {
  font-family: 'Marcellus', serif;
  font-size: 22px;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;

  text-shadow: 0 0 14px rgba(212,175,55,0.6);
}

/* ================= DESKTOP MENU ================= */

.nav-links {
  margin-left: auto;
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ================= HAMBURGER ================= */

.hamburger {
  display: none;
  width: 30px;
  height: 22px;
  cursor: pointer;
  margin-left: auto;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin: 5px 0;
  transition: 0.3s;
}

/* ================= MOBILE MENU ================= */

@media (max-width: 768px) {

  .hamburger {
    display: block;
    z-index: 10001;
  }

  .nav-links {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    background: linear-gradient(
      180deg,
      #050b1e 0%,
      #1a1036 100%
    );

    display: flex;
    flex-direction: column;
    align-items: center;

    /* 🔥 YAHI MAIN FIX HAI */
    justify-content: flex-start;   /* center ki jagah top se */
    padding-top: 140px;            /* options thode upar */

    gap: 22px;

    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;

    transition:
      opacity 0.35s ease,
      transform 0.35s ease;

    z-index: 10000;
  }

  .nav-links.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.6px;
  }
}


/* ================= ANIMATED ASTRO BACKGROUND ================= */

.astro-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background:
    /* Big soft stars */
    radial-gradient(2px 2px at 15% 20%, rgba(255,255,255,0.7), transparent),
    radial-gradient(2px 2px at 70% 30%, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 40% 80%, rgba(255,255,255,0.65), transparent),
    radial-gradient(2px 2px at 85% 65%, rgba(255,255,255,0.7), transparent),

    /* Small stars */
    radial-gradient(1px 1px at 25% 60%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 55% 10%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 90% 40%, rgba(255,255,255,0.4), transparent),

    /* Astrology energy clouds */
    radial-gradient(circle at 30% 40%, rgba(120,70,200,0.25), transparent 65%),
    radial-gradient(circle at 70% 60%, rgba(255,160,60,0.18), transparent 70%),

    /* Base cosmic gradient */
    linear-gradient(135deg, #050b1e, #1a1036, #050b1e);

  background-size:
    1200px 1200px,
    1400px 1400px,
    1600px 1600px,
    1800px 1800px,

    900px 900px,
    1100px 1100px,
    1300px 1300px,

    100% 100%,
    100% 100%,

    400% 400%;

  animation:
    starsMove 180s linear infinite,
    cosmicGlow 25s ease-in-out infinite;
}

/* ================= ANIMATIONS ================= */

@keyframes starsMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -2000px 2000px;
  }
}

@keyframes cosmicGlow {
  0% {
    filter: brightness(1) saturate(1);
  }
  50% {
    filter: brightness(1.1) saturate(1.15);
  }
  100% {
    filter: brightness(1) saturate(1);
  }
}
/* ================= ASTRO FOOTER ================= */

.astro-footer {
  position: relative;
  padding: 90px 20px 60px;
  background:
    linear-gradient(180deg, rgba(5,11,30,0.95), rgba(26,16,54,0.95));
  overflow: hidden;
}

/* Soft top glow */
.astro-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 70%;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  box-shadow: 0 0 25px rgba(212,175,55,0.6);
}

/* Inner wrapper */
.footer-inner {
  max-width: 900px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Brand */
.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 30px;
  background: linear-gradient(135deg, #d4af37, #ff9f1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

/* Tagline */
.footer-tagline {
  font-size: 14px;
  color: #cfcfcf;
  margin-bottom: 35px;
}

/* CTA Button */
.footer-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  background: linear-gradient(135deg, #d4af37, #ff9f1c);
  box-shadow: 0 0 30px rgba(212,175,55,0.45);
  transition: all 0.4s ease;
}

.footer-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 45px rgba(212,175,55,0.7);
}

/* Social Icons */
.footer-social {
  margin: 40px 0 30px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 0 20px rgba(212,175,55,0.25);
}

.social-icon:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(212,175,55,0.65);
}

/* Divider */
.footer-divider {
  width: 70%;
  height: 1px;
  margin: 30px auto;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
}

/* Credit */
.footer-credit {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 12px;
}

.footer-credit span {
  color: #d4af37;
}

/* Contact */
.footer-contact {
  font-size: 13px;
  color: #aaa;
}

.footer-contact a {
  color: #d4af37;
  text-decoration: none;
}

/* ================= MOBILE ================= */

@media (max-width: 520px) {

  .footer-brand {
    font-size: 24px;
  }

  .footer-btn {
    padding: 12px 28px;
    font-size: 13px;
  }

  .social-icon {
    width: 42px;
    height: 42px;
  }
}
/* ================= FLOATING WHATSAPP BUTTON ================= */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 26px;
  text-decoration: none;

  z-index: 99999;

  box-shadow:
    0 0 18px rgba(37, 211, 102, 0.6),
    0 0 35px rgba(37, 211, 102, 0.35);

  transition: all 0.35s ease;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 0 28px rgba(37, 211, 102, 0.8),
    0 0 55px rgba(37, 211, 102, 0.55);
}

/* Soft pulse (divine feel) */
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  opacity: 0;
  animation: whatsappPulse 2.5s infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ================= MOBILE ADJUST ================= */
@media (max-width: 520px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 24px;
    right: 16px;
    bottom: 16px;
  }
}
/* ================= MOVING OFFER STRIP ================= */

.offer-strip {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    rgba(5,11,30,0.9),
    rgba(26,16,54,0.95),
    rgba(5,11,30,0.9)
  );
  border-top: 1px solid rgba(212,175,55,0.35);
  border-bottom: 1px solid rgba(212,175,55,0.35);
  padding: 10px 0;
}

/* Moving track */
.offer-track {
  display: flex;
  width: max-content;
  animation: offerScroll 28s linear infinite;
}

/* Text style */
.offer-track span {
  white-space: nowrap;
  padding-right: 60px;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;

  background: linear-gradient(135deg, #d4af37, #ff9f1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 0 12px rgba(212,175,55,0.45);
}

/* Animation */
@keyframes offerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 520px) {
  .offer-track span {
    font-size: 15px;
    padding-right: 40px;
  }
}
.youtube-section {
  padding: 100px 20px;
}

.youtube-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.youtube-title {
  font-family: 'Cinzel', serif;
  font-size: 34px;
  margin-bottom: 40px;
  color: #d4af37;
  text-shadow: 0 0 18px rgba(212,175,55,0.4);
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 ratio */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(212,175,55,0.35);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: auto;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.youtube-section {
  padding: 70px 6%;
}

.youtube-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.youtube-title {
  margin-bottom: 30px;
}

/* RESPONSIVE & DEVICE-SAFE VIDEO */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;   /* 🔥 FIXES MOBILE ISSUE */
  overflow: hidden;
  border-radius: 18px;
  background: #000;
}

/* iframe FIX */
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}
