:root {
  --bg: #2a0a0e;
  --bg-elevated: #3a1218;
  --bg-soft: rgba(0, 0, 0, 0.28);
  --gold: #d4a94e;
  --gold-deep: #b8860b;
  --gold-pale: #e8cd8a;
  --cream: #f6ead8;
  --body: #cdb9a4;
  --nav: #e8d9c2;
  --wa: #1f7a4d;
  --wa-bright: #1f9d55;
  --form-bg: #f6ead8;
  --ink: #2a0a0e;
  --success: #155c39;
  --danger: #8b1e2d;
  --radius: 12px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", system-ui, sans-serif;
  --font-hi: "Tiro Devanagari Hindi", serif;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--body);
  line-height: 1.65;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-pale); }
.container { width: min(1140px, 92%); margin: 0 auto; }

/* Promo + nav */
.promo {
  background: linear-gradient(90deg, #8b6914, #d4a94e, #e8cd8a, #d4a94e, #8b6914);
  background-size: 200% 100%;
  animation: shimmer 7s linear infinite;
  color: var(--ink);
  text-align: center;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
}
.promo a { color: var(--ink); font-weight: 600; border-bottom: 1px solid rgba(42,10,14,.35); }
@keyframes shimmer { to { background-position: 200% 50%; } }

.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(42, 10, 14, 0.94);
  border-bottom: 1px solid rgba(212, 169, 78, 0.2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.85rem 0;
}
.nav-right { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.nav-mobile-wa { display: none; }
.nav-login-desktop, .nav-signup-desktop { display: inline-flex; }
.brand { display: flex; align-items: center; gap: 0.75rem; color: var(--cream); }
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--gold); display: grid; place-items: center;
  font-size: 1.35rem; color: var(--gold); font-family: var(--font-serif);
}
.brand-text strong {
  display: block; font-family: var(--font-serif); font-size: 1.22rem;
  font-weight: 600; color: var(--cream); line-height: 1.1;
}
.brand-text span { font-family: var(--font-hi); font-size: 0.76rem; color: var(--gold-pale); }
.nav-links { display: flex; align-items: center; gap: 1.15rem; list-style: none; flex-wrap: wrap; }
.nav-links a { color: var(--nav); font-size: 0.92rem; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
/* Auth only once: desktop uses .nav-right buttons; mobile menu uses these */
.nav-auth-mobile { display: none; }
.nav-toggle {
  display: none; background: transparent; border: 1px solid rgba(212,169,78,.4);
  color: var(--gold); width: 42px; height: 42px; border-radius: 8px; cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border: none; cursor: pointer; font-family: var(--font-sans); font-weight: 500;
  font-size: 0.92rem; border-radius: 999px; padding: 0.72rem 1.35rem;
  transition: .15s ease;
}
.btn:active { transform: scale(0.98); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--ink); box-shadow: 0 4px 18px rgba(212,169,78,.25);
}
.btn-gold:hover { color: var(--ink); filter: brightness(1.05); }
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1px solid rgba(212,169,78,.55);
}
.btn-outline:hover { background: rgba(212,169,78,.1); color: var(--gold-pale); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-bright); color: #fff; }
.btn-sm { padding: 0.48rem 1rem; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Flash */
.flash {
  margin: 1rem auto 0; padding: 0.85rem 1rem; border-radius: 8px; font-size: 0.92rem;
}
.flash-success { background: #e7f3ea; color: var(--success); border: 1px solid #1f7a4d; }
.flash-error { background: #fde8eb; color: var(--danger); border: 1px solid #c45c6a; }

/* Typography sections */
.page-hero {
  padding: 3.2rem 0 2rem;
  border-bottom: 1px solid rgba(212,169,78,.15);
  background: radial-gradient(ellipse at top, rgba(212,169,78,.08), transparent 60%);
}
.page-hero h1 {
  font-family: var(--font-serif); color: var(--cream);
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600; margin-bottom: 0.5rem;
}
.page-hero p { max-width: 40rem; }
.eyebrow {
  color: var(--gold); text-transform: uppercase; letter-spacing: .14em;
  font-size: 0.72rem; font-weight: 500; margin-bottom: 0.55rem;
}
h1,h2,h3 { font-family: var(--font-serif); color: var(--cream); font-weight: 600; line-height: 1.2; }
.section { padding: 3.25rem 0; }
.section-alt { background: rgba(0,0,0,.16); }
.section-head { text-align: center; margin-bottom: 2rem; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 0.4rem; }
.section-head p { max-width: 36rem; margin: 0 auto; }
.hi { font-family: var(--font-hi); color: var(--gold-pale); }

/* ===== Reviews slider ===== */
.reviews-section {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212,169,78,.12), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(120,30,40,.25), transparent 45%),
    rgba(0,0,0,.12);
}
.reviews-slider {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 3rem;
}
.reviews-viewport {
  overflow: hidden;
  border-radius: 18px;
}
.reviews-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(.22,.68,0,1.1);
  will-change: transform;
}
.review-card {
  flex: 0 0 100%;
  box-sizing: border-box;
  background: linear-gradient(160deg, rgba(62,18,24,.92), rgba(42,10,14,.96));
  border: 1px solid rgba(212,169,78,.28);
  border-radius: 18px;
  padding: 1.75rem 1.6rem 1.5rem;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.review-stars {
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  text-shadow: 0 0 12px rgba(212,169,78,.35);
}
.review-text {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  line-height: 1.55;
  color: var(--cream);
  margin: 0 0 1.35rem;
  flex: 1;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(212,169,78,.18);
  padding-top: 1rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 25%, #f0d78c, #b8862d 55%, #6b3a12);
  color: #2a0a0e;
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
  border: 1px solid rgba(255,230,170,.45);
}
.review-meta strong {
  display: block;
  color: var(--cream);
  font-size: 0.98rem;
  font-weight: 600;
}
.review-meta span {
  display: block;
  font-size: 0.82rem;
  color: rgba(245,232,210,.72);
  margin-top: 0.15rem;
}
.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-70%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212,169,78,.45);
  background: rgba(42,10,14,.85);
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: grid;
  place-items: center;
  transition: background .2s, transform .2s, border-color .2s;
}
.reviews-nav:hover {
  background: rgba(212,169,78,.18);
  border-color: var(--gold);
  transform: translateY(-70%) scale(1.05);
}
.reviews-prev { left: 0; }
.reviews-next { right: 0; }
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.15rem;
  flex-wrap: wrap;
}
.reviews-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(212,169,78,.55);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: transform .2s, background .2s;
}
.reviews-dot.active {
  background: var(--gold);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(212,169,78,.45);
}
.reviews-dot:hover { background: rgba(212,169,78,.45); }

