/* =====================================================
   Astro Saurabh - Light Theme Styles
   Bootstrap 5 + custom animations
   ===================================================== */
:root {
  --bs-primary: #6c3df0;
  --bs-primary-rgb: 108, 61, 240;
  --bs-secondary: #0ea5e9;
  --gold: #f5b301;
  --gold-soft: #ffd766;
  --deep: #241b4d;
  --body-bg: #f8f7ff;
  --card-radius: 18px;
  --shadow: 0 12px 34px rgba(36, 27, 77, .10);
  --shadow-lg: 0 22px 55px rgba(36, 27, 77, .18);
}

* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
  background: var(--body-bg);
  color: #34305a;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { color: var(--deep); font-weight: 700; }

a { text-decoration: none; }
.text-gold { color: var(--gold) !important; }
.bg-soft { background: linear-gradient(135deg, #f3efff, #e9f6ff); }

.btn { border-radius: 50rem; font-weight: 600; }
.btn-primary { background: linear-gradient(135deg, #7c4dff, #5b3ae0); border: 0; box-shadow: 0 8px 20px rgba(108, 61, 240, .35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(108, 61, 240, .45); }
.btn-gold { background: linear-gradient(135deg, #ffc83d, #f5a623); color: #3a2c00; border: 0; box-shadow: 0 8px 20px rgba(245, 179, 1, .4); }
.btn-gold:hover { color: #3a2c00; transform: translateY(-2px); }
.btn-outline-primary { border-color: var(--bs-primary); color: var(--bs-primary); }
.btn-outline-primary:hover { background: var(--bs-primary); color: #fff; }

/* ---------- Topbar ---------- */
.topbar { background: var(--deep); color: #cfc9f5; font-size: .85rem; }
.topbar a { color: #cfc9f5; }
.topbar a:hover { color: var(--gold); }
.topbar .socials a { width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.08); margin-left: 6px; }
.topbar .socials a:hover { background: var(--gold); color: var(--deep); }
.btn-currency {
  color: #efeaff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  font-size: .8rem; border-radius: 50rem; padding: .28rem .85rem;
}
.btn-currency:hover, .btn-currency:focus { color: #fff; background: rgba(255,255,255,.2); }
.currency-symbol { color: var(--gold-soft); font-weight: 700; }
.btn-currency-side {
  color: #efeaff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  font-size: .82rem; border-radius: 10px;
}
.btn-currency-side:hover, .btn-currency-side:focus, .btn-currency-side.show {
  color: #fff; background: rgba(255,255,255,.18);
}

/* ---------- Navbar ---------- */
.navbar-main { background: #fff; box-shadow: 0 4px 24px rgba(36,27,77,.07); }
.navbar-main .nav-link { color: var(--deep); font-weight: 500; padding: .6rem 1rem !important; position: relative; }
.navbar-main .nav-link:hover, .navbar-main .nav-link.active { color: var(--bs-primary); }
.navbar-main .nav-link::after {
  content: ""; position: absolute; left: 1rem; right: 1rem; bottom: .25rem; height: 2px;
  background: linear-gradient(90deg, var(--bs-primary), var(--gold)); border-radius: 2px;
  transform: scaleX(0); transition: transform .3s ease;
}
.navbar-main .nav-link:hover::after, .navbar-main .nav-link.active::after { transform: scaleX(1); }
.cart-badge { position: relative; }
.cart-badge .badge { position: absolute; top: -6px; right: -8px; background: var(--gold); color: var(--deep); font-size: .68rem; }
.brand-logo img { height: 52px; transition: transform .4s ease; }
.brand-logo:hover img { transform: rotate(-6deg) scale(1.05); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 640px; display: flex; align-items: center; color: #fff;
  background: linear-gradient(120deg, #2b1a6b 0%, #4b2cbf 45%, #0ea5e9 130%);
  overflow: hidden;
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(6px); opacity: .18; animation: floaty 9s ease-in-out infinite;
}
.hero::before { width: 420px; height: 420px; background: radial-gradient(circle, #ffd766, transparent 70%); top: -120px; right: -80px; }
.hero::after { width: 340px; height: 340px; background: radial-gradient(circle, #38bdf8, transparent 70%); bottom: -90px; left: -60px; animation-delay: 3s; }

.star-layer { position: absolute; inset: 0; pointer-events: none; }
.star { position: absolute; background: #fff; border-radius: 50%; opacity: .8; animation: twinkle 3s ease-in-out infinite; }
.planet-ring {
  position: absolute; width: 130px; height: 130px; border-radius: 50%;
  border: 14px solid rgba(255,215,102,.85); border-right-color: transparent; top: 18%; right: 12%;
  animation: spin 18s linear infinite; opacity: .9;
}
.hero-content { position: relative; z-index: 2; animation: fadeUp 1s ease both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3); padding: .4rem 1.1rem; border-radius: 50rem;
  backdrop-filter: blur(6px); font-size: .85rem; letter-spacing: .5px;
}
.hero h1 { color: #fff; font-size: clamp(1.9rem, 4.5vw, 3.4rem); line-height: 1.15; }
.hero h1 .grad {
  background: linear-gradient(90deg, var(--gold-soft), #fff, #9bd8ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { color: #ded8ff; font-size: 1.05rem; max-width: 640px; }
.hero-stats { display: flex; gap: 2.2rem; flex-wrap: wrap; }
.hero-stats .num { font-size: 1.9rem; font-weight: 800; color: var(--gold-soft); }
.hero-stats .lbl { font-size: .85rem; color: #c8c1f2; }
.hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-shapes .orb {
  position: absolute; width: 70px; height: 70px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.25));
  box-shadow: 0 0 40px rgba(255,255,255,.35); animation: floaty 7s ease-in-out infinite;
}

/* ---------- Animated astrology backdrop ---------- */
.astro-art { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }

.zodiac-wheel {
  position: absolute; right: 3%; top: 50%; transform: translateY(-50%);
  width: 300px; height: 300px; animation: floaty 9s ease-in-out infinite;
}
.zodiac-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px dashed rgba(255,215,102,.35); animation: spin 90s linear infinite; }
.zodiac-ring::after {
  content: ""; position: absolute; inset: 12%; border-radius: 50%;
  border: 1px dotted rgba(255,215,102,.28); animation: spin 45s linear infinite reverse;
}
.zodiac-core {
  position: absolute; left: 50%; top: 50%; width: 10px; height: 10px; margin: -5px 0 0 -5px;
  border-radius: 50%; background: var(--gold-soft); box-shadow: 0 0 18px var(--gold-soft);
  animation: breathe 4s ease-in-out infinite;
}
.zodiac-wheel > span {
  position: absolute; left: 50%; top: 50%; width: 26px; height: 26px; margin: -13px 0 0 -13px;
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
  font-family: "Segoe UI Symbol", "Noto Sans Symbols", sans-serif;
  color: rgba(255,215,102,.92); text-shadow: 0 0 12px rgba(255,215,102,.75);
  transform: rotate(calc(var(--i) * 30deg)) translateY(-140px) rotate(calc(var(--i) * -30deg));
  animation: twinkle 3.2s ease-in-out infinite; animation-delay: calc(var(--i) * .2s);
}

.planet { position: absolute; border-radius: 50%; animation: floaty 8s ease-in-out infinite; }
.p-saturn {
  width: 46px; height: 46px; top: 15%; left: 5%;
  background: radial-gradient(circle at 32% 30%, #ffe9c7, #f5a623 55%, #b35a00);
  box-shadow: 0 0 26px rgba(245,166,35,.55);
}
.p-saturn::after {
  content: ""; position: absolute; inset: -18%;
  border: 8px solid rgba(255,215,102,.55); border-top-color: transparent; border-bottom-color: transparent;
  transform: rotate(-18deg) scaleY(.5); border-radius: 50%;
}
.p-mars {
  width: 30px; height: 30px; top: 60%; left: 17%;
  background: radial-gradient(circle at 32% 30%, #ffb3a7, #e2533e 60%, #7c1f12);
  box-shadow: 0 0 20px rgba(226,83,62,.5); animation-delay: 1.4s;
}
.p-neptune {
  width: 24px; height: 24px; top: 24%; right: 26%;
  background: radial-gradient(circle at 32% 30%, #d9f0ff, #3aa6e0 60%, #14539e);
  box-shadow: 0 0 18px rgba(58,166,224,.55); animation-delay: 2.6s;
}

.sun { position: absolute; bottom: 9%; right: 13%; width: 62px; height: 62px; animation: spin 26s linear infinite; }
.sun::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #fff6c8, var(--gold-soft) 55%, #f5a623);
  box-shadow: 0 0 34px rgba(255,215,102,.7);
}
.sun::after {
  content: ""; position: absolute; inset: -18px; border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, transparent 0 12deg, rgba(255,215,102,.5) 12deg 20deg);
  animation: spin 9s linear infinite reverse;
}

.shooting-star {
  position: absolute; top: 16%; right: -20%; width: 110px; height: 2px; opacity: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0), #fff);
  animation: shoot 7s ease-in infinite;
}
.hero-card {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  border-radius: 22px; padding: 1.6rem; backdrop-filter: blur(10px); animation: fadeUp 1s .25s ease both;
}
.hero-card input, .hero-card textarea, .hero-card select { border-radius: 12px; border: 0; }
.hero-card .form-label { color: #efeaff; font-size: .82rem; }

/* ---------- Hero slider ---------- */
.hero-carousel .carousel-item { min-height: 560px; position: relative; }
.hero-carousel .carousel-indicators { margin-bottom: 16px; }
.hero-carousel .carousel-indicators [data-bs-target] {
  width: 34px; height: 6px; border-radius: 50rem; border: 0; opacity: .45;
  background: var(--gold-soft); transition: width .3s ease, opacity .3s ease;
}
.hero-carousel .carousel-indicators .active { width: 52px; opacity: 1; }
.hero-carousel .carousel-control-prev, .hero-carousel .carousel-control-next {
  width: 46px; height: 46px; top: 50%; transform: translateY(-50%);
  border-radius: 50%; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  opacity: .75;
}
.hero-carousel .carousel-control-prev { left: 4px; }
.hero-carousel .carousel-control-next { right: 4px; }

.hero-photo-wrap { position: relative; display: flex; justify-content: center; padding: 20px 8px 10px; }
.hero-photo {
  position: relative; z-index: 2; max-height: 470px; object-fit: cover; width: 100%;
  border-radius: 26px !important; animation: floaty 6s ease-in-out infinite;
  box-shadow: 0 30px 60px rgba(0,0,0,.42), 0 0 0 4px rgba(255,215,102,.55);
}
.hero-photo-ring {
  position: absolute; top: 6%; left: 50%; width: 88%; height: 94%;
  transform: translateX(-50%); border-radius: 32px;
  border: 3px dashed rgba(255,215,102,.5); z-index: 1; animation: spin 40s linear infinite;
}
.hero-photo-glow {
  position: absolute; top: 6%; left: 50%; width: 88%; height: 94%; border-radius: 32px;
  transform: translateX(-50%); z-index: 0; animation: breathe 5s ease-in-out infinite;
  background: radial-gradient(ellipse at center, rgba(255,215,102,.38), transparent 68%);
}
.hero-float-icon {
  position: absolute; z-index: 3; width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
  color: var(--deep); background: var(--gold-soft); box-shadow: 0 10px 24px rgba(0,0,0,.32);
  animation: floaty 5s ease-in-out infinite;
}
.hero-float-icon.f1 { top: 4%; right: 2%; animation-delay: .3s; background: #fff; color: var(--bs-primary); }
.hero-float-icon.f2 { bottom: 12%; left: 0; animation-delay: 1.2s; }
.hero-float-icon.f3 { top: 38%; left: -3%; width: 42px; height: 42px; font-size: 1.1rem; animation-delay: 2s; background: #fff; color: var(--gold); }

.hero-bg-slide { position: absolute; inset: 0; z-index: 0; }
.hero-bg-slide img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 16s ease-in-out infinite alternate; }
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(43,26,107,.93) 0%, rgba(75,44,191,.8) 50%, rgba(14,165,233,.62) 100%);
}
.hero-bg-slide + .row { position: relative; z-index: 1; }

.hero-list li { display: flex; gap: .6rem; margin-bottom: .7rem; color: #e3defc; }
.hero-list li .bi { color: var(--gold-soft); font-size: 1.15rem; }

.carousel-item.active .hero-content { animation: fadeUp .8s ease both; }
.carousel-item.active .hero-photo-wrap { animation: fadeUp .8s .15s ease both; }
.carousel-item.active .hero-card { animation: fadeUp .8s .25s ease both; }

/* ---------- Section headers ---------- */
.sec-head { margin-bottom: 2.6rem; }
.sec-head .eyebrow {
  display: inline-block; color: var(--bs-primary); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; font-size: .78rem;
  background: rgba(108,61,240,.08); padding: .3rem 1rem; border-radius: 50rem;
}
.sec-head h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.sec-head .sub { color: #6b6599; max-width: 640px; margin: auto; }

/* ---------- Cards ---------- */
.category-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: #fff; border: 2px solid #e9e6fb; border-radius: 18px; padding: 1rem .5rem;
  text-align: center; color: var(--deep); font-size: .82rem; font-weight: 600;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; height: 100%;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--bs-primary); color: var(--deep); }
.cat-active .category-card { border-color: var(--bs-primary); background: #f1edff; box-shadow: var(--shadow); }
.category-icon {
  width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--bs-primary); background: linear-gradient(135deg, #efe9ff, #e2f4ff); overflow: hidden;
}
.category-icon img { width: 100%; height: 100%; object-fit: cover; }

.card-hover {
  border: 0; border-radius: var(--card-radius); overflow: hidden; box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease; background: #fff;
}
.card-hover:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-hover .card-img { height: 240px; object-fit: contain; width: 100%; transition: transform .6s ease; background: #f9f7ff; }
.card-hover:hover .card-img { transform: scale(1.06); }
.card-img-wrap { overflow: hidden; position: relative; }
.card-img-wrap .tag {
  position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--deep);
  font-size: .72rem; font-weight: 700; padding: .25rem .7rem; border-radius: 50rem; z-index: 2;
}
.card-img-wrap .tag.sale { background: #ef4444; color: #fff; }
.price { color: var(--bs-primary); font-weight: 800; font-size: 1.2rem; }
.price-old { color: #a5a1c4; text-decoration: line-through; font-size: .9rem; }
.chip { display: inline-flex; align-items: center; gap: 5px; font-size: .8rem; color: #5f5a8c; background: #f1eefe; border-radius: 50rem; padding: .3rem .75rem; }

/* ---------- Services ---------- */
.service-card {
  background: #fff; border-radius: var(--card-radius); padding: 1.9rem 1.5rem; text-align: center;
  box-shadow: var(--shadow); height: 100%; transition: transform .35s ease, box-shadow .35s ease; position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 4px;
  background: linear-gradient(90deg, var(--bs-primary), var(--gold)); transform: scaleX(0); transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 74px; height: 74px; margin: 0 auto 1.1rem; display: flex; align-items: center; justify-content: center;
  border-radius: 22px; font-size: 1.9rem; color: var(--bs-primary);
  background: linear-gradient(135deg, #efe9ff, #e2f4ff); transition: transform .4s ease;
}
.service-card:hover .icon { transform: rotateY(180deg); }

/* ---------- About ---------- */
.about-img-wrap { position: relative; padding: 16px; }
.about-img-wrap::after {
  content: ""; position: absolute; inset: 0; border: 3px dashed rgba(108,61,240,.35);
  border-radius: 26px; z-index: -1;
}
.about-photo { border-radius: 20px !important; box-shadow: 0 24px 60px rgba(43,26,107,.22); animation: about-bob 6s ease-in-out infinite, about-glow 4s ease-in-out infinite; }
@keyframes about-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes about-glow { 0%,100% { box-shadow: 0 24px 60px rgba(43,26,107,.22); } 50% { box-shadow: 0 34px 70px rgba(108,61,240,.4); } }
.feature-list li { display: flex; gap: .8rem; margin-bottom: .8rem; }
.feature-list .bi { color: var(--gold); }

/* ---------- Testimonials ---------- */
.testimonial {
  background: #fff; border-radius: var(--card-radius); padding: 1.8rem; box-shadow: var(--shadow);
  height: 100%; position: relative; transition: transform .3s ease;
}
.testimonial:hover { transform: translateY(-6px); }
.testimonial .quote-mark { font-size: 3rem; color: rgba(108,61,240,.15); line-height: 1; }
.testimonial .stars { color: var(--gold); }

/* ---------- CTA ---------- */
.cta-band {
  background: linear-gradient(115deg, #2b1a6b, #4b2cbf 60%, #0ea5e9);
  color: #fff; border-radius: 26px; padding: 3rem; position: relative; overflow: hidden;
}
.cta-band::before {
  content: "ॐ"; position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  font-size: 11rem; color: rgba(255,255,255,.08); font-weight: 700;
}
.cta-band h2 { color: #fff; }

/* ---------- Digital services (Website Development + Digital Marketing) ---------- */
.digi-section {
  background: linear-gradient(120deg, #2b1a6b 0%, #4b2cbf 50%, #0ea5e9 130%);
  padding: 4.5rem 0; position: relative; overflow: hidden;
}
.digi-section::before, .digi-section::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(14px); opacity: .22;
  animation: floaty 9s ease-in-out infinite;
}
.digi-section::before { width: 320px; height: 320px; background: radial-gradient(circle, #ffd766, transparent 70%); top: -120px; left: -60px; }
.digi-section::after { width: 300px; height: 300px; background: radial-gradient(circle, #38bdf8, transparent 70%); bottom: -100px; right: -60px; animation-delay: 2.5s; }
.digi-section .sec-head .eyebrow { background: rgba(255,215,102,.15); color: #ffd766; }
.digi-section .sec-head .sub { color: #d9d3f5; }
.digi-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(6px); border-radius: 24px; padding: 2rem; height: 100%;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
  position: relative; overflow: hidden;
}
.digi-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(20,10,60,.45); background: rgba(255,255,255,.11); }
.digi-card .digi-icon {
  width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; background: linear-gradient(135deg, #ffd766, #f5a623); color: var(--deep); margin-bottom: 1.1rem;
  box-shadow: 0 12px 26px rgba(245,166,35,.4);
}
.digi-card .digi-icon.alt { background: linear-gradient(135deg, #38bdf8, #7c3aed); color: #fff; box-shadow: 0 12px 26px rgba(56,189,248,.4); }
.digi-card h3 { color: #fff; font-size: 1.5rem; }
.digi-card .digi-desc { color: #d9d3f5; font-size: .95rem; }
.digi-card .digi-list { list-style: none; padding: 0; margin: 1.2rem 0 1.6rem; }
.digi-card .digi-list li { color: #efeaff; display: flex; gap: .6rem; align-items: flex-start; padding: .35rem 0; font-size: .93rem; }
.digi-card .digi-list li i { color: var(--gold); font-size: 1.05rem; margin-top: .1rem; }
.digi-card .digi-tag {
  position: absolute; top: 1.2rem; right: 1.2rem; background: rgba(255,215,102,.15); color: #ffd766;
  border: 1px solid rgba(255,215,102,.4); font-size: .72rem; font-weight: 600; letter-spacing: .6px;
  text-transform: uppercase; padding: .25rem .6rem; border-radius: 50rem;
}

/* ---------- Footer ---------- */
footer { background: #1d1547; color: #bdb6e8; }
footer h6 { color: #fff; letter-spacing: 1.5px; text-transform: uppercase; font-size: .85rem; }
footer a { color: #bdb6e8; }
footer a:hover { color: var(--gold); padding-left: 4px; }
footer .socials a {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,.08); margin-right: 8px; font-size: 1.05rem;
}
footer .socials a:hover { background: var(--gold); color: var(--deep); }
footer .bottom-bar { border-top: 1px solid rgba(255,255,255,.1); }

/* ---------- Page hero (inner) ---------- */
.page-hero {
  background: linear-gradient(120deg, #2b1a6b, #4b2cbf 55%, #0ea5e9);
  color: #fff; padding: 4rem 0; position: relative; overflow: hidden;
}
.page-hero::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(255,215,102,.3), transparent 70%); top: -120px; right: -60px; animation: floaty 8s ease-in-out infinite; }
.page-hero h1 { color: #fff; }
.page-hero .crumb { color: #cfc9f5; }
.page-hero .crumb a { color: var(--gold-soft); }

/* ---------- Auth / forms ---------- */
.auth-wrap { min-height: 70vh; display: flex; align-items: center; }
.form-control:focus, .form-select:focus { border-color: var(--bs-primary); box-shadow: 0 0 0 .25rem rgba(108,61,240,.12); }
label { font-weight: 500; }

/* ---------- Cart / order ---------- */
.cart-table img { width: 64px; height: 64px; object-fit: cover; border-radius: 12px; }
.qty-box { display: inline-flex; align-items: center; border: 1px solid #dcd8f2; border-radius: 50rem; overflow: hidden; }
.qty-box button { border: 0; background: #f1eefe; width: 34px; height: 34px; font-weight: 700; color: var(--deep); }
.qty-box input { width: 52px; border: 0; text-align: center; height: 34px; font-weight: 600; }
.order-summary { background: #fff; border-radius: var(--card-radius); box-shadow: var(--shadow); }

/* ---------- Product gallery ---------- */
.gallery-main { border-radius: var(--card-radius); overflow: hidden; box-shadow: var(--shadow); }
.thumb-list img { width: 82px; height: 82px; object-fit: cover; border-radius: 14px; cursor: pointer; opacity: .6; transition: .3s; }
.thumb-list img.active, .thumb-list img:hover { opacity: 1; box-shadow: 0 0 0 3px var(--bs-primary); }

/* ---------- Login / admin ---------- */
.admin-body { background: #f3f1fb; }
.sidebar { background: var(--deep); min-height: 100vh; }
.sidebar .nav-link { color: #c7c0ee; border-radius: 10px; margin-bottom: 4px; }
.sidebar .nav-link:hover, .sidebar .nav-link.active { background: rgba(255,255,255,.1); color: #fff; }
.stat-card { border-radius: 16px; border: 0; box-shadow: var(--shadow); }
.stat-card .ic { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }

/* ---------- Animations ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes twinkle { 0%,100% { opacity: .25; } 50% { opacity: 1; } }
@keyframes breathe { 0%,100% { opacity: .45; transform: translateX(-50%) scale(1); } 50% { opacity: 1; transform: translateX(-50%) scale(1.05); } }
@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1.16); } }
@keyframes pulse-glow { 0%,100% { box-shadow: 0 0 0 0 rgba(245,179,1,.5); } 50% { box-shadow: 0 0 0 16px rgba(245,179,1,0); } }
@keyframes pulse-gold { 0%,100% { box-shadow: 0 6px 18px rgba(108,61,240,.35); transform: scale(1); } 50% { box-shadow: 0 6px 28px rgba(245,179,1,.55); transform: scale(1.04); } }
@keyframes shoot {
  0% { transform: translate(0, 0) rotate(-24deg); opacity: 0; }
  5% { opacity: 1; }
  13% { transform: translate(-340px, 150px) rotate(-24deg); opacity: 0; }
  100% { transform: translate(-340px, 150px) rotate(-24deg); opacity: 0; }
}

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; } .reveal-d3 { transition-delay: .3s; }

.whatsapp-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 1050; width: 58px; height: 58px;
  border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 8px 24px rgba(37,211,102,.5); animation: pulse-glow 2.2s infinite;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.08); }

/* ---------- Floating currency switcher ---------- */
.currency-float {
  position: fixed; bottom: 90px; right: 22px; z-index: 1050;
}
.currency-float-btn {
  width: 58px; height: 58px; border-radius: 18px; border: 0; cursor: pointer;
  background: linear-gradient(135deg, #ffd766, #f5a623);
  color: var(--deep); font-size: 1.45rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(245,166,35,.5); transition: transform .2s ease;
  animation: pulse-glow 2.2s infinite; position: relative;
}
.currency-float-btn:hover, .currency-float-btn:focus { color: var(--deep); transform: scale(1.08); }
.currency-float-btn .cc-swap {
  position: absolute; top: 5px; left: 5px; font-size: .62rem; opacity: .7;
}
.currency-float-btn .cc-caret {
  position: absolute; top: -7px; right: -7px; width: 22px; height: 22px; border-radius: 50%;
  background: #2b1a6b; color: #ffd766;
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 700; box-shadow: 0 2px 8px rgba(43,26,107,.45);
}
.currency-float-btn .currency-symbol { color: var(--deep); }
.currency-float-menu {
  position: absolute; bottom: 68px; right: 0; display: none;
  background: #fff; border-radius: 16px; box-shadow: 0 18px 50px rgba(20,10,60,.22);
  padding: .5rem; min-width: 215px;
}
.currency-float-menu.show { display: block; animation: fadeUp .25s ease both; }
.currency-float-item {
  display: flex; align-items: baseline; gap: 8px; padding: .55rem .9rem;
  border-radius: 10px; color: var(--deep); font-weight: 600; font-size: .92rem; text-decoration: none;
}
.currency-float-item:hover { background: #f1edff; color: var(--bs-primary); }
.currency-float-item.active { background: #f1edff; color: var(--bs-primary); }
.currency-float-item .csym { color: var(--gold); font-size: 1rem; width: 24px; text-align: center; }
.currency-float-item small { font-weight: 400; color: #8a86ad; margin-left: auto; }

.spinner-border { width: 1.2rem; height: 1.2rem; }

/* ---------- Product gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.gf-btn {
  border: 1px solid #e2def7; background: #fff; color: var(--deep);
  padding: .5rem 1.15rem; border-radius: 50rem; font-size: .86rem; font-weight: 600;
  transition: all .25s ease;
}
.gf-btn:hover { border-color: var(--bs-primary); color: var(--bs-primary); }
.gf-btn.active { background: var(--bs-primary); border-color: var(--bs-primary); color: #fff; box-shadow: 0 8px 18px rgba(108,61,240,.3); }

.gallery-tile {
  background: #fff; border-radius: 18px; overflow: hidden; height: 100%;
  border: 1px solid #eee; box-shadow: 0 6px 18px rgba(43,26,107,.07);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.gallery-tile:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(43,26,107,.16); }
.gallery-tile-img { position: relative; overflow: hidden; background: #f5f3ff; }
.gallery-tile-img a { display: block; width: 100%; }
.gallery-tile-img img { width: 100%; height: 220px; object-fit: contain; display: block; background: #f9f7ff; }
.gallery-tile-body { padding: .9rem 1rem .95rem; flex-grow: 1; display: flex; flex-direction: column; }

/* ---------- Landing page ---------- */
.landing-hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(120deg, var(--lp, #2b1a6b) 0%, #4b2cbf 55%, var(--lp2, #ffd766) 135%);
  min-height: 640px; display: flex; align-items: center; padding: 5rem 0;
}
.landing-hero::before, .landing-hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(8px); opacity: .22; animation: floaty 9s ease-in-out infinite;
}
.landing-hero::before { width: 420px; height: 420px; background: radial-gradient(circle, var(--lp2, #ffd766), transparent 70%); top: -110px; right: -70px; }
.landing-hero::after { width: 360px; height: 360px; background: radial-gradient(circle, #38bdf8, transparent 70%); bottom: -100px; left: -60px; animation-delay: 3s; }
.landing-stars { position: absolute; inset: 0; pointer-events: none; }
.landing-stars .star { position: absolute; background: #fff; border-radius: 50%; opacity: .8; animation: twinkle 3s ease-in-out infinite; }
.lfl { position: absolute; pointer-events: none; font-size: 2.4rem; color: var(--lp2, #ffd766); opacity: .5; animation: floaty 8s ease-in-out infinite; text-shadow: 0 0 24px rgba(255,215,102,.6); }
.lf1 { top: 12%; left: 8%; }
.lf2 { top: 22%; right: 14%; font-size: 1.9rem; animation-delay: 1.2s; }
.lf3 { bottom: 16%; left: 14%; font-size: 1.4rem; animation-delay: 1.9s; }
.lf4 { bottom: 20%; right: 8%; font-size: 2rem; animation-delay: 2.6s; }

.landing-badge {
  display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.3); padding: .4rem 1.1rem; border-radius: 50rem;
  backdrop-filter: blur(6px); font-size: .85rem; letter-spacing: .5px; animation: fadeUp .6s ease both;
}
.landing-hero h1 { color: #fff; font-size: clamp(1.9rem, 4.5vw, 3.3rem); line-height: 1.12; animation: fadeUp .6s .1s ease both; text-shadow: 0 4px 24px rgba(0,0,0,.25); }
.landing-tag { color: #ded8ff; font-size: 1.08rem; max-width: 620px; animation: fadeUp .6s .18s ease both; }
.landing-chips { display: flex; flex-wrap: wrap; gap: 10px; animation: fadeUp .6s .24s ease both; }
.landing-chips span {
  display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22); padding: .4rem .9rem; border-radius: 50rem;
  font-size: .84rem; color: #efeaff;
}
.landing-chips .bi { color: var(--lp2, #ffd766); }
.landing-price { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; animation: fadeUp .6s .3s ease both; }
.lp-now { font-size: 2.1rem; font-weight: 800; color: var(--lp2, #ffd766); }
.lp-was { font-size: 1.3rem; color: #c9c2f0; text-decoration: line-through; }
.lp-save { background: #22c55e; color: #fff; font-weight: 700; font-size: .82rem; padding: .35rem .8rem; border-radius: 50rem; }
.landing-note { color: #c9c2f0; font-size: .88rem; animation: fadeUp .6s .36s ease both; }
.landing-note .bi { color: #4ade80; }
.landing-cta { animation: fadeUp .6s .42s ease both; box-shadow: 0 14px 34px rgba(0,0,0,.25); }
.landing-cta2 { animation: fadeUp .6s .48s ease both; }

.batch-card {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.28); border-radius: 24px;
  padding: 1.6rem 1.4rem; backdrop-filter: blur(12px); box-shadow: 0 30px 60px rgba(0,0,0,.28);
  animation: fadeUp .7s .2s ease both;
}
.bc-head { color: #fff; font-weight: 700; margin-bottom: 1rem; }
.countdown { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-bottom: 1.1rem; }
.cd-box { flex: 1; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 14px; padding: .7rem 0; text-align: center; }
.cd-num { font-size: 1.7rem; font-weight: 800; color: var(--lp2, #ffd766); line-height: 1; }
.cd-lbl { font-size: .68rem; color: #c9c2f0; text-transform: uppercase; letter-spacing: 1px; margin-top: .25rem; }
.cd-sep { color: #fff; font-weight: 700; }
.bc-soon { background: rgba(255,215,102,.16); border: 1px dashed var(--lp2, #ffd766); color: #fff; text-align: center; padding: .8rem; border-radius: 12px; margin-bottom: 1.1rem; font-weight: 600; }
.bc-rows div { display: flex; align-items: center; gap: 10px; padding: .5rem .2rem; border-bottom: 1px dashed rgba(255,255,255,.14); color: #ded8ff; font-size: .9rem; }
.bc-rows div:last-child { border-bottom: 0; }
.bc-rows .bi { color: var(--lp2, #ffd766); font-size: 1.05rem; }
.bc-rows span { flex: 1; }
.bc-rows b { color: #fff; }

.landing-strip { padding: 2.2rem 0; background: var(--lp, #2b1a6b); border-bottom: 1px solid rgba(255,255,255,.08); }
.landing-strip .ls-box .bi { font-size: 1.5rem; color: var(--lp2, #ffd766); }
.landing-strip .ls-num { font-weight: 800; margin-top: .3rem; font-size: 1.05rem; color: #fff; }
.landing-strip .ls-lbl { font-size: .78rem; color: #c9c2f0; }

.landing-about { color: #5f5a86; }
.landing-about p { margin-bottom: .8rem; }
.lp-feature { background: #fff; border-radius: 18px; padding: 1.6rem; height: 100%; box-shadow: 0 8px 24px rgba(43,26,107,.08); border: 1px solid #eee; transition: transform .3s ease, box-shadow .3s ease; }
.lp-feature:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(43,26,107,.16); }
.lp-feature .icon { width: 52px; height: 52px; border-radius: 16px; background: rgba(108,61,240,.1); color: var(--bs-primary); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem; }
.lp-feature h5 { color: var(--deep); }

.landing-faq .accordion-item { border: 0; margin-bottom: 10px; border-radius: 14px !important; overflow: hidden; box-shadow: 0 6px 18px rgba(43,26,107,.07); }
.landing-faq .accordion-button { font-weight: 600; color: var(--deep); }
.landing-faq .accordion-button:not(.collapsed) { background: rgba(108,61,240,.07); color: var(--bs-primary); box-shadow: none; }

.reserve-card { background: linear-gradient(120deg, var(--lp, #2b1a6b) 0%, #4b2cbf 60%, var(--lp2, #ffd766) 150%); border-radius: 26px; padding: 2.6rem; box-shadow: 0 30px 70px rgba(43,26,107,.3); }
.reserve-form { background: #fff; border-radius: 20px; padding: 1.6rem; box-shadow: 0 20px 50px rgba(0,0,0,.22); }
.featured-cta { background: linear-gradient(120deg, var(--lp, #2b1a6b) 0%, #4b2cbf 70%, var(--lp2, #ffd766) 160%); border-radius: 22px; padding: 2rem; box-shadow: 0 24px 60px rgba(43,26,107,.28); }

/* Featured landing banner (homepage) */
.featured-banner {
  position: relative; overflow: hidden; border-radius: 24px; color: #fff; padding: 2.4rem;
  background: linear-gradient(120deg, #2b1a6b 0%, #4b2cbf 60%, #7c3aed 100%);
  box-shadow: 0 24px 60px rgba(43,26,107,.3);
}
.landing-nav {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, #2b1a6b 0%, #4b2cbf 60%, #7c3aed 100%);
  color: #fff !important; border-radius: 50rem; padding: .45rem 1.1rem !important; margin: .2rem 0;
  animation: landing-blink 1.6s ease-in-out infinite;
}
.navbar-main .landing-nav::after {
  content: "✦"; position: absolute; top: 4px; right: 8px; left: auto; bottom: auto; width: auto; height: auto;
  color: #ffd766; font-size: 13px; line-height: 1;
  text-shadow: 0 0 10px rgba(255,215,102,.95), 0 0 18px rgba(255,215,102,.5);
  background: none; border-radius: 0; transform: none; opacity: 0;
  animation: landing-sparkle 1.3s ease-in-out infinite;
  pointer-events: none; z-index: 2;
}
.landing-nav::before {
  content: ""; position: absolute; top: -50%; left: -80%; width: 45%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg); pointer-events: none; z-index: 1;
  animation: landing-sweep 2.6s linear infinite;
}
@keyframes landing-blink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,179,1,.0), 0 6px 18px rgba(108,61,240,.35); filter: brightness(1); }
  50% { box-shadow: 0 0 0 7px rgba(245,179,1,.28), 0 6px 26px rgba(245,179,1,.65); filter: brightness(1.25); }
}
@keyframes landing-sweep {
  0% { left: -80%; }
  60%, 100% { left: 130%; }
}
@keyframes landing-sparkle {
  0%, 100% { opacity: 0; transform: scale(.4) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.3) rotate(35deg); }
}

/* ---------- Diwali cracker bursts (landing-nav pill) ---------- */
.cracker-burst { position: fixed; z-index: 9999; pointer-events: none; }
.cracker-burst .cb-spark {
  position: absolute; left: 0; top: 0; width: 7px; height: 7px; border-radius: 50%;
  background: var(--cb-color, #ffd766); box-shadow: 0 0 10px 1px var(--cb-color, #ffd766);
  animation: cb-fly 1s cubic-bezier(.12,.6,.35,1) both;
}
@keyframes cb-fly {
  0% { transform: translate(0,0) scale(1); opacity: 1; }
  35% { opacity: 1; }
  100% { transform: translate(var(--cb-x), var(--cb-y)) scale(.25); opacity: 0; }
}
.landing-nav.cb-flash {
  animation: landing-blink 1.6s ease-in-out infinite, cb-flash .55s ease-out;
}
@keyframes cb-flash {
  0% { box-shadow: 0 0 0 0 rgba(255,215,102,0); filter: brightness(1.4); }
  35% { box-shadow: 0 0 0 14px rgba(255,215,102,.5); filter: brightness(1.9); }
  100% { box-shadow: 0 0 0 0 rgba(255,215,102,0); filter: brightness(1); }
}
.featured-banner::before, .featured-banner::after { content: ""; position: absolute; border-radius: 50%; filter: blur(10px); opacity: .25; animation: floaty 9s ease-in-out infinite; }
.featured-banner::before { width: 300px; height: 300px; background: radial-gradient(circle, #ffd766, transparent 70%); top: -110px; right: -60px; }
.featured-banner::after { width: 260px; height: 260px; background: radial-gradient(circle, #38bdf8, transparent 70%); bottom: -90px; left: -50px; animation-delay: 2.5s; }

/* ---------- Videos (My Videos) ---------- */
.video-stage .ratio { background: #000; }
.video-tag { width: 100%; height: 100%; border-radius: 16px; background: #000; display: block; }
.video-embed { width: 100%; height: 100%; border: 0; border-radius: 16px; }
.playlist { max-height: 720px; overflow-y: auto; }
.playlist-course h6 { border-bottom: 1px solid #eee; padding-bottom: .5rem; }
.video-card {
  display: flex; gap: 12px; align-items: center; padding: 10px; border-radius: 14px;
  cursor: pointer; transition: background .2s ease, transform .2s ease; border: 1px solid transparent;
}
.video-card:hover { background: #f5f2ff; }
.video-card.active { background: rgba(108,61,240,.08); border-color: rgba(108,61,240,.35); }
.video-card .thumb {
  flex: 0 0 54px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, #7c4dff, #f5a623);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.15rem;
}
.video-card .vc-title { font-size: .9rem; font-weight: 600; color: var(--deep); line-height: 1.3; }
.video-card .vc-dur { font-size: .76rem; color: #8a86a8; margin-top: 2px; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .navbar-main .nav-link::after { display: none; }
  .hero { min-height: auto; padding: 4rem 0; }
  .hero-stats { gap: 1.2rem; }
  .hero-carousel .carousel-item { min-height: 460px; }
  .hero-photo { max-height: 380px; }
  .sidebar { min-height: auto; }
  .zodiac-wheel { width: 230px; height: 230px; right: 1%; opacity: .85; }
  .zodiac-wheel > span { transform: rotate(calc(var(--i) * 30deg)) translateY(-105px) rotate(calc(var(--i) * -30deg)); }
  .sun { right: 8%; }
}
@media (max-width: 767px) {
  .zodiac-wheel, .shooting-star, .p-neptune { display: none; }
  .p-saturn { width: 34px; height: 34px; }
  .p-mars { width: 22px; height: 22px; }
  .sun { width: 44px; height: 44px; }
}
@media (max-width: 575px) {
  .cta-band { padding: 2rem; }
  .topbar .hide-sm { display: none !important; }
}
