/* ============================================================
   Pious Vastu Energy — Main Stylesheet
   Palette: Obsidian Black, Royal Gold, Pure White
   Typeface: Cinzel (display) + Lato (body)
   ============================================================ */

:root {
  --black:     #0A0A0A;
  --black-2:   #111111;
  --black-3:   #1A1A1A;
  --black-4:   #222222;
  --black-5:   #2C2C2C;
  --gold:      #C9A227;
  --gold-lt:   #E8C45A;
  --gold-dk:   #9A7A1A;
  --gold-shine:#FFD700;
  --white:     #8B6A00;
  --off-white: #F5F0E8;
  --text:      #8B6A00;
  --text-muted:#8A7F6E;
  --text-dark: #1A1A1A;
  --border:    rgba(201,162,39,0.25);
  --border-lt: rgba(201,162,39,0.12);
  --shadow:    0 8px 32px rgba(0,0,0,0.6);
  --shadow-gold: 0 4px 20px rgba(201,162,39,0.2);
  --radius:    8px;
  --transition:0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--black);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-lt); }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h1,h2,h3,h4 { font-family: 'Cinzel', serif; line-height: 1.3; }

/* ── Top Bar ──────────────────────────────────────────── */
.topbar {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  padding: 7px 0;
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.topbar i { margin-right: 4px; color: var(--gold); }

/* ── Header ───────────────────────────────────────────── */
.site-header {
  background: var(--black-2);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; gap: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img {
  height: 90px; width: 90px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold-dk);
  background: var(--black);
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Cinzel', serif;
  font-size: 18px; font-weight: 700;
  color: var(--gold-lt);
  letter-spacing: 1px;
  line-height: 1.2;
}
.logo-tag { font-size: 9px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }

/* Search */
.header-search { flex: 1; display: flex; max-width: 480px; }
.header-search input {
  flex: 1; padding: 10px 16px;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 13px;
  background: var(--black-3);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.header-search input::placeholder { color: var(--text-muted); }
.header-search input:focus { border-color: var(--gold); }
.header-search button {
  padding: 10px 16px;
  background: var(--gold);
  border: none; border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--black); cursor: pointer; font-size: 14px;
  transition: background var(--transition);
}
.header-search button:hover { background: var(--gold-lt); }

/* Header Icons */
.header-icons { display: flex; gap: 20px; font-size: 18px; }
.header-icons a { color: var(--text-muted); position: relative; transition: color var(--transition); }
.header-icons a:hover { color: var(--gold-lt); }
.cart-icon { position: relative; }
.cart-badge {
  position: absolute; top: -8px; right: -10px;
  background: var(--gold); color: var(--black);
  font-size: 10px; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ── Navigation ───────────────────────────────────────── */
.main-nav {
  background: var(--black-3);
  border-top: 1px solid var(--border-lt);
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.nav-links { list-style: none; display: flex; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; padding: 12px 16px;
  color: var(--text-muted); font-size: 12px;
  letter-spacing: 1px; text-transform: uppercase; font-weight: 700;
  transition: all var(--transition); position: relative;
}
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 2px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold-lt); }
.nav-links > li > a:hover::after { transform: scaleX(1); }

.has-dropdown:hover .dropdown { display: block; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--black-3); border: 1px solid var(--border);
  border-top: 2px solid var(--gold); min-width: 220px;
  list-style: none; box-shadow: var(--shadow); z-index: 999;
  border-radius: 0 0 var(--radius) var(--radius);
}
.dropdown li a {
  display: block; padding: 10px 18px; color: var(--text-muted); font-size: 13px;
  border-bottom: 1px solid var(--border-lt); transition: all var(--transition);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--black-4); color: var(--gold-lt); padding-left: 24px; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--text-muted); padding: 8px 14px; border-radius: 4px;
  cursor: pointer; font-size: 13px; margin: 8px 0;
}

