/* ============================================================
   ASTRO DEEPAK SHUKLA — THEME  v1.0
   Palette: Forest Green #0E2318 | Deep Green #142B1E
            Saffron #D4721A | Warm Ochre #E8993A | Cream #F9F4EC
   Type: Playfair Display (display) / Nunito (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Nunito:wght@300;400;600;700;800&display=swap');

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:   #0E2318;
  --dark:     #142B1E;
  --panel:    #1A3526;
  --card:     #1F3D2C;
  --border:   rgba(212,114,26,.25);
  --saffron:  #D4721A;
  --ochre:    #E8993A;
  --cream:    #F9F4EC;
  --muted:    rgba(249,244,236,.55);
  --radius:   14px;
  --radius-lg: 22px;
  --shadow:   0 8px 32px rgba(0,0,0,.4);

  /* ── Aliases used in WooCommerce / product templates ── */
  --gold:     #D4721A;   /* = --saffron */
  --gold-lt:  #E8993A;   /* = --ochre   */
  --ivory:    #F9F4EC;   /* = --cream   */
  --navy:     #0E2318;   /* = --forest  */
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--forest);
  color: var(--cream);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--ochre); text-decoration: none; transition: color .2s; }
a:hover { color: var(--cream); }
ul { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  letter-spacing: .01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

.text-accent { color: var(--ochre); }

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 6rem 0; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-overline {
  font-family: 'Nunito', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: .75rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
  color: var(--cream);
}

.section-title-left {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
  color: var(--cream);
}

p { color: var(--muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mt-6 { margin-top: 2.5rem; }
.mb-6 { margin-bottom: 2.5rem; }
.w-full { width: 100%; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary, .btn-gold {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--ochre) 100%);
  color: var(--forest);
  border-color: transparent;
}
.btn-primary:hover, .btn-gold:hover {
  background: linear-gradient(135deg, var(--ochre) 0%, #f5ad52 100%);
  color: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,114,26,.4);
}

.btn-outline, .btn-ghost {
  background: transparent;
  color: var(--ochre);
  border-color: var(--saffron);
}
.btn-outline:hover, .btn-ghost:hover {
  background: var(--saffron);
  color: var(--forest);
  transform: translateY(-2px);
}

.btn-sm  { padding: .6rem 1.4rem; font-size: .8rem; }
.btn-lg  { padding: 1.1rem 2.6rem; font-size: 1rem; }

.btn-pulse {
  animation: pulse-saffron 2.4s ease-in-out infinite;
}
@keyframes pulse-saffron {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,114,26,.5); }
  50%       { box-shadow: 0 0 0 14px rgba(212,114,26,0); }
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background .3s, padding .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(14,35,24,.97);
  backdrop-filter: blur(16px);
  padding: .8rem 0;
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-branding { margin-right: auto; }

.site-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  display: block;
}
.site-title span {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  color: var(--ochre);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: .1rem;
}

/* Nav */
.primary-nav { display: flex; align-items: center; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-wrap: wrap;
}

.nav-menu li a {
  font-family: 'Nunito', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: rgba(249,244,236,.75);
  padding: .4rem .85rem;
  border-radius: 50px;
  transition: all .2s;
  letter-spacing: .02em;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
  color: var(--ochre);
  background: rgba(212,114,26,.12);
}

.nav-cta-mobile { display: none; margin-top: 1rem; }

.header-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.header-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(212,114,26,.08);
  border: 1px solid var(--border);
  color: var(--ochre);
  position: relative;
  transition: all .2s;
}
.header-icon-btn:hover {
  background: rgba(212,114,26,.2);
  color: var(--ochre);
  transform: scale(1.08);
}

.cart-count {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--saffron);
  color: var(--forest);
  font-size: .65rem;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s;
}
.cart-count.has-items { opacity: 1; }

.header-text-btn {
  font-family: 'Nunito', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  transition: color .2s;
}
.header-text-btn:hover { color: var(--ochre); }

.header-cta { display: none; }
@media (min-width: 900px) { .header-cta { display: inline-flex; } }

/* Menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all .3s;
}

@media (max-width: 899px) {
  .menu-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: var(--dark);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    transition: right .3s ease;
    z-index: 999;
  }
  .primary-nav.open { right: 0; }
  .nav-menu { flex-direction: column; align-items: flex-start; gap: .1rem; width: 100%; }
  .nav-menu li { width: 100%; }
  .nav-menu li a { display: block; padding: .7rem 1rem; border-radius: 10px; }
  .nav-cta-mobile { display: block; width: 100%; }
  .nav-cta-mobile .btn { width: 100%; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 60% 40%, rgba(212,114,26,.12) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 10% 80%, rgba(26,53,38,.9) 0%, transparent 60%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(232,153,58,.35) 1px, transparent 1px),
    radial-gradient(circle, rgba(249,244,236,.12) 1px, transparent 1px);
  background-size: 60px 60px, 120px 120px;
  background-position: 0 0, 30px 30px;
  animation: drift 22s linear infinite;
}
@keyframes drift { to { background-position: 60px 60px, 90px 90px; } }

.hero-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--forest), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem 1.1rem;
  border: 1px solid rgba(212,114,26,.4);
  border-radius: 50px;
  background: rgba(212,114,26,.08);
  font-family: 'Nunito', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--saffron);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.text-gradient {
  background: linear-gradient(135deg, var(--saffron), var(--ochre), #f5c86a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--ochre);
  line-height: 1;
}
.stat-plus, .stat-percent {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--saffron);
  vertical-align: super;
}

.stat-label {
  font-family: 'Nunito', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-top: .25rem;
}

/* Hero Visual — circular frame different from Uday Bhan's square glow */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  width: min(420px, 90vw);
  height: min(420px, 90vw);
}

.hero-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(212,114,26,.3) 0%, transparent 65%);
  border-radius: 50%;
  animation: glow-pulse 3.5s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50%       { transform: scale(1.08); opacity: 1; }
}

/* Mandala rings instead of orbiting circles */
.hero-mandala {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mandala-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,114,26,.2);
}
.mandala-ring.r1 { width: 90%;  height: 90%;  animation: spin-slow 30s linear infinite; }
.mandala-ring.r2 { width: 75%;  height: 75%;  animation: spin-slow 20s linear infinite reverse; border-style: dashed; }
.mandala-ring.r3 { width: 55%;  height: 55%;  animation: spin-slow 15s linear infinite; border-color: rgba(232,153,58,.3); }
@keyframes spin-slow { to { transform: rotate(360deg); } }

.hero-image-wrapper {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(212,114,26,.4);
  background: var(--panel);
  box-shadow: inset 0 0 40px rgba(0,0,0,.5), 0 0 60px rgba(212,114,26,.15);
}

.hero-astrologer {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Om symbols floating */
.hero-float-symbol {
  position: absolute;
  font-size: 1.4rem;
  color: var(--saffron);
  opacity: .5;
  animation: float-symbol 4s ease-in-out infinite;
}
.hero-float-symbol.s1 { top: 5%; left: 5%; animation-delay: 0s; }
.hero-float-symbol.s2 { top: 15%; right: 0%; animation-delay: 1.2s; }
.hero-float-symbol.s3 { bottom: 10%; left: 0%; animation-delay: 2.4s; }
@keyframes float-symbol {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(8deg); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--muted);
  font-family: 'Nunito', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--saffron), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%, 100% { transform: scaleY(1); opacity: .7; }
  50%       { transform: scaleY(.5); opacity: .3; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-text { order: 2; }
  .hero-visual { order: 1; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; gap: 2rem; }
  .stat-item { align-items: center; }
  .hero-image-frame { width: min(300px, 80vw); height: min(300px, 80vw); }
}

/* ---------- FEATURES BAR ---------- */
.features-bar {
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.feature-icon-box {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(212,114,26,.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ochre);
  transition: all .25s;
}
.feature-item:hover .feature-icon-box {
  background: rgba(212,114,26,.22);
  transform: scale(1.05);
}

.feature-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: .3rem;
}
.feature-content p { font-size: .88rem; margin: 0; }

@media (max-width: 700px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ---------- ABOUT ---------- */
.about-section { background: var(--dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Hexagonal frame — completely different from Uday Bhan */
.about-image-frame {
  position: relative;
  aspect-ratio: 1;
  max-width: 440px;
  margin: 0 auto;
}

.about-hex-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--panel), var(--card));
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  border: 2px solid var(--border);
}

