:root {
  color-scheme: light;
  /* Core palette — final values used throughout */
  --ink: #271724;
  --muted: #665e61;
  --cream: #fff5df;
  --paper: #fffaf2;
  --paper-strong: #fff4de;
  --olive: #666b3c;
  --plum: #392136;
  --gold: #b98838;
  --gold-soft: #e8c98a;
  --green: var(--gold);
  --line: rgba(75, 48, 58, 0.14);
  --glow: 0 0 0 1px rgba(233, 198, 127, 0.45), 0 18px 44px rgba(66, 31, 41, 0.12), 0 0 48px rgba(232, 201, 138, 0.18);
  font-family: "Source Sans 3", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

/* Universal reset to completely hide native disclosure markers on details/summary elements in all browsers */
summary::-webkit-details-marker,
summary::marker {
  display: none !important;
  content: "" !important;
  font-size: 0 !important;
  width: 0 !important;
  height: 0 !important;
  color: transparent !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

summary {
  list-style: none !important;
  list-style-type: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 245, 223, 0.7), rgba(255, 250, 240, 0.96) 38%),
    var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 0.65rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 250, 240, 0.88);
  border-bottom: 1px solid rgba(185, 136, 56, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(57, 33, 54, 0.03);
  transition: all 0.3s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.88rem;
  color: var(--plum);
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.85;
}

.brand img {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  box-shadow: 0 0 10px rgba(185, 136, 56, 0.2);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand:hover img {
  transform: rotate(360deg) scale(1.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links a:not(.header-cta) {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-links a:not(.header-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:not(.header-cta):hover {
  color: var(--plum);
}

.nav-links a:not(.header-cta):hover::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff !important;
  text-decoration: none;
  padding: 0.5rem 1.15rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 14px rgba(185, 136, 56, 0.25);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
  background: var(--plum);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(57, 33, 54, 0.25);
}

.header-cta:active {
  transform: translateY(0);
}

.hero {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 4vw, 3rem) 1.25rem;
  background: linear-gradient(180deg, #fffaf0 0%, #fff5df 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(42rem, 86vw);
  aspect-ratio: 1;
  top: 11%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(185, 135, 47, 0.16), rgba(185, 135, 47, 0));
  pointer-events: none;
}

.hero-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  width: 100%;
  max-width: 1100px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  animation: fadeUp 600ms ease both;
  align-items: flex-start;
}

.hero h1 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-weight: 900;
}

.hero > .hero-wrapper > .hero-content > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
}

.hero-image-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 600ms ease 120ms both;
}

.hero-girl-image {
  width: 100%;
  max-width: 380px;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(185, 135, 47, 0.2);
  border: 1px solid rgba(185, 135, 47, 0.1);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h2,
h3 {
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeUp 600ms ease 120ms both;
  width: 100%;
  max-width: 380px;
}

.hero-text-link {
  display: inline-block;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: underline;
  text-align: center;
  margin-top: 0.5rem;
  transition: color 180ms ease;
  cursor: pointer;
}

.hero-text-link:hover {
  color: var(--gold);
}

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

.workshops-band {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-socials {
  display: flex;
  gap: 1.2rem;
  animation: fadeUp 600ms ease 240ms both;
  margin-top: 0.5rem;
}

.hero-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid var(--line);
  color: var(--plum);
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
  box-shadow: 0 8px 24px rgba(36, 17, 31, 0.1);
}

.hero-socials a:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: #fff;
  box-shadow: 0 12px 32px rgba(185, 136, 56, 0.25);
}

.intro-band {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 5rem) 0;
  animation: fadeUp 600ms ease both;
}

.intro-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
}

.intro-text p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.trust-metrics {
  display: grid;
  gap: 1rem;
}

.metric-card {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(36, 17, 31, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
  text-align: center;
}

.metric-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(36, 17, 31, 0.1);
}

.metric-card strong {
  display: block;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  min-height: 3.5rem;
  padding: 1.1rem 2rem;
  border-radius: 14px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  line-height: 1.2;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 56px rgba(36, 17, 31, 0.18);
}

.button:active {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #a37328 100%);
  color: #fff;
  border-color: rgba(185, 136, 56, 0.2);
  box-shadow: 0 12px 32px rgba(185, 136, 56, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-primary:hover {
  background: linear-gradient(135deg, #d2a14e 0%, #b88636 100%);
  box-shadow: 0 32px 64px rgba(185, 136, 56, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.button-primary:active {
  box-shadow: 0 16px 32px rgba(185, 136, 56, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.button-secondary {
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(36, 17, 31, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.button-secondary:hover {
  background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 20px 44px rgba(185, 136, 56, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.button-secondary:active {
  background: #f0f0f0;
  box-shadow: 0 8px 16px rgba(185, 136, 56, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.wide {
  width: 100%;
}

.community-band,
.sessions-band,
.workshops-band,
.stories-band {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.community-band,
.sessions-band,
.stories-band {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.75rem;
  animation: fadeUp 600ms ease both;
}

.section-heading.compact {
  max-width: 620px;
}

.section-heading h2,
.workshops-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.section-heading p:not(.eyebrow),
.workshops-band p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

/* ─── Community Section ─────────────────────────────── */
.community-section-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* FREE Community Hero — premium redesign */
.free-community-hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 75% 40%, rgba(37,211,102,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 70% 70% at 10% 80%, rgba(185,136,56,0.12) 0%, transparent 60%),
    linear-gradient(135deg, #2a1228 0%, #391536 45%, #1c0d1b 100%);
  border-radius: 28px;
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 5vw, 4.5rem);
  color: #fff;
  overflow: hidden;
  box-shadow:
    0 40px 90px rgba(39, 18, 40, 0.5),
    0 0 0 1px rgba(255,255,255,0.07),
    inset 0 1px 0 rgba(255,255,255,0.06);
  animation: fadeUp 600ms ease both;
}

/* Decorative glow orbs */
.free-community-hero::before,
.free-community-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.free-community-hero::before {
  width: 500px;
  height: 500px;
  top: -160px;
  right: -100px;
  background: radial-gradient(circle, rgba(185,136,56,0.18) 0%, transparent 65%);
}
.free-community-hero::after {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(37,211,102,0.1) 0%, transparent 65%);
}

/* Two-column inner layout */
.free-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

/* Left: text + CTA */
.free-hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.free-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: #4eff9f;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.free-hero-eyebrow i {
  font-size: 1.05rem;
  color: #25d366;
}

.free-community-hero h2 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
}

.free-community-sub {
  margin: 0;
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* WhatsApp CTA group */
.free-community-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.button-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #25d366 0%, #128c4a 100%);
  color: #fff !important;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 1rem 2.2rem;
  border-radius: 14px;
  border: none;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(37,211,102,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 260ms cubic-bezier(0.34,1.56,0.64,1);
  width: auto;
  min-height: 3.5rem;
  position: relative;
  animation: pulseGlow 2.5s infinite;
  animation-delay: 1.5s;
}

/* Pulsing outline glow to grab attention */
@keyframes pulseGlow {
  0% { 
    box-shadow: 0 14px 36px rgba(37,211,102,0.35), inset 0 1px 0 rgba(255,255,255,0.2), 0 0 0 0 rgba(37, 211, 102, 0.7); 
  }
  70% { 
    box-shadow: 0 14px 36px rgba(37,211,102,0.35), inset 0 1px 0 rgba(255,255,255,0.2), 0 0 0 18px rgba(37, 211, 102, 0); 
  }
  100% { 
    box-shadow: 0 14px 36px rgba(37,211,102,0.35), inset 0 1px 0 rgba(255,255,255,0.2), 0 0 0 0 rgba(37, 211, 102, 0); 
  }
}

.button-whatsapp i {
  font-size: 1.4rem;
}

.button-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(37,211,102,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  background: linear-gradient(135deg, #2de070 0%, #15a358 100%);
}

.free-community-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
}

.free-community-note i {
  font-size: 0.72rem;
}

/* Right: compact list of benefits */
.free-benefit-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.free-benefit-grid li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  transition: none;
}

.free-benefit-grid li:hover {
  background: transparent;
  border-color: transparent;
  transform: none;
}

.free-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(185, 136, 56, 0.15);
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.free-benefit-grid li div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.1rem;
}

.free-benefit-grid li strong {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.2;
}

.free-benefit-grid li span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 860px) {
  .free-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .free-community-hero {
    border-radius: 20px;
    padding: 2rem 1.5rem;
  }
  .free-community-actions {
    width: 100%;
  }
  .button-whatsapp {
    width: 100%;
    font-size: 1rem;
  }

}


/* PAID Upgrade Card */
.paid-community-upgrade {
  background: rgba(255,255,255,0.97);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: 0 12px 40px rgba(36, 17, 31, 0.06);
  animation: fadeUp 600ms ease 100ms both;
}

.upgrade-header {
  margin-bottom: 1.8rem;
}

.upgrade-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(185, 136, 56, 0.1);
  border: 1px solid rgba(185, 136, 56, 0.25);
  color: var(--gold);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.upgrade-header h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--ink);
  line-height: 1.2;
}

.upgrade-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.upgrade-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: center;
}

.upgrade-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(36,17,31,0.1);
}

.upgrade-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.upgrade-sub {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 860px) {
  .upgrade-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .free-community-hero {
    border-radius: 20px;
    padding: 2rem 1.5rem;
  }
  .free-community-actions {
    width: 100%;
  }
  .button-whatsapp {
    width: 100%;
    font-size: 1rem;
  }
  .razorpay-button-wrapper {
    width: 100%;
  }
  .razorpay-button-wrapper form {
    width: 100%;
  }
  .razorpay-button-wrapper form iframe,
  .razorpay-button-wrapper form input[type="submit"],
  .razorpay-button-wrapper form input[type="button"],
  .razorpay-button-wrapper form button,
  .razorpay-payment-button,
  .razorpay-subscription-button {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}

.razorpay-button-wrapper {
  min-height: 3.1rem;
  padding-bottom: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Benefit list (used in upgrade card) */
.benefit-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink);
  line-height: 1.5;
  font-size: 1.05rem;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(185, 136, 56, 0.1);
}

.session-grid {

  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 2rem 0 0;
  width: 100%;
}

.session-card {
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  display: block;
}

.session-card summary {
  display: block; /* Fixes Safari default disclosure arrow bug */
  cursor: pointer;
  list-style: none;
  user-select: none;
  width: 100%;
  box-sizing: border-box;
}

.session-card summary::-webkit-details-marker,
.session-card summary::marker {
  display: none !important;
  content: "" !important;
}

.session-summary-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 220ms ease;
}

.session-summary-inner:hover {
  background-color: rgba(185, 136, 56, 0.03);
}

.session-card[open] .session-summary-inner {
  background-color: rgba(185, 136, 56, 0.01);
}

.session-card-header-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
  text-align: left;
  flex-grow: 1;
}

.session-card-title-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.session-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 !important;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.session-card-price {
  color: var(--gold) !important;
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  background: rgba(185, 136, 56, 0.07);
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  white-space: nowrap;
  margin: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  border: 1px solid rgba(185, 136, 56, 0.12);
}

.session-card-chevron {
  font-size: 0.95rem;
  color: var(--muted);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), color 200ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}

.session-card[open] {
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(185, 135, 47, 0.08), 0 0 0 1px rgba(185, 136, 56, 0.15);
  transform: translateY(-2px) scale(1.005);
}

.session-card[open] .session-card-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.session-card-content {
  padding: 0;
  border-top: 1px solid transparent;
  text-align: left;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 320ms cubic-bezier(0.25, 1, 0.5, 1), opacity 250ms ease;
  box-sizing: border-box;
}

.session-card[open] .session-card-content {
  border-top-color: rgba(185, 136, 56, 0.1);
}

.session-card-content-inner {
  padding: 1.25rem 1.5rem 1.5rem 1.5rem;
}

.session-card-desc {
  margin: 0 0 1.25rem 0 !important;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}



.session-subtitle {
  display: block;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: none;
  color: var(--muted);
  margin-top: 0.25rem;
}

@media (max-width: 580px) {
  .session-summary-inner {
    padding: 1rem 0.85rem;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .session-card-header-left {
    min-width: 100%;
    margin-bottom: 0.2rem;
  }
  .session-card h3 {
    font-size: 1.05rem;
    line-height: 1.35;
  }
  .session-card-price {
    font-size: 0.9rem !important;
    padding: 0.25rem 0.6rem;
  }
  .session-card-chevron {
    margin-left: auto;
  }
  .session-card-content {
    padding: 0;
  }
  .session-card-content-inner {
    padding: 1rem 0.85rem;
  }
}

.session-rzp-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 0.5rem;
}

.session-rzp-wrapper form,
.session-rzp-wrapper iframe {
  display: flex;
  justify-content: center;
}


.workshops-band {
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--plum);
  color: #fffaf0;
  box-shadow: 0 22px 50px rgba(36, 17, 31, 0.13);
}