/* ── Flash ────────────────────────────────────────────── */
.flash { text-align: center; padding: 12px 20px; font-size: 14px; font-weight: 600; }
.flash-success { background: #0d2b0d; color: #4ade80; border-bottom: 1px solid #166534; }
.flash-error { background: #2b0d0d; color: #f87171; border-bottom: 1px solid #991b1b; }

/* ── Gold Divider ─────────────────────────────────────── */
.gold-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 14px auto 0;
}

/* ── Hero Slider ──────────────────────────────────────── */
.hero-slider { position: relative; overflow: hidden;width: 100%; height: 520px; background: var(--black); }
.hero-slide {
  position: absolute; inset: 0; display: flex; align-items: center;width: 100%;
  opacity: 0; transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 10; }
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,162,39,0.08) 0%, transparent 60%),
              linear-gradient(135deg, #0A0A0A 0%, #111111 50%, #0A0A0A 100%);
}
/* Animated gold particles */
.hero-content::before {
  content: "";
  position: absolute;
  inset: -20px -30px; /* bleed slightly beyond text for a soft padded look */
  background: linear-gradient(90deg, 
    rgba(13,13,13,0.95) 0%, 
    rgba(13,13,13,0.85) 70%, 
    rgba(13,13,13,0) 100%);
  z-index: -1;
  border-radius: 8px;
}
.hero-content {
  position: relative;
  max-width: 800px; /* cap width so text doesn't run into the image zone */
  padding: 40px 30px;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.hero-content h1 {
  font-size: 48px; line-height: 1.1; margin-bottom: 20px; color: var(--white);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}
.hero-content h1 span { color: var(--gold-lt); }
.hero-content p { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; max-width: 480px; line-height: 1.8; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img-side {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 320px; opacity: 0.12;
  font-size: 220px; line-height: 1; text-align: center; z-index: 1;
  pointer-events: none;
}

.slider-nav {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(201,162,39,0.3);
  cursor: pointer; border: 1px solid var(--gold-dk); transition: all var(--transition);
}
.slider-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ── Visitor Verification Modal ───────────────────────── */
.visitor-modal-overlay {
  position: fixed; inset: 0; z-index: 999999; display: flex;
  align-items: center; justify-content: center; background: rgba(0,0,0,0.92);
  padding: 24px; overflow-y: auto;
}
.visitor-modal {
  width: 100%; max-width: 520px; background: var(--black-2);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 28px; box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}
.visitor-modal-header h2 {
  margin-bottom: 8px; font-size: 24px; color: var(--gold-lt);
}
.visitor-modal-header p {
  margin-bottom: 24px; color: var(--text-muted); font-size: 14px; line-height: 1.7;
}
.visitor-form .form-row { margin-bottom: 18px; }
.visitor-form label {
  display: block; margin-bottom: 8px; font-size: 13px; color: var(--text-muted);
}
.visitor-form input {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--black);
  color: var(--white); font-size: 14px;
}
.visitor-otp-section { margin-top: 20px; }
.visitor-note { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.visitor-otp-card {
  padding: 16px 18px; border: 1px dashed var(--gold);
  border-radius: 12px; margin-bottom: 16px; background: rgba(201,162,39,0.08);
  color: var(--white); font-weight: 700; line-height: 1.6;
}
.visitor-status, .visitor-error {
  padding: 12px 14px; border-radius: 12px; margin-top: 12px; font-size: 13px;
}
.visitor-status { background: rgba(34,197,94,0.12); color: #d1fae5; }
.visitor-error { background: rgba(248,113,113,0.15); color: #fecaca; }
.visitor-verify-form .btn { width: 100%; }
.hidden { display: none !important; }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 12px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; border: 1px solid transparent; transition: all var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt));
  color: var(--black); border-color: var(--gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt), var(--gold-shine));
  color: var(--black); transform: translateY(-1px); box-shadow: var(--shadow-gold);
}
.btn-outline { background: transparent; border-color: var(--gold); color: var(--gold-lt); }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-dark { background: var(--black-3); border-color: var(--border); color: var(--text); }
.btn-dark:hover { border-color: var(--gold); color: var(--gold-lt); }
.btn-sm { padding: 7px 16px; font-size: 11px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ── Section Common ───────────────────────────────────── */
.section { padding: 64px 0; }
.section-alt { background: var(--black-2); }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: 32px; color: var(--white); margin-bottom: 10px; }
.section-title h2 span { color: var(--gold-lt); }
.section-title p { color: var(--text-muted); max-width: 520px; margin: 0 auto; font-size: 14px; }