.about-image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(212,114,26,.2) 0%, transparent 60%);
  border-radius: 50%;
}

.about-image-frame img {
  position: relative;
  z-index: 2;
  width: 90%;
  height: 90%;
  object-fit: cover;
  object-position: center top;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  margin: 5%;
}

.about-floating-icon {
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  animation: icon-float 3.5s ease-in-out infinite;
  z-index: 3;
}
.icon-1 { top: 8%; right: -5%; animation-delay: 0s; }
.icon-2 { bottom: 20%; right: -8%; animation-delay: 1.2s; }
.icon-3 { bottom: 5%; left: 5%; animation-delay: 2.4s; }
@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Leaf accent corner decoration */
.about-leaf {
  position: absolute;
  top: -10%; left: -8%;
  width: 120px; opacity: .12;
  z-index: 0;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 1.5rem 0 2rem;
}

.about-check-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Nunito', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--cream);
}

.check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--ochre));
  color: var(--forest);
  font-size: .75rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-description { font-size: 1rem; line-height: 1.8; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-frame { max-width: 320px; }
}

/* ---------- SERVICES ---------- */
.services-section { background: var(--forest); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--ochre));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  border-color: rgba(212,114,26,.5);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(212,114,26,.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ochre);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: background .3s;
}
.service-card:hover .service-icon {
  background: rgba(212,114,26,.2);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: .75rem;
}

.service-card p { font-size: .9rem; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: 'Nunito', sans-serif;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-top: 1rem;
  transition: gap .2s;
}
.service-link:hover { gap: .7rem; color: var(--ochre); }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- ZODIAC STRIP ---------- */
.zodiac-strip {
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  overflow: hidden;
}

.zodiac-track {
  display: flex;
  gap: 2rem;
  animation: scroll-track 18s linear infinite;
  white-space: nowrap;
}

.zodiac-track span {
  font-size: 1.6rem;
  color: var(--saffron);
  opacity: .65;
  flex-shrink: 0;
}

@keyframes scroll-track {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- PRICING ---------- */
.pricing-section { background: var(--dark); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  overflow: hidden;
  transition: transform .3s;
}
.pricing-card:hover { transform: translateY(-4px); }

.pricing-card-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,114,26,.07) 0%, transparent 60%);
}

.pricing-featured {
  border-color: var(--saffron);
  background: linear-gradient(180deg, rgba(212,114,26,.08) 0%, var(--card) 60%);
  transform: scale(1.03);
}
.pricing-featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: linear-gradient(135deg, var(--saffron), var(--ochre));
  color: var(--forest);
  font-family: 'Nunito', sans-serif;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 50px;
}

/* Yantra symbol instead of planet SVG */
.pricing-symbol {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  opacity: .7;
  position: relative;
  z-index: 1;
}

.pricing-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: .5rem;
  position: relative;
  z-index: 1;
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--ochre);
  line-height: 1;
  margin: .5rem 0;
  position: relative;
  z-index: 1;
}

.currency {
  font-size: 1.4rem;
  vertical-align: super;
  color: var(--saffron);
}

.pricing-period {
  font-family: 'Nunito', sans-serif;
  font-size: .8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  text-align: left;
  position: relative;
  z-index: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Nunito', sans-serif;
  font-size: .9rem;
  color: var(--muted);
}

.pricing-features li.included {
  color: var(--cream);
}

.pricing-features li::before {
  content: '✓';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(212,114,26,.2);
  color: var(--ochre);
  font-size: .7rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-features li.not-included { opacity: .4; }
.pricing-features li.not-included::before {
  content: '✕';
  background: rgba(255,255,255,.05);
  color: var(--muted);
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-4px); }
}

/* ---------- PRODUCTS / STORE TEASER ---------- */
.products-section { background: var(--forest); }

.products-tease {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.product-tease-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: transform .3s, border-color .3s;
}
.product-tease-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,114,26,.4);
}

.product-emoji { font-size: 2.5rem; margin-bottom: 1rem; }
.product-tease-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: .4rem;
}
.product-tease-card p { font-size: .85rem; }

@media (max-width: 700px) { .products-tease { grid-template-columns: 1fr; } }