.workshops-band p {
  max-width: 620px;
  color: rgba(255, 250, 240, 0.74);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-grid img:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(36, 17, 31, 0.12);
}

.site-footer {
  padding: 2rem 1rem 3rem;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.4rem;
  border-radius: 99px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 240ms ease;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  color: #7A537D;
  border: 1px solid rgba(122, 83, 125, 0.25);
  box-shadow: 0 4px 12px rgba(122, 83, 125, 0.06);
}

.footer-social-btn:hover {
  transform: translateY(-2px);
  background: rgba(122, 83, 125, 0.08);
  box-shadow: 0 8px 20px rgba(122, 83, 125, 0.15);
  color: #7A537D;
}

.footer-social-yt {
  background: rgba(255, 255, 255, 0.55);
  color: #A85A5C;
  border: 1px solid rgba(168, 90, 92, 0.25);
  box-shadow: 0 4px 12px rgba(168, 90, 92, 0.06);
}

.footer-social-yt:hover {
  background: rgba(168, 90, 92, 0.08);
  box-shadow: 0 8px 20px rgba(168, 90, 92, 0.15);
  color: #A85A5C;
}

.social-hover-ig:hover {
  transform: translateY(-2px);
  background: rgba(122, 83, 125, 0.08) !important;
  box-shadow: 0 4px 12px rgba(122, 83, 125, 0.1);
}

.social-hover-yt:hover {
  transform: translateY(-2px);
  background: rgba(168, 90, 92, 0.08) !important;
  box-shadow: 0 4px 12px rgba(168, 90, 92, 0.1);
}

@media (max-width: 900px) {
  .hero {
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .community-layout,
  .session-grid {
    grid-template-columns: 1fr;
  }

  .community-image {
    min-height: auto;
    aspect-ratio: 1 / 1;
  }

  .intro-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content {
    gap: 1.5rem;
  }


  .benefit-list li {
    font-size: 1rem;
    padding-left: 1.5rem;
  }

  .hero-girl-image {
    max-width: 100%;
    max-height: 380px;
  }
}

@media (max-width: 680px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 0.75rem;
  }

  .brand {
    font-size: 0.82rem;
  }

  .nav-links {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.4rem;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0.25rem 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a:not(.header-cta) {
    flex: 0 0 auto;
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    background: rgba(185, 136, 56, 0.06);
    border: 1px solid rgba(185, 136, 56, 0.15);
    font-weight: 600;
  }

  .nav-links a:not(.header-cta):hover::after {
    display: none;
  }

  .nav-links a:not(.header-cta):hover {
    background: rgba(185, 136, 56, 0.12);
    color: var(--plum);
  }

  .header-cta {
    padding: 0.4rem 0.9rem;
    font-size: 0.76rem;
  }

  .hero {
    padding: 1rem 1rem 1.5rem;
  }

  .hero-wrapper {
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
    margin-bottom: 0.5rem;
  }

  .hero-actions {
    max-width: 100%;
    gap: 1.2rem;
  }

  .button {
    min-height: 3.6rem;
    padding: 1rem 1.4rem;
    font-size: 0.95rem;
    width: 100%;
    border-radius: 10px;
    -webkit-tap-highlight-color: transparent;
  }

  .button:active {
    transform: scale(0.98);
  }

  .hero-socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
  }

  .hero-socials a {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.1rem;
    -webkit-tap-highlight-color: transparent;
  }

  .hero-girl-image {
    max-width: 100%;
    max-height: 350px;
    border-radius: 12px;
  }

  .intro-band,
  .community-band,
  .sessions-band,
  .stories-band {
    width: calc(100% - 1.5rem);
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    padding: 2rem 0;
  }

  .section-heading h2,
  .workshops-band h2 {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }

  .section-heading p:not(.eyebrow),
  .workshops-band p {
    font-size: 0.95rem;
  }

  .community-details {
    padding: 1.2rem;
    gap: 1rem;
  }

  .benefit-list li {
    font-size: 0.95rem;
    padding-left: 1.5rem;
  }


  .workshops-band {
    width: calc(100% - 1.5rem);
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .workshops-band h2 {
    margin-bottom: 0.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .gallery-grid img {
    height: 140px;
  }

  .intro-text h2 {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
    margin-bottom: 0.75rem;
  }

  .intro-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .metric-card {
    padding: 1.2rem;
  }

  .metric-card strong {
    font-size: 1.5rem;
  }

  .metric-card span {
    font-size: 0.85rem;
  }

  .site-footer {
    padding: 1.5rem 1rem 2.5rem;
    font-size: 0.9rem;
  }
}

/* Enhanced hover lifts */
.session-card {
  transition: transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 280ms ease, border-color 280ms ease;
}

.session-card:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 136, 56, 0.3);
  box-shadow: 0 24px 52px rgba(36, 17, 31, 0.1);
}