@media (max-width: 720px) {
  .reviews-slider { padding: 0 2.4rem; }
  .review-card { min-height: 260px; padding: 1.35rem 1.15rem 1.2rem; }
  .reviews-nav {
    width: 36px;
    height: 36px;
    font-size: 1.35rem;
  }
}
@media (max-width: 420px) {
  .reviews-slider { padding: 0 2.1rem; }
  .reviews-nav { top: auto; bottom: 2.6rem; transform: none; }
  .reviews-nav:hover { transform: scale(1.05); }
  .reviews-prev { left: 0.15rem; }
  .reviews-next { right: 0.15rem; }
  .review-card { min-height: 280px; }
}

/* Home hero */
.home-hero {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.5rem;
  align-items: center; padding: 4rem 0 2.5rem;
}
.home-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.35rem); margin-bottom: .55rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.hero-art { position: relative; display: grid; place-items: center; min-height: 300px; }
.hero-ring {
  width: min(300px, 80vw); height: min(300px, 80vw); border-radius: 50%;
  border: 2px dashed rgba(212,169,78,.45); position: absolute;
  animation: spin 40s linear infinite;
}
.hero-portrait {
  width: min(230px, 62vw); height: min(270px, 70vw);
  border-radius: 50% 50% 40% 40% / 45% 45% 55% 55%;
  border: 2px solid rgba(212,169,78,.55);
  background: repeating-linear-gradient(-45deg, rgba(212,169,78,.08), rgba(212,169,78,.08) 8px, transparent 8px, transparent 16px);
  display: grid; place-items: center; text-align: center; padding: 1.2rem;
  color: var(--gold-pale); font-size: .85rem; z-index: 1;
}
@keyframes spin { to { transform: rotate(360deg); } }

.stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; padding: 1rem 0 3rem;
}
.stat {
  background: var(--bg-soft); border: 1px solid rgba(212,169,78,.18);
  border-radius: var(--radius); padding: 1.2rem 1rem; text-align: center;
}
.stat strong {
  display: block; font-family: var(--font-serif); font-size: 1.7rem;
  color: var(--gold); margin-bottom: .15rem;
}

/* Cards / grids */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.15rem; }

.card {
  background: rgba(0,0,0,.24); border: 1px solid rgba(212,169,78,.2);
  border-radius: var(--radius); padding: 1.25rem; display: flex; flex-direction: column; gap: .5rem;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: rgba(212,169,78,.5); transform: translateY(-2px); }
.card h3 { font-size: 1.18rem; }
.card p { font-size: .92rem; flex: 1; }
.monogram {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(212,169,78,.5);
  display: grid; place-items: center; font-family: var(--font-hi); color: var(--gold); font-size: 1.05rem;
}
.price {
  font-family: var(--font-serif); font-size: 1.35rem; color: var(--gold); font-weight: 600;
}
.price small { font-family: var(--font-sans); font-size: .75rem; color: var(--body); font-weight: 400; }
.tag {
  display: inline-block; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); padding: .2rem .55rem; border-radius: 999px;
  font-weight: 600; width: fit-content;
}
.card-actions { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .35rem; }

/* Products */
.product-media {
  aspect-ratio: 1; border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(212,169,78,.25); background: #1a0609;
  margin-bottom: .35rem;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.filters {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 1.75rem;
}
.filter-btn {
  background: rgba(0,0,0,.25); border: 1px solid rgba(212,169,78,.25);
  color: var(--nav); border-radius: 999px; padding: .45rem .95rem;
  font-family: var(--font-sans); font-size: .85rem; cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--gold); color: var(--gold); background: rgba(212,169,78,.1);
}
.product-detail {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.5rem; align-items: start;
  padding: 2.5rem 0 3.5rem;
}
.product-detail-media {
  border-radius: 16px; overflow: hidden; border: 1px solid rgba(212,169,78,.3);
  background: #1a0609; aspect-ratio: 1; box-shadow: var(--shadow);
}
.product-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.benefit-list { list-style: none; margin: 1rem 0 1.5rem; }
.benefit-list li {
  padding: .45rem 0 .45rem 1.4rem; position: relative; border-bottom: 1px solid rgba(212,169,78,.12);
}
.benefit-list li::before {
  content: "âœ¦"; position: absolute; left: 0; color: var(--gold); font-size: .8rem;
}