/* ---------- CTA BAND ---------- */
.cta-section {
  background: linear-gradient(135deg, rgba(212,114,26,.18) 0%, rgba(26,53,38,.9) 50%, rgba(14,35,24,1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 0;
  text-align: center;
}

.cta-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--cream);
}

.cta-section p {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FAQ ---------- */
.faq-section { background: var(--dark); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.faq-image-side img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.faq-list { display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.active { border-color: var(--saffron); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(212,114,26,.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ochre);
  font-size: .75rem;
  flex-shrink: 0;
  transition: all .25s;
}
.faq-item.active .faq-icon {
  background: var(--saffron);
  color: var(--forest);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p { font-size: .92rem; margin: 0; }

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .faq-image-side { display: none; }
}

/* ---------- TEAM ---------- */
.team-section { background: var(--forest); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: transform .3s;
}
.team-card:hover { transform: translateY(-5px); }

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: 2px solid var(--border);
}

.team-info { padding: 1.5rem; }
.team-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: .25rem;
}
.team-role {
  font-family: 'Nunito', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--ochre);
  text-transform: uppercase;
  letter-spacing: .1em;
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .team-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section { background: var(--panel); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.testimonial-quote-icon {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--saffron);
  opacity: .25;
  position: absolute;
  top: 1rem; right: 1.5rem;
}

.testimonial-stars {
  color: var(--ochre);
  font-size: 1rem;
  letter-spacing: .1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testimonial-name {
  font-family: 'Nunito', sans-serif;
  font-size: .9rem;
  font-weight: 800;
  color: var(--cream);
}
.testimonial-location {
  font-family: 'Nunito', sans-serif;
  font-size: .75rem;
  color: var(--muted);
}

@media (max-width: 700px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ---------- FREE CONSULTATION BAND ---------- */
.free-consult-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.free-consult-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.free-consult-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--saffron), var(--ochre));
  color: var(--forest);
  font-family: 'Nunito', sans-serif;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.free-consult-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: .75rem;
}

@media (max-width: 700px) {
  .free-consult-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--forest);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .site-title { font-size: 1.3rem; }

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(212,114,26,.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--ochre);
  transition: all .2s;
}
.social-link:hover {
  background: rgba(212,114,26,.25);
  transform: scale(1.1);
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}

.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a {
  font-family: 'Nunito', sans-serif;
  font-size: .88rem;
  color: var(--muted);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--ochre); }

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .88rem;
  margin-bottom: .5rem;
}
.footer-contact a { color: var(--muted); }
.footer-contact a:hover { color: var(--ochre); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-family: 'Nunito', sans-serif;
  font-size: .8rem;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- POPUP / MODAL ---------- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.popup-overlay.active { opacity: 1; visibility: visible; }

.popup-box {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(.95);
  transition: transform .3s;
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
}
.popup-overlay.active .popup-box { transform: scale(1); }

.popup-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(212,114,26,.1);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.popup-close:hover { background: rgba(212,114,26,.25); color: var(--cream); }

.popup-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: .5rem;
}
.popup-sub {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Form */
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .4rem;
}
.form-input, .form-select {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .8rem 1rem;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  color: var(--cream);
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.form-input:focus, .form-select:focus { border-color: var(--saffron); }
.form-input::placeholder { color: rgba(249,244,236,.3); }
.form-select option { background: var(--dark); color: var(--cream); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.captcha-question {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ochre);
  flex: 1;
}
.captcha-input {
  width: 80px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .5rem .75rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  text-align: center;
  outline: none;
}
.captcha-input:focus { border-color: var(--saffron); }

.form-success {
  text-align: center;
  padding: 2rem 0;
}
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  margin-bottom: .5rem;
}

/* ---------- WA FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  z-index: 1000;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { fill: #fff; width: 28px; height: 28px; }

/* ---------- PAGE HERO (WooCommerce & inner pages) ---------- */
/*
 * Sits BELOW the fixed header (80px tall). All WooCommerce and inner-page
 * hero banners use this class so they never hide under the nav.
 */
.page-hero {
  padding: 9rem 0 4rem;          /* top = header height + breathing room */
  background: linear-gradient(
    135deg,
    rgba(212,114,26,.13) 0%,
    rgba(26,53,38,.9)   50%,
    rgba(14,35,24,1)   100%
  );
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero .section-overline { margin-bottom: .5rem; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: .75rem;
}
.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
}