.community-details,
.metric-card {
  transition: transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 280ms ease;
}

.community-details:hover,
.metric-card:hover {
  transform: translateY(-5px);
}

.gallery-grid img {
  transition: all 280ms ease;
}

.gallery-grid img:hover {
  transform: scale(1.05) translateY(-4px);
}

.community-image {
  transition: all 280ms ease;
}

.community-image:hover {
  transform: translateY(-4px);
}

.button {
  position: relative;
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: left 300ms ease;
  pointer-events: none;
}

.button:hover::before {
  left: 100%;
}

.benefit-list li {
  transition: transform 180ms ease, color 180ms ease;
}

.benefit-list li:hover {
  transform: translateX(4px);
  color: var(--gold);
}

.nav-links a {
  position: relative;
  transition: color 200ms ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 250ms ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero-girl-image {
  transition: all 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-girl-image {
  animation: gentle-float 3s ease-in-out infinite;
}

@keyframes gentle-float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero-socials a {
  transition: all 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-socials a:hover {
  transform: translateY(-4px) scale(1.1);
}

.section-heading {
  transition: opacity 300ms ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}


body {
  position: relative;
  background:
    radial-gradient(circle at top center, rgba(255, 236, 194, 0.95), rgba(255, 236, 194, 0) 32%),
    radial-gradient(circle at 15% 20%, rgba(220, 193, 138, 0.28), rgba(220, 193, 138, 0) 18%),
    radial-gradient(circle at 85% 18%, rgba(140, 183, 153, 0.16), rgba(140, 183, 153, 0) 18%),
    linear-gradient(180deg, #fffdf8 0%, #fff7eb 40%, #fffaf3 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(28px);
  opacity: 0.45;
}

body::before {
  top: -7rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(233, 201, 138, 0.85), rgba(233, 201, 138, 0));
}

body::after {
  right: -8rem;
  bottom: 8rem;
  background: radial-gradient(circle, rgba(233, 201, 138, 0.22), rgba(233, 201, 138, 0));
}

/* Custom site-header base styles overridden elsewhere */

.brand,
.nav-links,
.eyebrow,
.button,
.session-price,
.metric-card strong {
  font-family: "Manrope", sans-serif;
}

.hero h1,
.intro-text h2,
.section-heading h2,
.workshops-band h2,
.session-card h3 {
  font-family: "Cinzel", serif;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  background: var(--gold);
}

.hero {
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
  background:
    radial-gradient(circle at center top, rgba(255, 241, 205, 0.9), rgba(255, 241, 205, 0) 35%),
    linear-gradient(180deg, #fffef9 0%, #fff5e4 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 3rem auto auto 10%;
  width: 7rem;
  height: 7rem;
  border: 1px solid rgba(185, 136, 56, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(233, 201, 138, 0.22);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -0.5rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(185, 136, 56, 0.3);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 0 24px rgba(233, 201, 138, 0.26);
}

.manifestation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: -0.8rem;
}

.manifestation-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.84);
  border: 1px solid rgba(185, 136, 56, 0.22);
  box-shadow: 0 0 24px rgba(233, 201, 138, 0.18);
  color: var(--plum);
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero > .hero-wrapper > .hero-content > p {
  font-size: 1.12rem;
  max-width: 34rem;
}

.hero-image-side::before,
.hero-image-side::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-image-side::before {
  inset: -1rem;
  border-radius: 26px;
  background:
    radial-gradient(circle at top, rgba(255, 244, 214, 0.9), rgba(255, 244, 214, 0) 45%),
    linear-gradient(145deg, rgba(255, 250, 242, 0.82), rgba(255, 241, 205, 0.42));
  box-shadow: 0 0 60px rgba(233, 201, 138, 0.28);
}

.hero-image-side::after {
  inset: 1.15rem;
  border: 1px solid rgba(185, 136, 56, 0.24);
  border-radius: 22px;
}

.tarot-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 0.45rem;
  width: 10.5rem;
  padding: 1rem 0.9rem 1.1rem;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 242, 211, 0.92));
  border: 1px solid rgba(185, 136, 56, 0.24);
  box-shadow: 0 22px 50px rgba(57, 33, 54, 0.18), 0 0 48px rgba(233, 201, 138, 0.26);
  backdrop-filter: blur(10px);
}

.tarot-card::before {
  content: "";
  position: absolute;
  inset: 0.65rem;
  border: 1px solid rgba(185, 136, 56, 0.18);
  border-radius: 14px;
}

.tarot-card::after {
  content: "";
  position: absolute;
  inset: 1.55rem 2rem auto;
  height: 4.2rem;
  border-radius: 999px 999px 0 0;
  border: 1px solid rgba(185, 136, 56, 0.26);
  border-bottom: 0;
  opacity: 0.8;
}

.tarot-card-left {
  top: 2rem;
  left: -2.4rem;
  transform: rotate(-12deg);
}

.tarot-card-right {
  right: -2.2rem;
  bottom: 2.5rem;
  transform: rotate(11deg);
}

.tarot-card-name,
.tarot-card-mark {
  position: relative;
  z-index: 1;
}

.tarot-card-name {
  padding-top: 5.4rem;
  color: var(--plum);
  font-family: "Cinzel", serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tarot-card-mark {
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-girl-image {
  position: relative;
  max-width: 430px;
  max-height: none;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(185, 136, 56, 0.28);
  box-shadow: 0 28px 80px rgba(57, 33, 54, 0.18), 0 0 48px rgba(233, 201, 138, 0.3);
}

.intro-band,
.community-band,
.sessions-band,
.stories-band {
  position: relative;
}

.intro-band::before,
.community-band::before,
.sessions-band::before,
.stories-band::before {
  content: "";
  position: absolute;
  top: 1.4rem;
  right: 0.3rem;
  width: 5rem;
  height: 5rem;
  border-radius: 18px;
  border: 1px solid rgba(185, 136, 56, 0.18);
  transform: rotate(45deg);
  opacity: 0.55;
  pointer-events: none;
}

.metric-card,
.community-details,
.session-card,
.workshops-band,
.story-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 232, 0.92));
  border: 1px solid rgba(185, 136, 56, 0.18);
  box-shadow: var(--glow);
}

.metric-card,
.community-details,
.session-card {
  position: relative;
  overflow: hidden;
}

.metric-card::before,
.community-details::before,
.session-card::before {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border: 1px solid rgba(185, 136, 56, 0.16);
  border-radius: 6px;
  pointer-events: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #d2a14e 52%, #b88636 100%);
  box-shadow: 0 16px 40px rgba(185, 136, 56, 0.22), 0 0 30px rgba(185, 136, 56, 0.2);
}

.button-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 224, 0.92));
}

.community-image {
  border-radius: 18px;
  border-color: rgba(185, 136, 56, 0.2);
  box-shadow: var(--glow);
}

.workshops-band {
  background:
    radial-gradient(circle at top right, rgba(233, 201, 138, 0.3), rgba(233, 201, 138, 0) 26%),
    linear-gradient(135deg, #2f1a30 0%, #3d2340 100%);
}

.gallery-grid {
  --story-columns: 4;
  --story-gap: 1rem;
  --story-showcase-height: clamp(28rem, 72vh, 52rem);
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--story-columns), minmax(0, 1fr));
  gap: var(--story-gap);
  min-height: var(--story-showcase-height);
  padding: 1.05rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top center, rgba(255, 244, 214, 0.74), rgba(255, 244, 214, 0) 34%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 244, 223, 0.92));
  border: 1px solid rgba(185, 136, 56, 0.18);
  box-shadow: var(--glow);
  overflow: hidden;
  isolation: isolate;
}

.gallery-grid::before,
.gallery-grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 5.5rem;
  pointer-events: none;
  z-index: 3;
}

.gallery-grid::before {
  top: 0;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(255, 250, 242, 0));
}

.gallery-grid::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(255, 250, 242, 0.98), rgba(255, 250, 242, 0));
}

.story-column {
  position: relative;
  height: var(--story-showcase-height);
  overflow: hidden;
}