/* ── Trust Bar ────────────────────────────────────────── */
.trust-bar { background: var(--black-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.trust-item { text-align: center; }
.trust-item .icon { font-size: 26px; margin-bottom: 6px; color: var(--gold); }
.trust-item h4 { font-size: 12px; font-family: 'Lato',sans-serif; font-weight: 700; color: var(--white); letter-spacing: 0.5px; }
.trust-item p { font-size: 11px; color: var(--text-muted); }

/* ── Category Cards ───────────────────────────────────── */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(130px,1fr)); gap: 16px; }
.category-card {
  background: var(--black-3); border: 1px solid var(--border-lt);
  border-radius: var(--radius); padding: 22px 12px; text-align: center;
  transition: all var(--transition); cursor: pointer;
}
.category-card:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: var(--shadow-gold); background: var(--black-4);
}
.category-card .icon { font-size: 36px; margin-bottom: 10px; }
.category-card h3 { font-size: 12px; color: var(--gold-lt); font-family: 'Cinzel', serif; letter-spacing: 0.5px; }

/* ── Product Cards ────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 20px; }
.product-card {
  background: var(--black-3); border: 1px solid var(--border-lt);
  border-radius: var(--radius); overflow: hidden; transition: all var(--transition); position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,162,39,0.15);
  border-color: var(--gold);
}
.product-img-wrap {
  position: relative; height: 220px; overflow: hidden; background: var(--black-4);
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.badge-discount {
  position: absolute; top: 10px; left: 10px;
  background: var(--gold); color: var(--black);
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px;
}
.badge-energized {
  position: absolute; top: 10px; right: 10px;
  background: rgba(0,0,0,0.7); color: var(--gold-lt); border: 1px solid var(--gold-dk);
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px;
}
.product-actions-hover {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,0.92); display: flex; justify-content: center; gap: 12px;
  padding: 12px; transform: translateY(100%); transition: transform var(--transition);
}
.product-card:hover .product-actions-hover { transform: translateY(0); }
.product-actions-hover a {
  color: var(--gold-lt); font-size: 14px; width: 34px; height: 34px;
  border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.product-actions-hover a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.wishlist-btn.active { background: #b8324a; color: #fff; border-color: #b8324a; }
.wishlist-btn.active:hover { background: #a02a40; color: #fff; border-color: #a02a40; }
.product-detail-wishlist {
  width: 48px; height: 48px; border-radius: 8px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--gold-lt); flex-shrink: 0; transition: all var(--transition);
}
.product-detail-wishlist:hover { border-color: var(--gold); color: var(--gold); }

.product-info { padding: 16px; }
.product-info .cat-tag {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.product-info h3 {
  font-size: 14px; color: var(--white); margin-bottom: 10px;
  font-family: 'Lato',sans-serif; font-weight: 700; line-height: 1.4;
}
.product-info h3 a:hover { color: var(--gold-lt); }
.product-price { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.price-sale { font-size: 18px; font-weight: 700; color: var(--gold-lt); font-family: 'Cinzel', serif; }
.price-original { font-size: 12px; color: var(--text-muted); text-decoration: line-through; }
.btn-cart {
  width: 100%; background: transparent;
  border: 1px solid var(--gold-dk); color: var(--gold-lt);
  padding: 10px; font-size: 12px; font-weight: 700; border-radius: var(--radius);
  cursor: pointer; letter-spacing: 1px; text-transform: uppercase;
  transition: all var(--transition);
}
.btn-cart:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ── Services ─────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 20px; }
.service-card {
  background: var(--black-3); border: 1px solid var(--border-lt);
  border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 28px;
  transition: all var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); border-left-color: var(--gold-lt); }
.service-icon { font-size: 36px; margin-bottom: 14px; }
.service-card h3 { font-size: 16px; color: var(--white); margin-bottom: 10px; }
.service-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.service-card .price { font-size: 22px; font-weight: 700; color: var(--gold-lt); font-family: 'Cinzel',serif; margin-bottom: 16px; }

/* ── Zodiac ───────────────────────────────────────────── */
.zodiac-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
.zodiac-card {
  text-align: center; padding: 14px 6px; border: 1px solid var(--border-lt);
  border-radius: var(--radius); background: var(--black-3); cursor: pointer; transition: all var(--transition);
}
.zodiac-card:hover { background: var(--gold); border-color: var(--gold); transform: scale(1.05); }
.zodiac-card:hover .z-name { color: var(--black); }
.zodiac-card .z-symbol { font-size: 26px; margin-bottom: 6px; }
.zodiac-card .z-name { font-size: 10px; font-weight: 700; letter-spacing: 0.5px; color: var(--text-muted); }