/* ---------- WOOCOMMERCE — GENERAL PAGE WRAPPER ---------- */
/*
 * Any WooCommerce page that uses get_header() needs this top offset so
 * content starts BELOW the fixed header, not hidden behind it.
 */
.woocommerce-page .site-content,
body.woocommerce .site-content,
body.woocommerce-page .site-content {
  padding-top: 0; /* handled per-section below */
}

.wc-page-wrap {
  padding-top: 9rem;
  padding-bottom: 5rem;
}

/* ---------- PRODUCTS GRID (Shop archive) ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products-grid { grid-template-columns: 1fr; } }

/* ---------- PRODUCT CARD ---------- */
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  border-color: rgba(212,114,26,.45);
}

.product-card-image {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--panel);
}
.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .product-card-image img { transform: scale(1.06); }

.product-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
}

.product-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  margin: 0;
  line-height: 1.35;
  flex: 1;
}
.product-card-title a { color: inherit; text-decoration: none; }
.product-card-title a:hover { color: var(--ochre); }

.product-card-price {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ochre);
}
.product-card-price del {
  color: var(--muted);
  font-weight: 400;
  font-size: .875rem;
  margin-right: .35rem;
}
.product-card-price ins { text-decoration: none; }

.product-rating .star-rating {
  color: var(--ochre);
  font-size: .85rem;
}

/* Qty stepper + add-to-cart row */
.cart-controls {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: .25rem;
}
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  background: var(--panel);
  flex-shrink: 0;
}
.qty-btn {
  background: none;
  border: none;
  color: var(--ochre);
  font-size: 1.1rem;
  width: 30px; height: 30px;
  cursor: pointer;
  line-height: 1;
  transition: background .2s;
}
.qty-btn:hover { background: rgba(212,114,26,.15); }
.qty-btn:disabled { opacity: .3; cursor: default; }
.qty-value {
  font-family: 'Nunito', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--cream);
  min-width: 22px;
  text-align: center;
}

/* ---------- WOOCOMMERCE — NOTICES ---------- */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 4px solid var(--saffron);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-family: 'Nunito', sans-serif;
  font-size: .92rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  list-style: none;
}
.woocommerce-error { border-left-color: #f87171; }
.woocommerce-info  { border-left-color: var(--ochre); }

/* ---------- WOOCOMMERCE — CART TABLE ---------- */
.shop_table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Nunito', sans-serif;
  font-size: .9rem;
  margin-bottom: 2rem;
}
.shop_table th {
  font-weight: 700;
  color: var(--ochre);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .75rem;
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.shop_table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--cream);
}
.shop_table td.product-remove { width: 2rem; }
.shop_table td.product-thumbnail { width: 80px; }
.shop_table td.product-thumbnail img {
  width: 64px; height: 64px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.shop_table td.product-name a { color: var(--cream); }
.shop_table td.product-name a:hover { color: var(--ochre); }
.shop_table td.product-price,
.shop_table td.product-subtotal { color: var(--ochre); font-weight: 700; }
.shop_table a.remove {
  color: #f87171;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: opacity .2s;
}
.shop_table a.remove:hover { opacity: .6; }
.shop_table .quantity input.qty {
  width: 56px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--cream);
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  text-align: center;
  padding: .4rem;
  outline: none;
}
.shop_table .quantity input.qty:focus { border-color: var(--saffron); }

/* Native WooCommerce quantity fields (single product, cart), auto-enhanced with +/- buttons by main.js */
div.quantity.qty-stepper {
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--panel);
  overflow: hidden;
  width: fit-content;
}
div.quantity.qty-stepper input.qty {
  width: 40px;
  border: none;
  background: transparent;
  color: var(--cream);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  text-align: center;
  padding: 0;
  -moz-appearance: textfield;
}
div.quantity.qty-stepper input.qty::-webkit-inner-spin-button,
div.quantity.qty-stepper input.qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.shop_table .quantity.qty-stepper input.qty { width: 40px; }