/* Auth + forms */
.auth-wrap {
  min-height: 70vh; display: grid; place-items: center; padding: 2.5rem 0;
}
.auth-card {
  width: min(440px, 100%); background: var(--form-bg); color: var(--ink);
  border-radius: 16px; padding: 2rem; box-shadow: var(--shadow);
}
.auth-card h1 { color: var(--ink); font-size: 1.85rem; margin-bottom: .35rem; }
.auth-card .sub { color: #5c4630; margin-bottom: 1.25rem; font-size: .92rem; }
.field { margin-bottom: .9rem; }
.field label {
  display: block; font-size: .8rem; font-weight: 500; margin-bottom: .3rem; color: #4a3520;
}
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid #cbb894; border-radius: 8px;
  padding: .72rem .85rem; font-family: var(--font-sans); font-size: .95rem;
  background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid rgba(184,134,11,.35); border-color: var(--gold-deep);
}
.auth-alt { margin-top: 1rem; text-align: center; font-size: .9rem; color: #5c4630; }
.auth-alt a { color: var(--gold-deep); font-weight: 600; }
.form-error {
  background: #fde8eb; color: var(--danger); border: 1px solid #c45c6a;
  border-radius: 8px; padding: .7rem .85rem; margin-bottom: 1rem; font-size: .9rem;
}
.form-light {
  background: var(--form-bg); color: var(--ink); border-radius: 14px;
  padding: 1.5rem; box-shadow: var(--shadow);
}
.form-light h2, .form-light h3 { color: var(--ink); }

/* Account */
.account-layout {
  display: grid; grid-template-columns: 240px 1fr; gap: 1.5rem;
  padding: 2rem 0 3.5rem; align-items: start;
}
.account-nav {
  background: rgba(0,0,0,.28); border: 1px solid rgba(212,169,78,.2);
  border-radius: var(--radius); padding: 1rem; position: sticky; top: 90px;
}
.account-nav h3 {
  font-size: 1rem; margin-bottom: .75rem; padding-bottom: .6rem;
  border-bottom: 1px solid rgba(212,169,78,.15);
}
.account-nav a {
  display: block; color: var(--nav); padding: .55rem .65rem; border-radius: 8px;
  font-size: .92rem; margin-bottom: .2rem;
}
.account-nav a:hover, .account-nav a.active {
  background: rgba(212,169,78,.12); color: var(--gold);
}
.account-panel {
  background: rgba(0,0,0,.22); border: 1px solid rgba(212,169,78,.2);
  border-radius: var(--radius); padding: 1.5rem;
}
.account-panel h1 { font-size: 1.75rem; margin-bottom: .35rem; }
.account-panel .lede { margin-bottom: 1.25rem; }
.stat-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 1.5rem;
}
.mini-stat {
  background: rgba(0,0,0,.25); border: 1px solid rgba(212,169,78,.18);
  border-radius: 10px; padding: 1rem; text-align: center;
}
.mini-stat strong { display: block; font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold); }
.table-wrap { overflow-x: auto; }
table.data {
  width: 100%; border-collapse: collapse; font-size: .9rem;
}
table.data th, table.data td {
  text-align: left; padding: .75rem .6rem;
  border-bottom: 1px solid rgba(212,169,78,.15);
}
table.data th { color: var(--gold-pale); font-weight: 500; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }
.badge {
  display: inline-block; font-size: .72rem; padding: .2rem .55rem; border-radius: 999px;
  border: 1px solid rgba(212,169,78,.35); color: var(--gold-pale);
}
.badge.paid { border-color: #1f7a4d; color: #7dcea0; }
.badge.pending { border-color: #b8860b; color: var(--gold); }

/* FAQ */
.faq-item { border-bottom: 1px solid rgba(212,169,78,.2); }
.faq-item button {
  width: 100%; text-align: left; background: transparent; border: none;
  color: var(--cream); font-family: var(--font-sans); font-size: 1rem;
  font-weight: 500; padding: 1.1rem 0; cursor: pointer;
  display: flex; justify-content: space-between; gap: 1rem;
}
.faq-item .answer { display: none; padding: 0 0 1.1rem; font-size: .95rem; }
.faq-item.open .answer { display: block; }

/* Horoscope */
.zodiac-row { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 1.5rem; }
.zodiac-btn {
  background: rgba(0,0,0,.25); border: 1px solid rgba(212,169,78,.25);
  color: var(--nav); border-radius: 999px; padding: .45rem .85rem;
  font-family: var(--font-sans); font-size: .85rem; cursor: pointer;
}
.zodiac-btn.active, .zodiac-btn:hover {
  border-color: var(--gold); color: var(--gold); background: rgba(212,169,78,.1);
}
.horoscope-panel {
  max-width: 640px; margin: 0 auto; background: rgba(0,0,0,.25);
  border: 1px solid rgba(212,169,78,.25); border-radius: var(--radius);
  padding: 1.75rem; text-align: center;
}

/* Footer */
footer {
  border-top: 1px solid rgba(212,169,78,.2); padding: 3rem 0 1.5rem; margin-top: 1rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem;
}
footer h4 { font-family: var(--font-serif); color: var(--cream); margin-bottom: .75rem; font-size: 1.12rem; }
footer ul { list-style: none; }
footer li { margin-bottom: .4rem; }
footer a { color: var(--body); font-size: .92rem; }
footer a:hover { color: var(--gold); }
.footer-blurb { font-size: .92rem; margin-bottom: .75rem; }
.footer-social { display: flex; flex-wrap: wrap; gap: .55rem; margin: .75rem 0 1rem; }
.footer-social a {
  border: 1px solid rgba(212,169,78,.4); border-radius: 999px;
  padding: .32rem .8rem; font-size: .8rem; color: var(--gold-pale);
}
.pay-badges { display: flex; flex-wrap: wrap; gap: .35rem; }
.pay-badges span {
  font-size: .68rem; border: 1px solid rgba(212,169,78,.3); border-radius: 4px;
  padding: .18rem .42rem; color: var(--gold-pale);
}
.copyright {
  border-top: 1px solid rgba(212,169,78,.12); padding-top: 1.2rem;
  font-size: .82rem; color: rgba(205,185,164,.75);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem;
}
.float-wa {
  position: fixed; right: 1.2rem; bottom: 1.2rem; width: 56px; height: 56px;
  border-radius: 50%; background: var(--wa-bright); color: #fff;
  display: grid; place-items: center; font-size: 1.55rem;
  box-shadow: 0 6px 24px rgba(31,157,85,.45); z-index: 90;
}
.float-wa:hover { color: #fff; transform: scale(1.05); }

/* Modal */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(10,2,4,.72); backdrop-filter: blur(4px);
  z-index: 200; display: none; align-items: center; justify-content: center; padding: 1rem;
}
.modal-backdrop.open { display: flex; }
.modal {
  width: min(440px, 100%); background: var(--form-bg); color: var(--ink);
  border-radius: 14px; padding: 1.5rem; max-height: 90vh; overflow: auto;
}
.modal h3 { color: var(--ink); font-size: 1.35rem; margin-bottom: .25rem; }
.modal .sub { font-size: .9rem; color: #5c4630; margin-bottom: 1rem; }
.modal-actions { display: flex; gap: .6rem; margin-top: .5rem; }
.modal-actions .btn { flex: 1; }
.modal .close-x {
  float: right; background: transparent; border: none; font-size: 1.4rem;
  cursor: pointer; color: #6a5438;
}
.pay-methods {
  margin: .75rem 0 1rem; font-size: .8rem; color: #5c4630;
  background: rgba(212,169,78,.15); border-radius: 8px; padding: .65rem .75rem;
}

.empty-state {
  text-align: center; padding: 2rem 1rem; color: var(--body);
  border: 1px dashed rgba(212,169,78,.25); border-radius: var(--radius);
}

@media (max-width: 960px) {
  .home-hero, .product-detail, .account-layout, .footer-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .account-nav { position: static; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(42,10,14,.98); flex-direction: column; align-items: stretch;
    padding: 1rem 1.25rem 1.25rem; border-bottom: 1px solid rgba(212,169,78,.2); gap: .15rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .55rem 0; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-right { display: none; }
  .nav-auth-mobile { display: list-item; }
  .nav-mobile-wa { display: block; margin-top: 0.5rem; }
}
@media (max-width: 560px) {
  .grid-4, .grid-3, .grid-2, .stats { grid-template-columns: 1fr; }
}

/* ===== Motion & gestures ===== */
.welcome-chip {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(212,169,78,.45);
  background: rgba(212,169,78,.12);
  color: var(--gold-pale);
  font-size: 0.88rem;
  animation: fadeSlideIn 0.7s ease both;
}
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.06); }
}
@keyframes btnShine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.float-soft { animation: floatSoft 4.5s ease-in-out infinite; }
.hero-glow {
  position: absolute;
  width: min(220px, 55vw);
  height: min(220px, 55vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,169,78,.35), transparent 70%);
  z-index: 0;
  animation: pulseGlow 3.5s ease-in-out infinite;
}
.hero-portrait { position: relative; z-index: 1; }
.home-hero h1 {
  animation: fadeSlideIn 0.85s ease both;
}