.story-track {
  display: grid;
  gap: var(--story-gap);
  animation: story-marquee var(--story-duration, 38s) linear infinite;
  will-change: transform;
}

.story-column[data-direction="down"] .story-track {
  animation-direction: reverse;
}

.gallery-grid:hover .story-track,
.gallery-grid:focus-within .story-track {
  animation-play-state: paused;
}

.story-stack {
  display: grid;
  gap: var(--story-gap);
  align-content: start;
}

.story-card {
  position: relative;
  display: grid;
  width: 100%;
  padding: 0.7rem;
  appearance: none;
  border-width: 1px;
  font: inherit;
  border-radius: 22px;
  cursor: pointer;
  text-align: left;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.story-card:hover,
.story-card:focus-visible {
  transform: translateY(-6px) rotate(-1deg);
  border-color: rgba(185, 136, 56, 0.38);
  box-shadow: 0 24px 60px rgba(57, 33, 54, 0.16), 0 0 50px rgba(233, 201, 138, 0.28);
}

.story-card::after {
  content: "";
  position: absolute;
  inset: auto 0.7rem 0.7rem;
  height: 5rem;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, rgba(57, 33, 54, 0), rgba(57, 33, 54, 0.2));
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.story-card:focus-visible {
  outline: 2px solid rgba(185, 136, 56, 0.45);
  outline-offset: 4px;
}

.story-card:hover::after,
.story-card:focus-visible::after {
  opacity: 1;
}

.story-card-frame {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(255, 242, 209, 0.84));
  border: 1px solid rgba(185, 136, 56, 0.16);
  position: relative;
}

.story-card-frame::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(185, 136, 56, 0.2);
  border-radius: 14px;
  pointer-events: none;
}

.story-card img {
  width: 100%;
  aspect-ratio: 0.78;
  height: auto;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
}

.story-card-label {
  display: none;
}

@keyframes story-marquee {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-50% - (var(--story-gap) / 2)));
  }
}

.horizontal-marquee-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.horizontal-marquee-viewport::before,
.horizontal-marquee-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 5;
  pointer-events: none;
}

.horizontal-marquee-viewport::before {
  left: 0;
  background: linear-gradient(to right, #fffaf0 0%, rgba(255, 250, 240, 0) 100%);
}

.horizontal-marquee-viewport::after {
  right: 0;
  background: linear-gradient(to left, #fffaf0 0%, rgba(255, 250, 240, 0) 100%);
}

.horizontal-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@keyframes horizontal-marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.horizontal-marquee-viewport:hover .horizontal-marquee-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-grid::before,
  .gallery-grid::after {
    display: none;
  }

  .story-column {
    height: auto;
  }

  .story-track {
    animation: none !important;
    transform: none !important;
  }
}

.story-lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  padding: 1.25rem;
  border: 0;
  background: transparent;
  overflow: visible;
}

.story-lightbox::backdrop {
  background: rgba(28, 14, 24, 0.72);
  backdrop-filter: blur(10px);
}

.story-lightbox-shell {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.story-lightbox-dialog {
  position: relative;
  width: min(96vw, 980px);
  max-height: calc(100vh - 2.5rem);
  padding: 1rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(255, 245, 223, 0.96));
  border: 1px solid rgba(185, 136, 56, 0.24);
  box-shadow: 0 30px 90px rgba(26, 13, 22, 0.3), 0 0 60px rgba(233, 201, 138, 0.2);
}

.story-lightbox-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-right: 3.5rem;
}

.story-lightbox-title {
  margin: 0;
  padding-left: 0.3rem;
  color: var(--gold);
  font-family: "Manrope", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-lightbox-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.92);
  border: 1px solid rgba(185, 136, 56, 0.22);
  color: var(--plum);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.story-lightbox-scroll {
  margin-top: 1rem;
  max-height: calc(100vh - 10rem);
  overflow: auto;
  border-radius: 18px;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(185, 136, 56, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 242, 0.55);
}

.story-lightbox-dialog img {
  display: block;
  width: min(100%, 720px);
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  cursor: zoom-in;
  transition: width 220ms ease;
}

.story-lightbox-zoomed .story-lightbox-dialog img {
  width: min(100%, 980px);
  cursor: zoom-out;
}

.story-lightbox-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 0;
  border-radius: 999px;
  background: rgba(57, 33, 54, 0.9);
  color: #fffaf2;
  box-shadow: 0 10px 24px rgba(26, 13, 22, 0.22);
  cursor: pointer;
}

body.story-lightbox-open {
  overflow: hidden;
}
.site-footer {
  color: #7c6e72;
}

@media (max-width: 900px) {
  .hero-girl-image {
    max-width: 100%;
  }

  .tarot-card {
    width: 9rem;
  }

  .tarot-card-left {
    left: -0.8rem;
  }

  .tarot-card-right {
    right: -0.7rem;
  }

  .gallery-grid {
    --story-showcase-height: 42rem;
  }
}

@media (max-width: 680px) {
  .hero::after {
    top: 4.9rem;
    left: auto;
    right: -1.8rem;
    width: 5.25rem;
    height: 5.25rem;
    opacity: 0.35;
  }

  .manifestation-tags {
    gap: 0.5rem;
    margin-top: 0;
  }

  .manifestation-tags span {
    min-height: 2.1rem;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .tarot-card {
    display: none;
  }

  .hero-content .eyebrow {
    width: min(100%, 25rem);
    max-width: 100%;
    margin-bottom: 0.35rem;
    padding: 0.75rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.09em;
    line-height: 1.35;
    text-align: center;
  }

  .hero h1 {
    line-height: 1.08;
  }

  .gallery-grid {
    --story-showcase-height: 34rem;
    padding: 0.8rem;
  }

  .story-column {
    max-width: 24rem;
    width: 100%;
    margin: 0 auto;
  }

  .story-card {
    padding: 0.6rem;
    border-radius: 18px;
  }

  .story-card::after {
    inset: auto 0.6rem 0.6rem;
  }

  .story-lightbox {
    padding: 0.75rem;
  }

  .story-lightbox-shell {
    align-items: start;
  }

  .story-lightbox-dialog {
    width: 100%;
    padding: 0.85rem;
    border-radius: 18px;
  }

  .story-lightbox-head {
    flex-direction: column;
    gap: 0.7rem;
    padding-right: 2.9rem;
  }

  .story-lightbox-link {
    width: 100%;
  }

  .story-lightbox-scroll {
    max-height: calc(100vh - 12rem);
  }

  .story-lightbox-dialog img {
    width: 100%;
  }
}


.about-card-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 245, 223, 0.6) 100%);
  border: 1px solid rgba(185, 135, 47, 0.25);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 4rem);
  box-shadow: 0 20px 50px rgba(185, 135, 47, 0.08);
  position: relative;
  overflow: hidden;
}

.about-card-container::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(185, 135, 47, 0.2) 0%, rgba(185, 135, 47, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-content-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-top: 2rem;
}

.about-bio {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-bio p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.about-stat-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid rgba(36, 24, 38, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(36, 17, 31, 0.03);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.about-stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(185, 135, 47, 0.12);
}

.about-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  background: rgba(185, 135, 47, 0.1);
  color: var(--gold);
  border-radius: 14px;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.about-stat-info {
  flex: 1;
  min-width: 0;
}

.about-stat-info h3 {
  margin: 0 0 0.15rem 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}

.about-stat-info p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.3;
}

/* Responsive updates for About Section */
@media (max-width: 900px) {
  .about-content-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
  }
  
  .about-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-stat-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 1.5rem 1rem;
    gap: 0.8rem;
  }
  
  .about-stat-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 680px) {
  .about-card-container {
    padding: 1.5rem;
    border-radius: 16px;
  }
  
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stat-card {
    flex-direction: row;
    text-align: left;
    align-items: center;
    padding: 1.25rem;
    gap: 1.2rem;
  }
  
  .about-stat-info {
    align-items: flex-start;
  }
}


.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 2rem;
  max-width: 660px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(36, 17, 31, 0.015);
  transition: all 200ms ease;
}

.faq-item[open] {
  border-color: var(--gold);
  box-shadow: 0 6px 16px rgba(185, 135, 47, 0.05);
  background: #fbfaf8;
}

.faq-question {
  display: block; /* Fixes Safari default disclosure arrow bug */
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker,
.faq-question::marker {
  display: none !important;
  content: "" !important;
}

.faq-question-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  width: 100%;
  box-sizing: border-box;
}