/* Cart actions row */
.shop_table td.actions { padding: 1.25rem 1rem; }
.shop_table .coupon {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}
.shop_table .coupon input.input-text {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: .55rem 1.1rem;
  font-family: 'Nunito', sans-serif;
  font-size: .9rem;
  color: var(--cream);
  outline: none;
  min-width: 180px;
}
.shop_table .coupon input.input-text:focus { border-color: var(--saffron); }

/* WooCommerce generic .button → styled like .btn-outline */
.woocommerce .button,
.woocommerce-page .button {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.6rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
  border: 2px solid var(--saffron);
  background: transparent;
  color: var(--ochre);
  text-decoration: none;
}
.woocommerce .button:hover,
.woocommerce-page .button:hover {
  background: var(--saffron);
  color: var(--forest);
  transform: translateY(-2px);
}
.woocommerce .button.checkout-button,
.woocommerce-page .button.checkout-button {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--ochre) 100%);
  color: var(--forest);
  border-color: transparent;
}
.woocommerce .button.checkout-button:hover {
  background: linear-gradient(135deg, var(--ochre) 0%, #f5ad52 100%);
}

/* Cart collaterals / totals */
.cart-collaterals { margin-top: 2rem; }
.cart_totals {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 420px;
  margin-left: auto;
}
.cart_totals h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.cart_totals table { width: 100%; border-collapse: collapse; }
.cart_totals table th,
.cart_totals table td {
  padding: .6rem .5rem;
  border-bottom: 1px solid var(--border);
  font-family: 'Nunito', sans-serif;
  font-size: .92rem;
  color: var(--cream);
}
.cart_totals table th { font-weight: 700; color: var(--muted); }
.cart_totals table .order-total th,
.cart_totals table .order-total td {
  font-size: 1.05rem;
  color: var(--ochre);
  font-weight: 800;
  border-bottom: none;
}
.wc-proceed-to-checkout { margin-top: 1.25rem; }
.wc-proceed-to-checkout .checkout-button { width: 100%; justify-content: center; }

/* ---------- WOOCOMMERCE — CHECKOUT ---------- */
.woocommerce-checkout .site-content { padding-top: 9rem; }
.woocommerce form .form-row {
  margin-bottom: 1rem;
}
.woocommerce form .form-row label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .35rem;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .75rem 1rem;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  color: var(--cream);
  outline: none;
  transition: border-color .2s;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus { border-color: var(--saffron); }

/* ---------- WOOCOMMERCE — MY ACCOUNT ---------- */
.woocommerce-MyAccount-navigation {
  margin-bottom: 2rem;
}
.woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
}
.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: .5rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--muted);
  transition: all .2s;
  text-decoration: none;
}
.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
  background: rgba(212,114,26,.15);
  border-color: var(--saffron);
  color: var(--ochre);
}

/* Generic pages (page.php) — was using a non-existent 'py-8' class, leaving
   content with zero top offset and hidden behind the fixed header. This
   also fixes the My Account / Login / Register page, which renders through
   page.php and previously had no header clearance at all. */
/* ---------- ACCOUNT LOGIN / REGISTER ---------- */
.account-auth-wrap {
  display: grid;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}
.account-auth-wrap--split { grid-template-columns: 1fr 1px 1fr; }
.account-auth-wrap--single { grid-template-columns: 1fr; max-width: 460px; }
.account-auth-divider {
  background: var(--border);
  height: 100%;
  min-height: 260px;
}
@media (max-width: 768px) {
  .account-auth-wrap--split { grid-template-columns: 1fr; gap: 2.5rem; }
  .account-auth-divider { display: none; }
}
.account-auth-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.account-auth-title {
  font-family: 'Cinzel', serif;
  color: var(--gold-lt);
  font-size: 1.3rem;
  margin-bottom: .5rem;
}
.account-auth-sub {
  color: var(--muted);
  font-size: .875rem;
  margin-bottom: 1.75rem;
}
.account-auth-note {
  color: var(--muted);
  font-size: .85rem;
  margin-bottom: 1.25rem;
}
.account-auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.account-remember-me {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--cream);
  cursor: pointer;
}
.account-checkbox { accent-color: var(--saffron); width: 16px; height: 16px; }
.account-lost-password {
  font-size: .85rem;
  color: var(--gold-lt);
}
.account-lost-password:hover { color: var(--ochre); }
.account-auth-panel .form-group label {
  display: block;
  font-size: .85rem;
  color: var(--cream);
  margin-bottom: .4rem;
}
.account-auth-panel .input-text {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--cream);
  font-family: 'Nunito', sans-serif;
  padding: .7rem .9rem;
  outline: none;
}
.account-auth-panel .input-text:focus { border-color: var(--saffron); }