/* ── Testimonials ─────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 20px; }
.testimonial-card {
  background: var(--black-3); border: 1px solid var(--border-lt);
  border-radius: var(--radius); padding: 28px; position: relative;
}
.testimonial-card::before {
  content: '"'; font-size: 80px; color: rgba(201,162,39,0.08);
  font-family: Georgia,serif; position: absolute; top: 10px; left: 20px; line-height: 1;
}
.testimonial-stars { color: var(--gold); margin-bottom: 14px; font-size: 13px; }
.testimonial-card p { font-size: 13px; color: var(--text-muted); font-style: italic; margin-bottom: 18px; line-height: 1.8; position: relative; z-index: 1; }
.testimonial-author strong { color: var(--gold-lt); font-size: 13px; }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ── Blog Cards ───────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 24px; }
.blog-card { background: var(--black-3); border: 1px solid var(--border-lt); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); border-color: var(--gold-dk); }
.blog-card-img { height: 160px; background: var(--black-4); display: flex; align-items: center; justify-content: center; font-size: 56px; }
.blog-card-body { padding: 20px; }
.blog-card-body .tags span { background: rgba(201,162,39,0.1); color: var(--gold); font-size: 10px; padding: 3px 8px; border-radius: 3px; margin-right: 4px; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid var(--border); }
.blog-card-body h3 { font-size: 15px; margin: 10px 0 8px; color: var(--white); }
.blog-card-body h3 a:hover { color: var(--gold-lt); }
.blog-card-body p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.blog-card-body .read-more { color: var(--gold); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }

/* ── Calculator CTA ───────────────────────────────────── */
.calc-cta {
  background: linear-gradient(135deg, var(--black-2) 0%, var(--black-3) 50%, var(--black-2) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 64px 20px; text-align: center;
}
.calc-cta h2 { font-size: 32px; color: var(--gold-lt); margin-bottom: 12px; }
.calc-cta p { color: var(--text-muted); margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; font-size: 14px; }

/* ── Page Header ──────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-3) 100%);
  border-bottom: 1px solid var(--border);
  padding: 44px 20px; color: white; text-align: center;
}
.page-header h1 { font-size: 34px; color: var(--gold-lt); margin-bottom: 8px; }
.page-header p { color: var(--text-muted); font-size: 14px; }
.breadcrumb { color: var(--text-muted); font-size: 12px; margin-top: 10px; }
.breadcrumb a { color: var(--gold); }

/* ── Cart Table ───────────────────────────────────────── */
.cart-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.cart-table th { background: var(--black-3); color: var(--gold-lt); padding: 13px 14px; text-align: left; font-family: 'Cinzel',serif; font-size: 11px; letter-spacing: 1px; border-bottom: 2px solid var(--gold-dk); }
.cart-table td { padding: 13px 14px; border-bottom: 1px solid var(--border-lt); color: var(--text); }
.cart-table tr:hover td { background: var(--black-4); }
.cart-product-img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; border: 1px solid var(--border); }

/* ── Order Summary ────────────────────────────────────── */
.order-summary { background: var(--black-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.order-summary h3 { font-size: 17px; color: var(--gold-lt); margin-bottom: 16px; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 13px; color: var(--text-muted); }
.summary-row.total { font-weight: 700; font-size: 18px; color: var(--gold-lt); border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px; }

/* ── Forms ────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; margin-bottom: 6px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.form-control {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 14px; font-family: 'Lato',sans-serif;
  outline: none; transition: border-color var(--transition);
  background: var(--black-4); color: var(--text);
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Product Detail ───────────────────────────────────── */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-main-img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); background: var(--black-3); }
.product-detail-info h1 { font-size: 26px; color: var(--white); margin-bottom: 12px; }
.product-detail-price { font-size: 30px; font-weight: 700; color: var(--gold-lt); font-family: 'Cinzel',serif; }
.product-detail-price .orig { font-size: 16px; color: var(--text-muted); text-decoration: line-through; margin-left: 10px; font-family: 'Lato',sans-serif; }
.product-benefits { list-style: none; margin: 14px 0; }
.product-benefits li { padding: 6px 0; font-size: 13px; color: var(--text-muted); border-bottom: 1px solid var(--border-lt); }
.product-benefits li::before { content: '✦ '; color: var(--gold); font-weight: 700; }
.qty-selector { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.qty-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--black-4);
  font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--gold-lt); transition: all var(--transition);
}
.qty-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.qty-input {
  width: 56px; text-align: center; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 7px; font-size: 15px; font-weight: 700;
  background: var(--black-4); color: var(--white);
}