.faq-icon {
  font-size: 0.85rem;
  color: var(--muted);
  transition: transform 250ms ease, color 200ms ease;
  margin-left: auto; /* Pushes the icon to the far right */
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-answer {
  padding: 0 1.25rem 1.1rem;
  border-top: 1px solid transparent;
}

.faq-item[open] .faq-answer {
  border-top-color: rgba(36, 24, 38, 0.06);
}

.faq-answer p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Top Community Banner */
.top-community-banner {
  background: linear-gradient(90deg, var(--plum) 0%, #4a2946 100%);
  color: #fff;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.top-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-banner-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.banner-badge {
  background: var(--gold);
  color: var(--plum);
  font-weight: 800;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.banner-title {
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.3px;
}

.top-banner-bullets {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
}

.top-banner-bullets li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-banner-bullets li i {
  color: var(--gold-soft);
  font-size: 0.85rem;
}

.banner-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--plum);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 180ms ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.banner-cta-button:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(185, 136, 56, 0.25);
}

.banner-cta-button i {
  transition: transform 180ms ease;
}

.banner-cta-button:hover i {
  transform: translateX(2px);
}

/* YouTube Section */
.youtube-band {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.youtube-wrapper {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 245, 223, 0.4) 100%);
  border: 1px solid rgba(185, 135, 47, 0.2);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 2.5rem;
  box-shadow: 0 20px 50px rgba(185, 135, 47, 0.05);
  overflow: hidden;
}

/* YouTube Carousel */
/* YouTube Horizontal Marquee */
@keyframes yt-scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.yt-marquee-viewport {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  /* Fade edges — same feel as the story columns */
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.yt-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: yt-scroll-left 28s linear infinite;
  will-change: transform;
}

/* Pause on hover so visitors can interact / watch */
.yt-marquee-viewport:hover .yt-marquee-track {
  animation-play-state: paused;
}

.yt-marquee-slide {
  flex: 0 0 clamp(280px, 52vw, 640px);
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(185, 135, 47, 0.18);
  box-shadow: 0 18px 40px rgba(36, 17, 31, 0.14), 0 4px 12px rgba(185, 135, 47, 0.1);
  transition: box-shadow 280ms ease, transform 280ms ease;
}

.video-container:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 28px 56px rgba(36, 17, 31, 0.2), 0 8px 20px rgba(185, 135, 47, 0.18);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 600px) {
  .yt-marquee-slide {
    flex: 0 0 82vw;
  }
  .yt-marquee-track {
    gap: 1rem;
    animation-duration: 20s;
  }
}



/* Read More button styling */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  padding: 0;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
  font-family: inherit;
  align-self: flex-start;
}

.read-more-btn:hover {
  color: #a37328;
}

.read-more-btn i {
  transition: transform 200ms ease;
}

.read-more-btn[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.about-bio-more {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 350ms cubic-bezier(0.4, 0, 0.2, 1), opacity 300ms ease;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-bio-more.expanded {
  opacity: 1;
}

/* Media Queries for new components */
@media (max-width: 1024px) {
  .top-banner-bullets {
    display: none;
  }
}

@media (max-width: 768px) {
  .youtube-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

@media (max-width: 600px) {
  .top-community-banner {
    padding: 0.6rem 0.75rem;
  }
  .top-banner-inner {
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    text-align: center;
  }
  .banner-title {
    font-size: 0.85rem;
  }
  .banner-cta-button {
    width: 100%;
    justify-content: center;
    padding: 0.4rem 0.8rem;
  }
}

/* Instagram Horizontal Marquee */
.instagram-band {
  background-color: var(--bg);
  padding: 4rem 0 1rem;
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

@keyframes ig-scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ig-marquee-viewport {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.ig-marquee-track {
  display: flex;
  gap: 1.5rem;
  padding-right: 1.5rem; /* Ensures seamless -50% loop */
  width: max-content;
  animation: ig-scroll-left 45s linear infinite;
  will-change: transform;
}

.ig-marquee-viewport:hover .ig-marquee-track {
  animation-play-state: paused;
}

.ig-marquee-slide {
  flex: 0 0 326px; /* Exact IG embed width */
  display: flex;
  justify-content: center;
}

.ig-container {
  position: relative;
  width: 326px;
  height: 540px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(185, 135, 47, 0.18);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: box-shadow 300ms ease, transform 300ms ease;
  background: #fff;
}

.ig-container:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.ig-container iframe {
  width: 328px;
  height: 542px;
  margin: -1px; /* Hides native IG border cleanly */
  border: 0;
}

@media (max-width: 600px) {
  .ig-marquee-track {
    gap: 1rem;
    padding-right: 1rem;
    animation-duration: 35s;
  }
}

/* Pricing Option Selector inside Workshop Card */
.workshop-pricing-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem 0;
  width: 100%;
}

.pricing-opt {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.15rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  user-select: none;
}

.pricing-opt:hover {
  border-color: var(--gold-soft);
  background: #ffffff;
}

.pricing-opt.active {
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(185, 136, 56, 0.06);
}

/* Premium Membership Option Glow & Shimmer */
.pricing-opt.premium-opt {
  border: 1.5px solid rgba(185, 136, 56, 0.25);
  box-shadow: 0 4px 12px rgba(185, 136, 56, 0.04);
}

.pricing-opt.premium-opt.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(233, 198, 127, 0.45), 0 8px 24px rgba(66, 31, 41, 0.08), 0 0 24px rgba(232, 201, 138, 0.12);
}

/* Radio Option Styling custom dot */
.pricing-opt input[type="radio"] {
  display: none; /* Hide native radio */
}

.opt-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
  position: relative;
  z-index: 2;
}

.pricing-opt.active .opt-dot {
  border-color: var(--gold);
}

.pricing-opt.active .opt-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  display: block;
}

.opt-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

.opt-name {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.opt-benefit {
  font-size: 0.76rem;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.opt-price {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--plum);
}

/* Small Badge on Premium Option */
.opt-badge {
  position: absolute;
  top: -9px;
  right: 12px;
  background: linear-gradient(135deg, var(--gold), #d4af37);
  color: #ffffff;
  padding: 0.15rem 0.6rem;
  border-radius: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 6px rgba(185, 136, 56, 0.25);
  pointer-events: none;
  z-index: 3;
}

/* Shimmer overlay to keep sweep cropped inside border-radius */
.opt-bg-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  pointer-events: none;
  z-index: 1;
}

/* Shimmer Sweep Animation on Premium Option */
.opt-bg-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  animation: optShimmer 5s infinite ease-in-out;
}

@keyframes optShimmer {
  0% {
    left: -100%;
  }
  20% {
    left: 200%;
  }
  100% {
    left: 200%;
  }
}

/* Premium CTA button */
.workshop-btn-premium {
  background: var(--plum) !important;
  color: #ffffff !important;
  box-shadow: 0 0 15px rgba(57, 33, 54, 0.15), 0 3px 8px rgba(57, 33, 54, 0.2);
}

.workshop-btn-premium:hover {
  background: var(--gold) !important;
  box-shadow: 0 0 20px rgba(185, 136, 56, 0.3), 0 4px 12px rgba(185, 136, 56, 0.25);
}

/* Helpers */
.hidden {
  display: none !important;
}

/* Workshops Section Styles */
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  padding: 0;
}

@media (max-width: 768px) {
  .workshops-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.workshop-card {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
  box-shadow: 0 8px 30px rgba(66, 31, 41, 0.04);
  overflow: hidden;
}

.workshop-card.has-poster {
  display: flex;
  flex-direction: column;
}

.workshop-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}



.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow);
  border-color: var(--gold-soft);
}

.workshop-card.deactivated {
  opacity: 0.75;
}

.workshop-card.deactivated:hover {
  opacity: 0.95;
}

.workshop-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.35rem 0.8rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.workshop-badge.upcoming {
  background: rgba(185, 136, 56, 0.12);
  color: var(--gold);
  border: 1px solid rgba(185, 136, 56, 0.35);
}

.workshop-badge.closed {
  background: rgba(102, 94, 97, 0.08);
  color: var(--muted);
  border: 1px solid rgba(102, 94, 97, 0.25);
}

.workshop-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.35rem;
  color: var(--plum);
  margin: 0.5rem 0 0.75rem 0;
  padding-right: 6.5rem; /* prevent overlap with badge */
  line-height: 1.35;
  font-weight: 700;
}

@media (max-width: 768px) {
  .workshop-card h3 {
    padding-right: 0;
  }
}

.workshop-date-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.workshop-poster {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
  display: block;
}



.workshop-desc {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
  margin-bottom: 2rem;
  flex-grow: 1;
  white-space: pre-line;
}

.workshop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  margin-top: auto;
}