.generic-page-content {
  padding-top: 9rem;
  padding-bottom: 5rem;
}

/* ---------- SINGLE PRODUCT — override inline vars ---------- */
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .contact-info-row { grid-template-columns: 1fr; }
}

.contact-form-map-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-form-map-layout { grid-template-columns: 1fr; gap: 2rem; }
}

.single-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .single-product-layout { grid-template-columns: 1fr; gap: 2rem; }
}

.single-product-details-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}
@media (max-width: 900px) {
  .single-product-details-layout { grid-template-columns: 1fr; gap: 2rem; }
}

.related-slide {
  min-width: calc(33.333% - 1rem);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .related-slide { min-width: calc(50% - .75rem); }
}
@media (max-width: 560px) {
  .related-slide { min-width: 100%; }
}

.single-product-wrap .woocommerce-product-gallery { border-radius: var(--radius-lg); overflow: hidden; }
.single-product-wrap .product_title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--cream);
  margin-bottom: .5rem;
}
.single-product-wrap .woocommerce-product-rating { margin-bottom: .75rem; }
.single-product-wrap .price {
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ochre);
}
.single-product-wrap .price del { color: var(--muted); font-size: 1rem; font-weight: 400; }
.single-product-wrap .woocommerce-product-details__short-description { color: var(--muted); line-height: 1.75; }

/* ---------- AOS MINIMAL ---------- */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].aos-animate { opacity: 1; transform: none; }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="fade-left"].aos-animate { transform: none; }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-right"].aos-animate { transform: none; }


/* ---------- PRODUCT SLIDER ---------- */
.product-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 0 3rem;
  margin: 0 -0.5rem;
}
.product-slider {
  display: flex;
  gap: 1.5rem;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  padding: 0.5rem 0.5rem 0.25rem;
}
.product-slide-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.product-slide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
@media (max-width: 1023px) {
  .product-slide-card { flex: 0 0 calc(50% - .75rem); }
}
@media (max-width: 639px) {
  .product-slide-card { flex: 0 0 100%; }
}
.product-slide-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.product-slide-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.product-slide-card:hover .product-slide-img-wrap img { transform: scale(1.05); }
.product-badge-sale {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--saffron);
  color: var(--dark);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 4px;
}
.product-slide-body {
  padding: 1.25rem 1.25rem 1.5rem;
}
.product-stars { display: flex; align-items: center; gap: 2px; margin-bottom: .5rem; }
.star { color: var(--border); font-size: .9rem; }
.star.filled { color: var(--gold-lt); }
.star-count { color: var(--muted); font-size: .75rem; margin-left: .25rem; }
.product-slide-name {
  font-family: 'Cinzel', serif;
  font-size: .95rem;
  color: var(--ivory);
  margin: 0 0 .5rem;
  line-height: 1.3;
}
.product-slide-name a { color: inherit; text-decoration: none; }
.product-slide-name a:hover { color: var(--gold-lt); }
.product-slide-price { color: var(--gold-lt); font-weight: 700; font-size: 1rem; margin-bottom: 1rem; }
.product-slide-price del { color: var(--muted); font-weight: 400; margin-right: .5rem; font-size: .875rem; }
.product-slide-btn { width: 100%; text-align: center; }

/* Slider Controls */
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--ivory);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
  z-index: 10;
  margin-top: -1.5rem; /* offset for dots row */
}
.slider-prev { left: 0; }
.slider-next { right: 0; }
.slider-prev:hover, .slider-next:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--dark);
  transform: translateY(-50%) scale(1.08);
}
.slider-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  align-items: center;
}
.slider-dot {
  width: .5rem; height: .5rem;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background .2s, width .2s;
  padding: 0;
}
.slider-dot.active {
  background: var(--saffron);
  width: 1.5rem;
  border-radius: 4px;
}

/* ---------- BOOKING MESSAGE (error state) ---------- */
.booking-message.error { color: #f87171; margin-top: .75rem; font-size: .9rem; }