.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px) scale(1.02);
}
.btn-gold:hover {
  box-shadow: 0 8px 28px rgba(212,169,78,.4);
}
.btn-wa:hover {
  box-shadow: 0 8px 24px rgba(31,157,85,.45);
}
.btn:active {
  transform: scale(0.96);
}

.card {
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.25s, box-shadow 0.35s;
  will-change: transform;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,169,78,.55);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.tilt-card {
  transform-style: preserve-3d;
}
.product-media img {
  transition: transform 0.5s ease;
}
.card:hover .product-media img {
  transform: scale(1.06);
}
.monogram {
  transition: transform 0.35s ease, border-color 0.25s;
}
.card:hover .monogram {
  transform: rotate(-8deg) scale(1.08);
  border-color: var(--gold);
}

.stat {
  transition: transform 0.3s ease, border-color 0.3s;
}
.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(212,169,78,.45);
}

.nav-links a {
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.float-wa {
  transition: transform 0.25s ease;
  animation: pulseGlow 2.8s ease-in-out infinite;
}
.float-wa:hover {
  transform: scale(1.12) rotate(-6deg);
  animation: none;
}

.auth-card {
  animation: fadeSlideIn 0.55s ease both;
}
.page-hero h1 {
  animation: fadeSlideIn 0.6s ease both;
}

.modal-backdrop.open {
  animation: fadeIn 0.25s ease both;
}
.modal-backdrop.open .modal {
  animation: popIn 0.3s cubic-bezier(.2,.9,.3,1) both;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes popIn {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Address + map */
.footer-address {
  max-width: 16rem;
  line-height: 1.45;
  color: var(--body);
  font-size: 0.88rem;
  margin-top: 0.35rem;
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212,169,78,.28);
  background: rgba(0,0,0,.25);
  min-height: 260px;
  box-shadow: var(--shadow);
}
.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.05);
}
.visit-grid {
  align-items: stretch;
}
@media (max-width: 960px) {
  .visit-grid { grid-template-columns: 1fr; }
}