/* ── UPI Payment Box ──────────────────────────────────── */
.upi-box {
  background: var(--black-3); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; text-align: center;
}
.upi-box .qr-wrap {
  background: white; padding: 14px; border-radius: 8px;
  display: inline-block; margin: 16px 0;
}
.upi-box .qr-wrap img { width: 180px; height: 180px; }
.upi-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,162,39,0.1); border: 1px solid var(--border);
  color: var(--gold-lt); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700;
}

/* ── Footer ───────────────────────────────────────────── */
.site-footer { background: var(--black); border-top: 1px solid var(--border); }
.footer-top { padding: 56px 0 40px; }
.footer-grid { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo img { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--gold-dk); }
.footer-logo span { font-family: 'Cinzel',serif; font-size: 16px; color: var(--gold-lt); }
.footer-about p { font-size: 13px; line-height: 1.8; color: var(--text-muted); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: var(--black-3); border: 1px solid var(--border); color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-size: 13px; transition: all var(--transition); }
.footer-social a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.footer-col h4 { font-family: 'Cinzel',serif; font-size: 13px; color: var(--gold-lt); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border-lt); letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: var(--text-muted); transition: all var(--transition); }
.footer-col ul li a:hover { color: var(--gold-lt); padding-left: 4px; }

.footer-newsletter { background: var(--black-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 20px; text-align: center; }
.footer-newsletter h4 { color: var(--gold-lt); font-family: 'Cinzel',serif; margin-bottom: 14px; font-size: 16px; }
.newsletter-form { display: flex; max-width: 460px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 12px 16px; border: 1px solid var(--border); border-right: none; border-radius: var(--radius) 0 0 var(--radius); background: var(--black-3); color: var(--text); font-size: 13px; outline: none; }
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button { padding: 12px 22px; background: var(--gold); border: none; border-radius: 0 var(--radius) var(--radius) 0; color: var(--black); font-weight: 700; font-size: 12px; cursor: pointer; letter-spacing: 1px; text-transform: uppercase; transition: background var(--transition); }
.newsletter-form button:hover { background: var(--gold-lt); }

.footer-bottom { background: var(--black); border-top: 1px solid var(--border-lt); padding: 16px 0; }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-bottom strong { color: var(--gold-lt); }
.footer-trust { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-trust span { font-size: 11px; color: var(--text-muted); }

/* ── WhatsApp + Back to Top ───────────────────────────── */
.whatsapp-btn {
  position: fixed; bottom: 80px; right: 20px;
  background: #25D366; color: white; width: 50px; height: 50px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 24px; box-shadow: 0 4px 16px rgba(37,211,102,0.4); z-index: 999; transition: all var(--transition);
}
.whatsapp-btn:hover { background: #1ebe5b; transform: scale(1.1); color: white; }

.back-to-top {
  position: fixed; bottom: 20px; right: 20px;
  background: var(--black-3); border: 1px solid var(--border); color: var(--gold-lt);
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer; font-size: 14px;
  display: none; align-items: center; justify-content: center;
  box-shadow: var(--shadow); z-index: 999; transition: all var(--transition);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ── Qty Btn ──────────────────────────────────────────── */
.qty-btn { background: var(--black-4); border-color: var(--border); }

/* ── Utility ──────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.p-4 { padding: 32px; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-content h1 { font-size: 32px; }
  .hero-slider { height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .zodiac-grid { grid-template-columns: repeat(4,1fr); }
  .trust-bar-inner { grid-template-columns: repeat(2,1fr); }
  .product-detail-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .topbar-right { display: none; }
  .header-inner { flex-wrap: wrap; }
  .header-search { order: 3; flex-basis: 100%; max-width: 100%; }
  .logo-name { font-size: 14px; }
  .nav-toggle { display: block; }
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 10px 0; border-bottom: 1px solid var(--border-lt); }
  .nav-links > li > a::after { display: none; }
  .dropdown { position: static; border: none; box-shadow: none; background: var(--black-4); }
  .hero-slider { height: auto; min-height: 340px; }
  .hero-content { padding: 40px 20px; }
  .hero-content h1 { font-size: 26px; }
  .hero-img-side { display: none; }
  .category-grid { grid-template-columns: repeat(3,1fr); }
  .zodiac-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: repeat(2,1fr); }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