.workshop-price-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.workshop-price-label span {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.workshop-price-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--plum);
}

.workshop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
}

.workshop-btn-primary {
  background: var(--gold);
  color: #fff !important;
}

.workshop-btn-primary:hover {
  background: var(--plum);
}

.workshop-btn-disabled {
  background: rgba(102, 94, 97, 0.15);
  color: var(--muted) !important;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 600px) {
  .workshop-footer {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
  }
  
  .workshop-price-label {
    align-items: center;
  }
  
  .workshop-action-container {
    width: 100%;
  }
  
  .workshop-action-container form,
  .workshop-action-container form button,
  .workshop-action-container .razorpay-payment-button,
  .workshop-btn {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
}


/* ==========================================
   UX IMPROVEMENTS: SCROLL SPY, FLOAT WHATSAPP, REVEAL, STICKY MOBILE BAR
   ========================================== */

/* 1. Navigation Active Link State */
.nav-links a:not(.header-cta).active {
  color: var(--plum) !important;
}

.nav-links a:not(.header-cta).active::after {
  width: 100% !important;
}

/* 2. Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #25d366;
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  line-height: 1;
}

.floating-whatsapp-tooltip {
  position: absolute;
  right: 4.5rem;
  background: var(--ink);
  color: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.floating-whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -4px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--ink);
}

.floating-whatsapp:hover .floating-whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* 3. Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* 4. Mobile Sticky Action Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 250, 240, 0.95);
  border-top: 1px solid var(--line);
  padding: 0.75rem 1rem;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(57, 33, 54, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: none;
}

.mobile-sticky-bar.visible {
  transform: translateY(0);
}

.mobile-sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-sticky-bar-inner span {
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--plum);
}

.mobile-sticky-btn {
  background: var(--gold);
  color: #fff !important;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 10px rgba(185, 136, 56, 0.2);
}

@media (max-width: 680px) {
  .floating-whatsapp {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.6rem;
    z-index: 999;
    transition: bottom 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  body.has-visible-sticky-bar .floating-whatsapp,
  .mobile-sticky-bar.visible ~ .floating-whatsapp {
    bottom: 5.25rem;
  }
  
  .floating-whatsapp-tooltip {
    display: none;
  }

  .mobile-sticky-bar {
    display: block;
    z-index: 998;
    padding: 0.65rem 0.85rem;
  }

  .mobile-sticky-bar-inner {
    gap: 0.5rem;
    max-width: 100%;
  }

  .mobile-sticky-bar-inner span {
    font-size: 0.76rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 55%;
  }

  .mobile-sticky-btn {
    font-size: 0.76rem;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  body {
    padding-bottom: 4.5rem;
  }
}

/* 5. Premium Gold and Black CTA Button */
.button-private-gold {
  background: linear-gradient(135deg, #2b232e 0%, #181419 100%);
  color: #fff !important;
  border: 1px solid var(--gold) !important;
  box-shadow: 0 8px 25px rgba(185, 136, 56, 0.3), inset 0 0 10px rgba(185, 136, 56, 0.05);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.button-private-gold i {
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.button-private-gold:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #181419 0%, #2b232e 100%);
  box-shadow: 0 4px 15px rgba(185, 136, 56, 0.15), 0 0 0 1px var(--gold);
  color: var(--gold) !important;
}

.button-private-gold:hover i {
  color: var(--gold);
}

/* 6. Workshop Free for Private Community Members Highlight Badge */
.workshop-free-badge {
  display: inline-block;
  background: rgba(185, 136, 56, 0.12);
  color: var(--plum);
  border: 1px solid rgba(185, 136, 56, 0.25);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  margin-top: 0.85rem;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 12px rgba(185, 136, 56, 0.05);
}

/* Center alignment for sessions and FAQ sections */
#sessions .section-heading,
#faq .section-heading {
  margin-inline: auto;
  text-align: center;
}

#sessions .session-grid,
#faq .faq-list {
  margin-inline: auto;
  width: 100%;
}

/* Private Community Feedback Carousel */
.upgrade-carousel-container {
  position: relative;
  width: 100%;
  max-width: 280px; /* Narrower vertical phone profile */
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 30px; /* Sleeker curves */
  border: 8px solid #221c24; /* Bezel */
  background: #110e13;
  box-shadow: 
    0 16px 40px rgba(36, 17, 31, 0.15), 
    0 0 0 1px rgba(185, 136, 56, 0.15);
  overflow: hidden;
}

@media (max-width: 860px) {
  .upgrade-carousel-container {
    max-width: 260px;
    border-radius: 26px;
    border-width: 6px;
  }
}

@media (max-width: 480px) {
  .upgrade-carousel-container {
    max-width: 230px;
    border-radius: 20px;
    border-width: 5px;
  }
}

.upgrade-carousel-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 22px; /* Adjusted to fit the bezel */
}

.upgrade-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.upgrade-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background: #1e111b; /* dark matching background */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.upgrade-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* displays the full feedback screenshot without cropping it */
  display: block;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid rgba(185, 136, 56, 0.2);
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(36, 17, 31, 0.1);
}

.carousel-nav-btn:hover {
  background: var(--plum);
  color: #fff;
  border-color: var(--plum);
  box-shadow: 0 6px 16px rgba(36, 17, 31, 0.2);
}

.carousel-nav-btn.prev {
  left: 12px;
}

.carousel-nav-btn.next {
  right: 12px;
}

@media (max-width: 600px) {
  .carousel-nav-btn {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
    background: rgba(34, 28, 36, 0.75);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
  }
  .carousel-nav-btn.prev {
    left: 4px;
  }
  .carousel-nav-btn.next {
    right: 4px;
  }
}

.carousel-indicators {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
  background: rgba(27, 14, 25, 0.65);
  padding: 5px 10px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.carousel-indicators .indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
  background: var(--gold-soft);
  transform: scale(1.2);
  box-shadow: 0 0 6px rgba(232, 201, 138, 0.8);
}

/* Paid Community Feedback Showcase Block */
.paid-feedback-showcase {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.showcase-title {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
  color: var(--plum);
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Past Workshops Section styling */
.past-workshops-section {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(185, 136, 56, 0.12) !important; /* Elegant thin gold line instead of dashed separator */
  width: 100%;
}

.past-workshops-section.no-upcoming {
  margin-top: 2rem;
  padding-top: 0;
  border-top: none !important;
}

.past-workshops-heading {
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
  color: var(--plum);
  margin: 0 0 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}

.past-workshops-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 800px; /* Matches empty notice layout width */
  margin: 0 auto;
  width: 100%;
}

/* Accordion Summary Header styling */
.workshop-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  cursor: pointer;
  user-select: none;
}

.workshop-summary-left {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

.workshop-summary-left h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--plum);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.workshop-summary-left .workshop-date-time {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.workshop-summary-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.workshop-summary-right .workshop-badge.closed {
  position: static; /* override absolute position */
  background: rgba(75, 48, 58, 0.08);
  color: var(--muted);
  border: 1px solid rgba(75, 48, 58, 0.15);
}

.workshop-chevron {
  font-size: 0.95rem;
  color: var(--muted);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.workshop-card.deactivated[open] .workshop-chevron {
  transform: rotate(180deg);
}

/* Dropdown Content layout */
.workshop-dropdown-body {
  padding: 1.5rem 1.75rem 2rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.4);
  text-align: left;
}

.workshop-card.deactivated:not(.has-poster) .workshop-dropdown-body {
  grid-template-columns: 1fr;
}

.workshop-dropdown-body .workshop-poster {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(36, 17, 31, 0.06);
  border: 1px solid var(--line);
}

.workshop-dropdown-body .workshop-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

.workshop-dropdown-body .workshop-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.workshop-dropdown-body .workshop-footer {
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

@media (max-width: 680px) {
  .workshop-summary-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
  }
  
  .workshop-summary-right {
    width: 100%;
    justify-content: space-between;
  }

  .workshop-dropdown-body {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.25rem 1.25rem 1.75rem;
  }
  
  .workshop-dropdown-body .workshop-poster {
    max-width: 180px;
    margin: 0 auto;
  }
}

/* Empty State / Notice styling */
.workshop-empty-notice {
  text-align: center;
  padding: 3.5rem 2.25rem;
  background: #ffffff !important;
  border: 1px solid rgba(185, 136, 56, 0.15) !important;
  border-radius: 28px !important;
  box-shadow: 0 16px 45px rgba(36, 17, 31, 0.03) !important;
  max-width: 800px; /* Aligns with the past workshops list width */
  margin: 1.5rem auto 0;
  animation: fadeUp 0.6s ease both;
}

.notice-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(185, 136, 56, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
}

.workshop-empty-notice h3 {
  margin: 0 0 0.5rem;
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  color: var(--plum);
}

.workshop-empty-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Subscribe Button Dropdown styling */
.subscribe-dropdown {
  width: 100%;
}

.subscribe-summary-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 1.6rem;
  background: var(--gold);
  color: #fff !important;
  border-radius: 50px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(185, 136, 56, 0.25);
  transition: all 0.3s ease;
  list-style: none !important;
  outline: none;
  user-select: none;
}