.brand-mark-photo { background-size: cover !important; background-position: center top !important; border: 2px solid var(--gold) !important; color: transparent !important; font-size: 0 !important; }
.hero-portrait-photo { background-size: cover !important; background-position: center top !important; color: transparent !important; position: relative; overflow: hidden; }
.hero-photo-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 0.55rem 0.4rem; background: linear-gradient(transparent, rgba(20,4,6,.92)); color: var(--gold-pale); font-size: 0.78rem; text-align: center; }
.portrait-card { border-radius: 16px; overflow: hidden; border: 1px solid rgba(212,169,78,.35); background: rgba(0,0,0,.25); }
.portrait-photo { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center top; display: block; }
.portrait-meta { padding: 1rem 1.15rem 1.25rem; }
.yearly-banner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1.5rem; align-items: center; padding: 1.5rem; border-radius: 16px; border: 1px solid rgba(212,169,78,.4); background: linear-gradient(135deg, rgba(212,169,78,.12), rgba(0,0,0,.3)); box-shadow: var(--shadow); }
.yearly-banner-photo { width: 100%; max-height: 280px; object-fit: cover; object-position: center top; border-radius: 12px; border: 1px solid rgba(212,169,78,.35); }
.yearly-card { border-color: rgba(212,169,78,.5) !important; background: linear-gradient(160deg, rgba(212,169,78,.1), rgba(0,0,0,.28)) !important; }
.yearly-badge { display: inline-block; font-size: 0.72rem; letter-spacing: 0.08em; color: var(--ink); background: var(--gold); padding: 0.3rem 0.7rem; border-radius: 999px; font-weight: 600; }
.card-featured { border-color: rgba(212,169,78,.55) !important; box-shadow: 0 12px 32px rgba(212,169,78,.12); }
@media (max-width: 960px) { .yearly-banner, .yearly-layout { grid-template-columns: 1fr; } }

.kundli-layout { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 1.5rem; align-items: start; }
.analysis-card { border-color: rgba(212,169,78,.45) !important; }
.analysis-head { display: flex; gap: 0.85rem; align-items: center; margin-bottom: 1rem; padding-bottom: 0.85rem; border-bottom: 1px solid rgba(212,169,78,.2); }
.analysis-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid var(--gold); }
.analysis-body { font-size: 0.98rem; line-height: 1.75; color: var(--body); max-height: 70vh; overflow: auto; white-space: pre-wrap; }
.history-list { list-style: none; margin-top: 0.75rem; }
.history-list li { margin-bottom: 0.45rem; }
.history-item { width: 100%; text-align: left; background: rgba(0,0,0,.2); border: 1px solid rgba(212,169,78,.2); color: var(--cream); border-radius: 8px; padding: 0.65rem 0.75rem; cursor: pointer; font-family: var(--font-sans); font-size: 0.9rem; display: flex; justify-content: space-between; gap: 0.5rem; align-items: center; }
.history-item:hover { border-color: var(--gold); }
@media (max-width: 960px) { .kundli-layout { grid-template-columns: 1fr; } }