.subscribe-summary-btn::-webkit-details-marker,
.subscribe-summary-btn::marker {
  display: none !important;
}

.subscribe-summary-btn:hover {
  background: var(--plum);
  box-shadow: 0 8px 22px rgba(57, 33, 54, 0.25);
}

.subscribe-chevron {
  font-size: 0.95rem;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.subscribe-dropdown[open] .subscribe-chevron {
  transform: rotate(180deg);
}

.subscribe-dropdown-content {
  margin-top: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.4s ease both;
  box-shadow: inset 0 2px 8px rgba(36, 17, 31, 0.02);
}

/* =========================================================================
   COMMUNITY CARDS HIGHLIGHT FLIP (Free Community Soft / Private Community Dark Gold)
   ========================================================================= */

/* 1. Free Community (Soft/Light Card) */
.free-community-hero {
  background: rgba(255, 250, 240, 0.96) !important;
  color: var(--ink) !important;
  border: 1px solid rgba(185, 136, 56, 0.15) !important;
  box-shadow: 0 12px 40px rgba(36, 17, 31, 0.04) !important;
}

.free-community-hero h2 {
  color: var(--plum) !important;
}

.free-community-hero .free-community-sub {
  color: var(--muted) !important;
}

.free-community-hero .free-hero-eyebrow {
  color: #075e54 !important; /* WhatsApp brand dark green */
}

.free-community-hero .free-hero-eyebrow i {
  color: #128c7e !important; /* WhatsApp brand green */
}

.free-community-hero .free-benefit-grid li strong {
  color: var(--plum) !important;
}

.free-community-hero .free-benefit-grid li span {
  color: var(--muted) !important;
}

.free-community-hero .free-benefit-icon {
  background: rgba(185, 136, 56, 0.1) !important;
  color: var(--gold) !important;
  border: 1px solid rgba(185, 136, 56, 0.15) !important;
}

/* Hide background neon glow circles in the free community light layout to keep it clean */
.free-community-hero::before,
.free-community-hero::after {
  display: none !important;
}


/* 2. Private Community (Dark Gold / Home Button Highlight Card) */
.paid-community-upgrade {
  background: linear-gradient(135deg, #2b232e 0%, #181419 100%) !important;
  border: 1px solid var(--gold) !important;
  color: #fff !important;
  box-shadow: 0 20px 50px rgba(185, 136, 56, 0.15), inset 0 0 15px rgba(185, 136, 56, 0.05) !important;
}

.paid-community-upgrade .upgrade-header h3 {
  color: #fff !important;
  font-family: "Cinzel", serif;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(185, 136, 56, 0.1);
}

.paid-community-upgrade .upgrade-header p {
  color: rgba(255, 255, 255, 0.8) !important;
}

.paid-community-upgrade .benefit-list li {
  color: #fffaf0 !important;
}

.paid-community-upgrade .benefit-list li::before {
  background: var(--gold-soft) !important;
  box-shadow: 0 0 0 5px rgba(232, 201, 138, 0.2) !important;
}

.paid-community-upgrade .upgrade-image {
  border: 1px solid rgba(185, 136, 56, 0.25) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35) !important;
}

/* Align subtext and input dropdown nicely inside dark card */
.paid-community-upgrade .subscribe-dropdown-content {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(185, 136, 56, 0.15) !important;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.paid-community-upgrade .subscribe-summary-btn {
  background: var(--gold) !important;
  color: #fff !important;
}

.paid-community-upgrade .subscribe-summary-btn:hover {
  background: #fff !important;
  color: var(--plum) !important;
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.1) !important;
}

/* =========================================================================
   BENTO STYLE WORKSHOP CARDS (Bento Model Layout)
   ========================================================================= */
.workshop-card {
  background: #ffffff !important; /* Solid premium white */
  border: 1px solid rgba(185, 136, 56, 0.15) !important;
  border-radius: 28px !important; /* Large rounded Bento box corner */
  padding: clamp(1.8rem, 4vw, 3rem) !important;
  box-shadow: 
    0 16px 45px rgba(36, 17, 31, 0.03), 
    0 1px 3px rgba(0, 0, 0, 0.02) !important;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.workshop-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 
    0 24px 60px rgba(185, 136, 56, 0.12), 
    0 0 0 1px rgba(185, 136, 56, 0.25) !important;
  border-color: rgba(185, 136, 56, 0.3) !important;
}

.workshop-poster {
  border-radius: 18px !important; /* Inset rounded corners for poster */
  border: 1px solid rgba(185, 136, 56, 0.1) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
}

.pricing-opt {
  border-radius: 16px !important; /* Bento-aligned inset selectors */
  background: rgba(255, 250, 240, 0.4) !important;
}

.pricing-opt:hover {
  background: #ffffff !important;
}

.pricing-opt.active {
  background: #ffffff !important;
  box-shadow: 0 8px 24px rgba(185, 136, 56, 0.08) !important;
}

/* Past workshops accordion styling - also Bento styled */
.workshop-card.deactivated {
  border-radius: 24px !important;
  background: #ffffff !important; /* Match white background of Bento layout instead of transparent gray */
  border: 1px solid rgba(185, 136, 56, 0.12) !important;
  box-shadow: 0 8px 24px rgba(36, 17, 31, 0.02) !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.workshop-card.deactivated:hover {
  border-color: rgba(185, 136, 56, 0.25) !important;
  box-shadow: 0 12px 30px rgba(185, 136, 56, 0.08) !important;
  transform: translateY(-2px) !important;
}

/* Inline Details dropdown inside workshop card */
.workshop-details-dropdown {
  margin-top: 1.25rem;
  border-top: 1px solid rgba(185, 136, 56, 0.12);
  padding-top: 1.25rem;
  width: 100%;
}

.workshop-details-dropdown summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  cursor: pointer;
  list-style: none;
  user-select: none;
  letter-spacing: 0.03em;
}

.workshop-details-dropdown summary::-webkit-details-marker {
  display: none;
}

.workshop-details-dropdown summary::after {
  content: "\f078"; /* fa-chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--gold);
  transition: transform 0.25s ease;
}

.workshop-details-dropdown[open] summary::after {
  transform: rotate(180deg);
}

.details-dropdown-content {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ==========================================
   BOOKSTORE SECTION & 3D BOOK COVER STYLES
   ========================================== */

.book-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .book-detail-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .book-media-col {
    padding: 0;
  }
}

.book-media-col {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.book-perspective-wrapper {
  perspective: 1200px;
  perspective-origin: 50% 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-3d-mockup {
  position: relative;
  width: 280px;
  height: 400px;
  transform-style: preserve-3d;
  transform: rotateY(-18deg) rotateX(10deg) rotateZ(-3deg);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 15px 20px 40px rgba(0, 0, 0, 0.25), -5px 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px 16px 16px 4px;
}

.book-3d-mockup:hover {
  transform: rotateY(-8deg) rotateX(5deg) rotateZ(-1deg) translateY(-10px);
  box-shadow: 20px 30px 50px rgba(0, 0, 0, 0.3), -5px 10px 20px rgba(0, 0, 0, 0.15);
}

.book-cover-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px 12px 12px 4px;
  object-fit: cover;
  z-index: 2;
  transform: translateZ(10px);
  background: var(--plum);
  backface-visibility: hidden;
}

.book-spine {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, #1b0a1a 0%, var(--plum) 50%, #1b0a1a 100%);
  transform: rotateY(-90deg) translateZ(10px);
  transform-origin: left;
  z-index: 1;
}

.book-pages-side {
  position: absolute;
  top: 4px;
  right: 0;
  width: 18px;
  height: calc(100% - 8px);
  background: linear-gradient(90deg, #f5ecd8 0%, #fffbf2 100%);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 3px 0 6px rgba(0, 0, 0, 0.05);
  transform: rotateY(90deg) translateZ(268px);
  transform-origin: right;
  z-index: 1;
}

@media (max-width: 600px) {
  .book-3d-mockup {
    width: 200px;
    height: 290px;
  }
}

.book-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(185, 136, 56, 0.15);
  color: var(--gold);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.book-title-main {
  font-family: "Cinzel", serif;
  font-size: 2.75rem;
  color: var(--plum);
  line-height: 1.2;
  margin: 0 0 0.5rem 0;
}

@media (max-width: 600px) {
  .book-title-main {
    font-size: 2.2rem;
  }
}

.book-subtitle-sub {
  font-size: 1.25rem;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 1.5rem 0;
}

.book-meta-highlights {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.book-meta-highlights span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

.book-meta-highlights i {
  color: var(--gold);
}

.book-desc-content {
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 2.5rem;
}

.book-desc-content p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.book-checkout-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(39, 23, 36, 0.04);
}

@media (max-width: 600px) {
  .book-checkout-card {
    padding: 1.5rem 1.25rem;
  }
}

.book-checkout-card h4 {
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  color: var(--plum);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.book-format-selector-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.format-option-card {
  display: block;
  cursor: pointer;
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.25s ease;
  position: relative;
  background: #fff;
}

.format-option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.format-option-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.opt-bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
}

.format-option-card.active .opt-bullet {
  border-color: var(--gold);
}

.format-option-card.active .opt-bullet::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.opt-meta {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.opt-title {
  font-size: 1.05rem;
  color: var(--plum);
  font-weight: 700;
}

.opt-desc {
  font-size: 0.85rem;
  color: var(--muted);
}

.opt-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--plum);
}

.opt-store-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(185, 136, 56, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  text-transform: uppercase;
}

.format-option-card.active {
  border-color: var(--gold);
  background: rgba(185, 136, 56, 0.03);
  box-shadow: 0 4px 12px rgba(185, 136, 56, 0.08);
}

.checkout-action-area {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.action-wrapper {
  display: none;
}

.action-wrapper.active {
  display: block;
  animation: bookFadeIn 0.4s ease forwards;
}

@keyframes bookFadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.action-price-row {
  margin-bottom: 1.5rem;
}

.price-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.price-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.price-val-group {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.price-current {
  font-size: 2rem;
  font-weight: 800;
  color: var(--plum);
}

.price-original {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: var(--muted);
}

.price-discount {
  font-size: 0.85rem;
  font-weight: 700;
  color: #c0392b;
  background: rgba(192, 57, 43, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.razorpay-btn-container {
  width: 100%;
}

.action-notice {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.action-notice i {
  color: var(--gold);
}

.store-redirect-desc {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.external-store-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.store-btn-amazon {
  background: linear-gradient(135deg, #FF9900 0%, #E47911 100%);
  color: #111;
  box-shadow: 0 4px 12px rgba(228, 121, 17, 0.2);
}

.store-btn-amazon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(228, 121, 17, 0.3);
}

.store-btn-flipkart {
  background: linear-gradient(135deg, #2874F0 0%, #1757C4 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(40, 116, 240, 0.2);
}

.store-btn-flipkart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(40, 116, 240, 0.3);
}

.fk-icon {
  background: #FFE500;
  color: #2874F0;
  font-weight: 900;
  font-family: sans-serif;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 0.8rem;
  margin-right: 0.2rem;
}

.highlight-glow {
  animation: cardHighlightGlow 1.5s ease;
}

@keyframes cardHighlightGlow {
  0% { box-shadow: 0 8px 24px rgba(39, 23, 36, 0.04); border-color: var(--line); }
  50% { box-shadow: 0 0 25px rgba(185, 136, 56, 0.4); border-color: var(--gold); }
  100% { box-shadow: 0 8px 24px rgba(39, 23, 36, 0.04); border-color: var(--line); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.book-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}

@media (max-width: 768px) {
  .book-teaser-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
}

/* Keep the workshop teaser within the viewport on phones.  The generic
   book-teaser grid is also used elsewhere, so this explicit variant protects
   the inline webinar mock-up from reintroducing a two-column overflow. */
.workshop-teaser-grid > * {
  min-width: 0;
}

@media (max-width: 768px) {
  #workshops .about-card-container {
    padding: 1.5rem 0.75rem 2.5rem !important;
  }

  #workshops .workshop-teaser-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    gap: 1.5rem;
    text-align: center;
  }

  #workshops .workshop-teaser-grid > div:first-child {
    min-height: 0 !important;
    padding: 0 !important;
  }

  #workshops .workshop-teaser-grid h3 {
    font-size: clamp(1.55rem, 8vw, 1.75rem) !important;
    text-align: center;
  }

  #workshops .workshop-teaser-grid p {
    margin-inline: auto;
  }

  #workshops .workshop-teaser-grid .button {
    width: 100%;
    min-width: 0 !important;
  }
}

/* Home Books Section Grid */
.home-books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.book-product-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 16px rgba(39, 23, 36, 0.015);
}

.book-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(185, 136, 56, 0.3);
  box-shadow: 0 16px 32px rgba(39, 23, 36, 0.08);
}

.book-product-cover-sec {
  background: linear-gradient(135deg, rgba(185, 136, 56, 0.02) 0%, rgba(39, 23, 36, 0.02) 100%);
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 1.5rem;
}

.card-book-cover {
  height: 210px;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.12);
  border-radius: 3px 8px 8px 3px;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}

.book-product-card:hover .card-book-cover {
  transform: scale(1.04) rotate(1deg);
  box-shadow: 8px 15px 25px rgba(0, 0, 0, 0.16);
}

/* Placeholder Cover styles */
.placeholder-cover {
  width: 145px;
  height: 210px;
  border-radius: 3px 8px 8px 3px;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem 1rem;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.placeholder-cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px 0 0 3px;
}

.placeholder-cover-journal {
  background: linear-gradient(135deg, #4E3E52 0%, #2D2330 100%);
}

.placeholder-cover-workbook {
  background: linear-gradient(135deg, #2D4A5E 0%, #152733 100%);
}

.placeholder-title-gold {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #F3E5AB;
  line-height: 1.3;
  margin-top: 1rem;
}

.placeholder-subtitle {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.8;
}

.book-product-card:hover .placeholder-cover {
  transform: scale(1.04) rotate(1deg);
  box-shadow: 8px 15px 25px rgba(0, 0, 0, 0.15);
}

.book-product-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.book-product-status-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.status-tag-available {
  background: rgba(131, 199, 56, 0.1);
  color: #4e801b;
}

.status-tag-upcoming {
  background: rgba(185, 136, 56, 0.1);
  color: var(--gold);
}

.book-product-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  color: var(--plum);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.book-product-card p {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.book-product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* ==========================================================================
   CRYSTAL E-COMMERCE & PRODUCT STOREFRONT STYLES
   ========================================================================== */

.crystals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.crystal-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 35px rgba(36, 17, 31, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.crystal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(36, 17, 31, 0.12);
  border-color: rgba(185, 136, 56, 0.4);
}

.crystal-image-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #fdfaf6;
}

.crystal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.crystal-card:hover .crystal-image-wrap img {
  transform: scale(1.05);
}

.crystal-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #e65100, #ff9800);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.crystal-free-shipping-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(37, 211, 102, 0.95);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.crystal-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.crystal-category {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.crystal-card-content h3 {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.25rem;
  color: var(--plum);
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.crystal-short-desc {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
  flex: 1;
}

.crystal-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.crystal-price-wrap {
  display: flex;
  flex-direction: column;
}

.crystal-price-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.crystal-price-value {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--plum);
}

.crystal-card-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.crystal-btn-secondary {
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.crystal-btn-secondary:hover {
  background: #fdfaf6;
  border-color: var(--plum);
}

.crystal-btn-primary {
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, #9F7027 100%);
  color: #ffffff;
  border: none;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(185, 136, 56, 0.25);
  cursor: pointer;
  transition: all 0.2s ease;
}

.crystal-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(185, 136, 56, 0.4);
}

/* Modal Popup System */
.product-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 8, 17, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.product-modal-backdrop.open {
  display: flex;
  animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.product-modal-dialog {
  background: #ffffff;
  border-radius: 24px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  padding: 2rem;
  box-sizing: border-box;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: var(--plum);
  color: #ffffff;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Mobile Header Navigation Compact Bar */
@media (max-width: 768px) {
  .site-header {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.5rem 0.85rem !important;
    gap: 0.5rem !important;
  }

  .brand {
    font-size: 0.82rem !important;
    gap: 0.5rem !important;
    flex-shrink: 0 !important;
  }

  .brand img {
    width: 2rem !important;
    height: 2rem !important;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    max-width: calc(100% - 130px) !important;
    padding: 0.2rem 0 !important;
    gap: 0.35rem !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto !important;
    font-size: 0.78rem !important;
    padding: 0.35rem 0.7rem !important;
  }
}