/* Official logo */
.brand-with-logo {
  gap: 0.65rem;
  align-items: center;
  max-width: min(420px, 58vw);
}
.site-logo {
  height: 48px;
  width: auto;
  max-width: min(280px, 52vw);
  object-fit: contain;
  border-radius: 6px;
  display: block;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.brand-text-desktop strong { font-size: 1.05rem; }
.footer-logo {
  height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}
@media (max-width: 720px) {
  .brand-text-desktop { display: none; }
  .site-logo { height: 42px; max-width: 70vw; }
}

/* Refined Kundli result */
.analysis-card {
  padding: 1.35rem 1.4rem 1.5rem !important;
  background: linear-gradient(165deg, rgba(42,10,14,.98), rgba(20,5,8,.98)) !important;
}
.analysis-body {
  font-size: 1rem !important;
  line-height: 1.85 !important;
  color: #e8d9c2 !important;
  max-height: 65vh;
  overflow: auto;
  white-space: normal !important;
  padding-right: 0.35rem;
}
.analysis-body p {
  margin: 0 0 0.95rem;
  color: #e0d0b8;
}
.analysis-body .analysis-h,
.analysis-body h4 {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.35rem 0 0.55rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(212,169,78,.22);
  letter-spacing: 0.01em;
}
.analysis-body .analysis-h:first-child,
.analysis-body h4:first-child {
  margin-top: 0.25rem;
}
.analysis-disclaimer {
  margin-top: 1.25rem;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(212,169,78,.28);
  background: rgba(0,0,0,.28);
  color: #cbb894;
  font-size: 0.86rem;
  line-height: 1.55;
}
.analysis-disclaimer strong {
  color: var(--gold-pale);
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.analysis-disclaimer a {
  color: var(--gold);
  text-decoration: underline;
}

@media (max-width: 560px) {
  .sa-root { right: 12px; bottom: 12px; }
  .sa-panel { width: calc(100vw - 24px); height: min(70vh, 560px); }
  .sa-fab { width: 56px; height: 56px; }
}

/* ===== Chatter box (corner chat UI) ===== */
.sa-root {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99999;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.sa-fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #111;
  color: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
  display: grid;
  place-items: center;
  position: relative;
  transition: transform .18s ease, background .18s ease;
}
.sa-fab:hover { transform: scale(1.05); background: #000; }
.sa-fab-chat, .sa-fab-x {
  position: absolute;
  transition: opacity .16s ease, transform .16s ease;
}
.sa-fab-x {
  opacity: 0;
  transform: rotate(-80deg) scale(.5);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  color: #fff;
}
.sa-root.is-open .sa-fab-chat {
  opacity: 0;
  transform: rotate(80deg) scale(.5);
}
.sa-root.is-open .sa-fab-x {
  opacity: 1;
  transform: none;
}
.sa-panel {
  width: min(360px, calc(100vw - 28px));
  height: min(520px, calc(100vh - 100px));
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(0,0,0,.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  animation: saSlide .22s ease both;
  transform-origin: bottom right;
}
@keyframes saSlide {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to { opacity: 1; transform: none; }
}
.sa-head {
  background: #000;
  color: #fff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.sa-head-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: Georgia, "Times New Roman", serif;
}
.sa-close {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
}
.sa-close:hover { background: rgba(255,255,255,.12); }
.sa-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
}
.sa-msg { display: flex; width: 100%; }
.sa-bot { justify-content: flex-start; }
.sa-user { justify-content: flex-end; }
.sa-bubble {
  max-width: 82%;
  padding: 10px 16px;
  font-size: 0.95rem;
  line-height: 1.45;
  word-wrap: break-word;
}
/* Bot: white pill with black border (like mockup) */
.sa-bot .sa-bubble {
  background: #fff;
  color: #111;
  border: 2px solid #111;
  border-radius: 999px;
  border-bottom-left-radius: 18px;
}
/* User: solid black pill (like mockup) */
.sa-user .sa-bubble {
  background: #111;
  color: #fff;
  border: 2px solid #111;
  border-radius: 999px;
  border-bottom-right-radius: 18px;
}
.sa-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  width: 100%;
  max-width: 100%;
}
.sa-bot .sa-links { align-items: stretch; }
.sa-link-btn {
  display: block;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  border: 2px solid #111;
  color: #111 !important;
  background: #fff;
  text-decoration: none !important;
}
.sa-link-btn:hover {
  background: #111;
  color: #fff !important;
}
.sa-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px 14px 8px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}
.sa-chip {
  border: 1.5px solid #111;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.75rem;
  cursor: pointer;
  font-family: inherit;
}
.sa-chip:hover { background: #111; color: #fff; }
.sa-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px 16px;
  background: #fff;
  border-top: 1px solid #eee;
}
.sa-input-row input {
  flex: 1;
  border: none !important;
  border-bottom: 2px solid #111 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #111;
  padding: 10px 4px;
  font-size: 0.95rem;
  outline: none !important;
  box-shadow: none !important;
  font-family: inherit;
}
.sa-input-row input::placeholder { color: #888; }
.sa-input-row input:focus {
  border-bottom-color: #000 !important;
  box-shadow: none !important;
}
.sa-send {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: #111;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  min-width: 44px;
  border-radius: 50%;
}
.sa-send:hover { background: #f3f3f3; }
.sa-typing-bubble {
  display: inline-flex !important;
  gap: 5px;
  align-items: center;
  min-width: 56px;
  padding: 12px 18px !important;
}
.sa-typing-bubble span {
  width: 7px; height: 7px; border-radius: 50%;
  background: #333;
  animation: saDot 1.1s ease-in-out infinite;
}
.sa-typing-bubble span:nth-child(2) { animation-delay: .15s; }
.sa-typing-bubble span:nth-child(3) { animation-delay: .3s; }
@keyframes saDot {
  0%, 80%, 100% { opacity: .3; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}
.float-wa { right: 22px; bottom: 90px; }
@media (max-width: 560px) {
  .sa-root { right: 12px; bottom: 12px; }
  .sa-panel { width: calc(100vw - 24px); height: min(72vh, 540px); }
  .sa-fab { width: 54px; height: 54px; }
}
/* ===== Mobile-friendly layout improvements ===== */
html { -webkit-text-size-adjust: 100%; }
img, video, iframe { max-width: 100%; height: auto; }
.container { width: min(1140px, 92%); }

@media (max-width: 960px) {
  .promo { font-size: 0.72rem; padding: 0.5rem 0.65rem; line-height: 1.35; }
  .nav-inner { padding: 0.65rem 0; gap: 0.5rem; }
  .brand-text strong { font-size: 1rem; }
  .brand-text span { font-size: 0.65rem; }
  .brand-mark { width: 38px; height: 38px; font-size: 1.15rem; }
  .nav { position: sticky; top: 0; }
  .nav-links {
    max-height: min(70vh, 420px);
    overflow-y: auto;
    z-index: 200;
  }
  .home-hero {
    grid-template-columns: 1fr !important;
    padding: 2rem 0 1.5rem !important;
    gap: 1.25rem !important;
    text-align: left;
  }
  .home-hero h1 { font-size: clamp(1.7rem, 7vw, 2.2rem) !important; }
  .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem !important;
  }
  .hero-cta .btn {
    flex: 1 1 auto;
    min-width: calc(50% - 0.4rem);
    text-align: center;
    justify-content: center;
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
  }
  .hero-art { min-height: 200px !important; order: -1; }
  .hero-portrait {
    width: min(180px, 48vw) !important;
    height: min(180px, 48vw) !important;
  }
  .section { padding: 2.25rem 0 !important; }
  .section-head h2 { font-size: 1.55rem !important; }
  .card { padding: 1.05rem !important; }
  .btn { min-height: 42px; }
  .page-hero { padding: 2rem 0 1.25rem !important; }
  .page-hero h1 { font-size: clamp(1.6rem, 6.5vw, 2.1rem) !important; }
  .yearly-banner {
    grid-template-columns: 1fr !important;
    padding: 1.15rem !important;
  }
  .kundli-layout { grid-template-columns: 1fr !important; gap: 1rem !important; }
  .form-light, .auth-card { padding: 1.15rem !important; }
  .footer-grid { gap: 1.25rem !important; }
  .modal { width: min(100%, calc(100vw - 1.2rem)) !important; padding: 1.15rem !important; }
  .analysis-body { max-height: 50vh !important; }
  body { padding-bottom: 72px; }
}

@media (max-width: 560px) {
  .container { width: 94%; }
  .stats { grid-template-columns: 1fr 1fr !important; gap: 0.65rem !important; }
  .stat { padding: 0.9rem 0.65rem !important; }
  .stat strong { font-size: 1.35rem !important; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr !important; }
  .hero-cta .btn { min-width: 100%; width: 100%; }
  .nav-right { display: none !important; }
  .promo a { display: inline; }
  .price { font-size: 1.25rem !important; }
  .card-actions { flex-direction: column; }
  .card-actions .btn { width: 100%; }
}

@media (max-width: 380px) {
  .brand-text span { display: none; }
  .promo { font-size: 0.68rem; }
}
