/* ==========================================================================
   LiveBeyond Theme Stylesheet - Mint Green & Pink Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   Buttons & Micro-interactions
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--lb-font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--lb-radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--lb-transition);
  white-space: nowrap;
  line-height: 1.2;
}

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

.btn-primary {
  background: var(--lb-mint-500);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
  background: var(--lb-mint-600);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--lb-pink-400);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(236, 72, 153, 0.35);
}

.btn-secondary:hover {
  background: var(--lb-pink-500);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.45);
  transform: translateY(-2px);
}

.btn-outline-mint {
  background: transparent;
  border-color: var(--lb-mint-500);
  color: var(--lb-mint-600);
}

.btn-outline-mint:hover {
  background: var(--lb-mint-50);
  border-color: var(--lb-mint-600);
  color: var(--lb-mint-700);
}

.btn-outline-pink {
  background: transparent;
  border-color: var(--lb-pink-400);
  color: var(--lb-pink-500);
}

.btn-outline-pink:hover {
  background: var(--lb-pink-50);
  border-color: var(--lb-pink-500);
  color: var(--lb-pink-600);
}

/* Highlighted Donate Button */
.btn-donate {
  background: linear-gradient(135deg, var(--lb-pink-400) 0%, var(--lb-pink-500) 50%, var(--lb-mint-500) 100%);
  background-size: 200% auto;
  color: #ffffff !important;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.65rem 1.6rem;
  border-radius: var(--lb-radius-full);
  box-shadow: 0 4px 18px rgba(236, 72, 153, 0.35);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: none;
}

.btn-donate:hover {
  background-position: right center;
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.45);
  transform: translateY(-2px);
}

.btn-donate::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: rotate(30deg) translateY(-100%);
  transition: transform 0.75s ease;
}

.btn-donate:hover::after {
  transform: rotate(30deg) translateY(100%);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.95rem 2.25rem;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   Badges & Pills
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--lb-radius-full);
  line-height: 1;
}

.badge-mint {
  background: var(--lb-mint-100);
  color: var(--lb-mint-800);
}

.badge-pink {
  background: var(--lb-pink-100);
  color: var(--lb-pink-700);
}

.badge-outline-mint {
  border: 1px solid var(--lb-mint-300);
  background: rgba(16, 185, 129, 0.08);
  color: var(--lb-mint-700);
}

/* --------------------------------------------------------------------------
   Announcement Bar
   -------------------------------------------------------------------------- */
.announcement-bar {
  background: linear-gradient(90deg, var(--lb-mint-700) 0%, var(--lb-mint-800) 100%);
  color: #ffffff;
  font-size: 0.825rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.announcement-bar a {
  color: var(--lb-pink-200);
  text-decoration: underline;
  margin-left: 0.35rem;
  font-weight: 600;
}

.announcement-bar a:hover {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   Header Menu 1: Top Utility Bar (Left: Search, Right: Social Icons)
   -------------------------------------------------------------------------- */
.header-topbar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--lb-border-color);
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

.header-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Search Bar (Left) */
.topbar-search-form {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.topbar-search-form input[type="search"] {
  width: 100%;
  padding: 0.45rem 1rem 0.45rem 2.4rem;
  border: 1px solid var(--lb-border-color);
  border-radius: var(--lb-radius-full);
  background: var(--lb-bg-muted);
  font-size: 0.85rem;
  color: var(--lb-text-main);
  transition: var(--lb-transition);
  outline: none;
}

.topbar-search-form input[type="search"]:focus {
  border-color: var(--lb-mint-400);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.topbar-search-form .search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lb-text-light);
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* Social Media Icons (Right) */
.topbar-socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.topbar-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--lb-radius-full);
  background: var(--lb-bg-muted);
  color: var(--lb-text-muted);
  transition: var(--lb-transition);
  text-decoration: none;
}

.topbar-social-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.topbar-social-link:hover {
  background: var(--lb-pink-100);
  color: var(--lb-pink-600);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Header Menu 2: Main Navigation & Logo
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lb-border-color);
  transition: var(--lb-transition);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 2rem;
}

/* Site Branding / Logo */
.site-branding {
  display: flex;
  align-items: center;
}

.site-title-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--lb-font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--lb-text-heading);
  letter-spacing: -0.02em;
}

.site-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--lb-radius-md);
  background: linear-gradient(135deg, var(--lb-mint-500) 0%, var(--lb-pink-400) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.site-logo-icon svg {
  width: 20px;
  height: 20px;
}

.site-title-highlight {
  color: var(--lb-mint-600);
}

/* Primary Navigation Menu */
.primary-navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  font-family: var(--lb-font-heading);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--lb-text-main);
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  transition: var(--lb-transition);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lb-mint-500), var(--lb-pink-400));
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
  color: var(--lb-mint-600);
}

/* Sub-menus / Dropdowns */
.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: var(--lb-radius-md);
  box-shadow: var(--lb-shadow-lg);
  border: 1px solid var(--lb-border-color);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--lb-transition);
  z-index: 100;
}

.nav-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu .sub-menu li {
  width: 100%;
}

.nav-menu .sub-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  color: var(--lb-text-main);
}

.nav-menu .sub-menu a::after {
  display: none;
}

.nav-menu .sub-menu a:hover {
  background: var(--lb-mint-50);
  color: var(--lb-mint-700);
  padding-left: 1.5rem;
}

/* Header Actions: Cart & Donate Button */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--lb-radius-full);
  background: var(--lb-bg-muted);
  color: var(--lb-text-main);
  transition: var(--lb-transition);
}

.header-cart-link:hover {
  background: var(--lb-mint-100);
  color: var(--lb-mint-700);
}

.header-cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--lb-pink-500);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 19px;
  height: 19px;
  border-radius: var(--lb-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 6px rgba(236, 72, 153, 0.4);
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--lb-text-heading);
}

.mobile-nav-toggle svg {
  width: 26px;
  height: 26px;
}

/* --------------------------------------------------------------------------
   Above-the-Fold Hero Section & Appointment Booker
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #f0fdf4 0%, #fbfbf9 100%);
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.hero-backdrop-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.shape-glow-mint {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, rgba(16, 185, 129, 0) 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.shape-glow-pink {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, rgba(236, 72, 153, 0) 70%);
  border-radius: 50%;
  filter: blur(45px);
}

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

.hero-content {
  max-width: 620px;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--lb-radius-full);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--lb-mint-800);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 4.5vw, 3.85rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--lb-text-heading);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-title .text-gradient-mint {
  background: linear-gradient(135deg, var(--lb-mint-600) 0%, var(--lb-mint-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .text-gradient-pink {
  background: linear-gradient(135deg, var(--lb-pink-500) 0%, var(--lb-pink-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--lb-text-muted);
  margin-bottom: 2rem;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(16, 185, 129, 0.15);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lb-text-main);
}

.hero-badge-item svg {
  width: 20px;
  height: 20px;
  color: var(--lb-mint-500);
}

/* Appointment Booker Card */
.booking-card-wrapper {
  position: relative;
}

.booking-card {
  background: #ffffff;
  border-radius: var(--lb-radius-xl);
  padding: 2.25rem 2rem;
  box-shadow: 0 20px 45px -10px rgba(16, 185, 129, 0.15), 0 0 0 1px rgba(16, 185, 129, 0.12);
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--lb-mint-500) 0%, var(--lb-pink-400) 100%);
}

.booking-header {
  margin-bottom: 1.5rem;
}

.booking-header h3 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.booking-header p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.booking-tag {
  background: var(--lb-pink-100);
  color: var(--lb-pink-700);
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--lb-radius-full);
}

/* Booking Stepper Steps */
.booking-form-group {
  margin-bottom: 1.15rem;
}

.booking-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--lb-text-heading);
  margin-bottom: 0.4rem;
}

.booking-select,
.booking-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--lb-border-color);
  border-radius: var(--lb-radius-md);
  background: var(--lb-bg-muted);
  font-size: 0.9rem;
  color: var(--lb-text-main);
  transition: var(--lb-transition);
  outline: none;
}

.booking-select:focus,
.booking-input:focus {
  border-color: var(--lb-mint-500);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.booking-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.booking-time-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.time-chip {
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--lb-border-color);
  border-radius: var(--lb-radius-sm);
  background: #ffffff;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--lb-text-muted);
  cursor: pointer;
  transition: var(--lb-transition);
}

.time-chip:hover {
  border-color: var(--lb-mint-400);
  color: var(--lb-mint-700);
}

.time-chip.is-selected {
  background: var(--lb-mint-500);
  border-color: var(--lb-mint-500);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.btn-book-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem;
  background: linear-gradient(135deg, var(--lb-mint-500) 0%, var(--lb-mint-600) 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--lb-radius-md);
  font-family: var(--lb-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
  transition: var(--lb-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-book-submit:hover {
  background: linear-gradient(135deg, var(--lb-mint-600) 0%, var(--lb-mint-700) 100%);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.45);
  transform: translateY(-2px);
}

.booking-guarantee-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.775rem;
  color: var(--lb-text-light);
  margin-top: 0.85rem;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Value Proposition Strip (Artza Box inspired features)
   -------------------------------------------------------------------------- */
.features-strip {
  background: #ffffff;
  border-top: 1px solid var(--lb-border-color);
  border-bottom: 1px solid var(--lb-border-color);
  padding: 2.5rem 0;
}

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

.feature-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--lb-radius-md);
  background: var(--lb-mint-50);
  color: var(--lb-mint-600);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--lb-transition);
}

.feature-box:hover .feature-icon-wrap {
  background: var(--lb-pink-100);
  color: var(--lb-pink-600);
  transform: scale(1.08);
}

.feature-title {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--lb-text-heading);
  margin-bottom: 0.15rem;
}

.feature-desc {
  font-size: 0.825rem;
  color: var(--lb-text-muted);
  margin-bottom: 0;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Current Products Section (Replaces Artisans)
   -------------------------------------------------------------------------- */
.products-section {
  padding: 5.5rem 0;
  background-color: var(--lb-bg-body);
}

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

.section-subtitle {
  font-family: var(--lb-font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lb-pink-500);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--lb-text-heading);
  margin-bottom: 0.75rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--lb-text-muted);
  margin-bottom: 0;
}

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

.product-card {
  background: #ffffff;
  border-radius: var(--lb-radius-lg);
  border: 1px solid var(--lb-border-color);
  overflow: hidden;
  transition: var(--lb-transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(16, 185, 129, 0.12);
  border-color: var(--lb-mint-300);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--lb-bg-muted);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-media img {
  transform: scale(1.08);
}

.product-badge-pos {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.product-quick-action {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--lb-transition);
  z-index: 2;
}

.product-card:hover .product-quick-action {
  opacity: 1;
  transform: translateY(0);
}

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

.product-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lb-mint-600);
  margin-bottom: 0.35rem;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lb-text-heading);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.product-name a {
  color: inherit;
}

.product-name a:hover {
  color: var(--lb-pink-500);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #f59e0b;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.product-rating-count {
  color: var(--lb-text-light);
  margin-left: 0.25rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--lb-border-light);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.price-current {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--lb-text-heading);
  font-family: var(--lb-font-heading);
}

.price-regular {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--lb-text-light);
}

.btn-add-cart {
  background: var(--lb-mint-50);
  color: var(--lb-mint-700);
  border: 1px solid var(--lb-mint-200);
  padding: 0.5rem 0.9rem;
  border-radius: var(--lb-radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--lb-transition);
}

.btn-add-cart:hover {
  background: var(--lb-mint-500);
  color: #ffffff;
  border-color: var(--lb-mint-500);
}

/* --------------------------------------------------------------------------
   How It Works / LiveBeyond Journey Section
   -------------------------------------------------------------------------- */
.journey-section {
  padding: 5.5rem 0;
  background: #ffffff;
  border-top: 1px solid var(--lb-border-color);
  border-bottom: 1px solid var(--lb-border-color);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}

.journey-step-card {
  background: var(--lb-bg-body);
  border-radius: var(--lb-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--lb-border-color);
  transition: var(--lb-transition);
  position: relative;
}

.journey-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--lb-pink-300);
  box-shadow: 0 16px 36px rgba(236, 72, 153, 0.1);
}

.step-number-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: var(--lb-radius-full);
  background: linear-gradient(135deg, var(--lb-mint-500), var(--lb-pink-400));
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.journey-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--lb-radius-lg);
  background: #ffffff;
  margin: 0.5rem auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lb-mint-600);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.journey-step-card:hover .journey-icon-wrap {
  background: var(--lb-pink-50);
  color: var(--lb-pink-600);
}

.journey-icon-wrap svg {
  width: 36px;
  height: 36px;
}

.journey-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

/* --------------------------------------------------------------------------
   Mood Wave Tracker Component
   -------------------------------------------------------------------------- */
.mood-tracker-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f0fdf4 0%, #fdf2f8 100%);
  position: relative;
  overflow: hidden;
}

.mood-tracker-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--lb-radius-xl);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 3rem;
  box-shadow: 0 20px 45px rgba(16, 185, 129, 0.08);
}

.mood-selector-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.mood-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--lb-radius-full);
  border: 1px solid var(--lb-border-color);
  background: #ffffff;
  font-family: var(--lb-font-heading);
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--lb-text-main);
  cursor: pointer;
  transition: var(--lb-transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.mood-btn:hover {
  border-color: var(--lb-mint-400);
  transform: translateY(-2px);
}

.mood-btn.is-active {
  background: linear-gradient(135deg, var(--lb-mint-500) 0%, var(--lb-pink-400) 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(236, 72, 153, 0.35);
}

.mood-btn .mood-emoji {
  font-size: 1.15rem;
}

/* Wave Canvas Container */
.wave-visualizer-container {
  position: relative;
  width: 100%;
  height: 200px;
  background: #ffffff;
  border-radius: var(--lb-radius-lg);
  overflow: hidden;
  border: 1px solid var(--lb-border-color);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.03);
  margin-bottom: 2rem;
}

#moodWaveCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.wave-status-overlay {
  position: absolute;
  top: 14px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lb-mint-700);
  background: rgba(240, 253, 244, 0.9);
  padding: 0.25rem 0.65rem;
  border-radius: var(--lb-radius-full);
}

.wave-status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lb-mint-500);
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Mood Affirmation & Coaching Output */
.mood-coaching-box {
  background: #ffffff;
  border-radius: var(--lb-radius-md);
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--lb-mint-500);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.mood-coaching-content h4 {
  font-size: 1.15rem;
  color: var(--lb-text-heading);
  margin-bottom: 0.25rem;
}

.mood-coaching-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--lb-text-muted);
}

/* --------------------------------------------------------------------------
   Blog Section with "Read more" Buttons
   -------------------------------------------------------------------------- */
.blog-section {
  padding: 5.5rem 0;
  background-color: var(--lb-bg-body);
}

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

.blog-card {
  background: #ffffff;
  border-radius: var(--lb-radius-lg);
  border: 1px solid var(--lb-border-color);
  overflow: hidden;
  transition: var(--lb-transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: var(--lb-pink-300);
}

.blog-thumbnail-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--lb-bg-muted);
}

.blog-thumbnail-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-thumbnail-wrap img {
  transform: scale(1.06);
}

.blog-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  color: var(--lb-mint-700);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--lb-radius-full);
}

.blog-body {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.825rem;
  color: var(--lb-text-light);
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.blog-title a {
  color: var(--lb-text-heading);
}

.blog-title a:hover {
  color: var(--lb-pink-500);
}

.blog-excerpt {
  font-size: 0.925rem;
  color: var(--lb-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* "Read more" Button Styled According to Specifications */
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--lb-mint-700);
  font-family: var(--lb-font-heading);
  font-size: 0.925rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.55rem 1.25rem;
  border-radius: var(--lb-radius-full);
  background: var(--lb-mint-50);
  border: 1px solid var(--lb-mint-200);
  transition: var(--lb-transition);
  align-self: flex-start;
}

.btn-read-more svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.btn-read-more:hover {
  background: var(--lb-pink-500);
  color: #ffffff;
  border-color: var(--lb-pink-500);
  box-shadow: 0 4px 14px rgba(236, 72, 153, 0.35);
  transform: translateY(-2px);
}

.btn-read-more:hover svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Newsletter Subscription Box (Mailchimp Integrated)
   -------------------------------------------------------------------------- */
.newsletter-section {
  padding: 5rem 0;
  background: #ffffff;
}

.newsletter-card {
  background: linear-gradient(135deg, var(--lb-mint-800) 0%, var(--lb-mint-900) 100%);
  border-radius: var(--lb-radius-xl);
  padding: 4rem 3rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--lb-shadow-lg);
}

.newsletter-card::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.newsletter-text h3 {
  color: #ffffff;
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.newsletter-text p {
  color: var(--lb-mint-100);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex-grow: 1;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--lb-radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
  backdrop-filter: blur(8px);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  border-color: var(--lb-pink-400);
  background: rgba(255, 255, 255, 0.18);
}

.btn-newsletter-submit {
  background: var(--lb-pink-500);
  color: #ffffff;
  font-weight: 700;
  padding: 0.9rem 1.85rem;
  border-radius: var(--lb-radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.4);
  transition: var(--lb-transition);
}

.btn-newsletter-submit:hover {
  background: var(--lb-pink-400);
  box-shadow: 0 6px 22px rgba(236, 72, 153, 0.55);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   FAQ Section ("Your Questions, Answered")
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 5.5rem 0;
  background: var(--lb-bg-body);
}

.faq-accordion-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--lb-border-color);
  border-radius: var(--lb-radius-md);
  overflow: hidden;
  transition: var(--lb-transition);
}

.faq-item:hover {
  border-color: var(--lb-mint-300);
}

.faq-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--lb-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lb-text-heading);
  user-select: none;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--lb-mint-500);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  color: var(--lb-pink-500);
}

.faq-content {
  padding: 0 1.5rem 1.25rem;
  display: none;
  color: var(--lb-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.is-open .faq-content {
  display: block;
}

/* --------------------------------------------------------------------------
   Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #111a1e;
  color: #c5d0d6;
  padding: 5rem 0 2rem;
  font-size: 0.9rem;
}

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

.footer-widget-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--lb-mint-400);
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--lb-transition);
}

.footer-links a:hover {
  color: var(--lb-mint-400);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   Crisis Telephone Helpline Bar & Pop-up Modal
   -------------------------------------------------------------------------- */
/* Floating Crisis Helpline Trigger Bar Underneath */
.crisis-helpline-bar {
  background: linear-gradient(90deg, #991b1b 0%, #dc2626 100%);
  color: #ffffff;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.crisis-helpline-bar a.btn-crisis-trigger {
  background: #ffffff;
  color: #dc2626;
  font-weight: 800;
  font-size: 0.775rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--lb-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: var(--lb-transition);
}

.crisis-helpline-bar a.btn-crisis-trigger:hover {
  background: var(--lb-pink-100);
  transform: scale(1.05);
}

/* Crisis Pop-up Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

.crisis-modal-box {
  background: #ffffff;
  border-radius: var(--lb-radius-xl);
  max-width: 580px;
  width: 100%;
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.is-active .crisis-modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--lb-border-color);
  background: var(--lb-bg-muted);
  color: var(--lb-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--lb-transition);
}

.modal-close-btn:hover {
  background: var(--lb-pink-100);
  color: var(--lb-pink-600);
}

.crisis-modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.crisis-icon-alert {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fee2e2;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.crisis-icon-alert svg {
  width: 28px;
  height: 28px;
}

.crisis-modal-header h3 {
  font-size: 1.6rem;
  color: #1e293b;
  margin-bottom: 0.35rem;
}

.crisis-modal-header p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 0;
}

.crisis-numbers-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.crisis-number-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.25rem;
  background: var(--lb-bg-muted);
  border-radius: var(--lb-radius-md);
  border: 1px solid var(--lb-border-color);
  transition: var(--lb-transition);
}

.crisis-number-item:hover {
  background: #ffffff;
  border-color: #dc2626;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.1);
}

.crisis-number-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.crisis-number-info p {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 0;
}

.btn-call-crisis {
  background: #dc2626;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1.15rem;
  border-radius: var(--lb-radius-full);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-call-crisis:hover {
  background: #b91c1c;
}

/* --------------------------------------------------------------------------
   Advert Pop-up Modal
   -------------------------------------------------------------------------- */
.advert-modal-box {
  background: #ffffff;
  border-radius: var(--lb-radius-xl);
  max-width: 640px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.4);
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}

.advert-modal-media {
  background: linear-gradient(135deg, var(--lb-mint-500) 0%, var(--lb-pink-400) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: #ffffff;
  text-align: center;
}

.advert-modal-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.advert-modal-media-content {
  position: relative;
  z-index: 1;
}

.advert-modal-body {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.advert-badge {
  background: var(--lb-pink-100);
  color: var(--lb-pink-700);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--lb-radius-full);
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 0.75rem;
}

.advert-title {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.advert-desc {
  font-size: 0.9rem;
  color: var(--lb-text-muted);
  margin-bottom: 1.25rem;
}

.advert-coupon-box {
  background: var(--lb-bg-muted);
  border: 1px dashed var(--lb-mint-500);
  border-radius: var(--lb-radius-md);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.advert-code {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lb-mint-700);
  letter-spacing: 0.05em;
}

.btn-copy-code {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lb-pink-600);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-topbar-inner {
    flex-direction: column;
    gap: 0.5rem;
  }
  .topbar-search-form {
    max-width: 100%;
  }
  .primary-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    padding: 5rem 1.5rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    transition: right 0.35s ease;
    z-index: 1001;
  }
  .primary-navigation.is-open {
    right: 0;
  }
  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1rem;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .journey-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .newsletter-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .advert-modal-box {
    grid-template-columns: 1fr;
  }
  .advert-modal-media {
    display: none;
  }
  .mood-coaching-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .oracle-card-3d {
    width: 100% !important;
    max-width: 480px;
  }
}

/* ==========================================================================
   Innovative Feature 1: Dark Mode / Radiant Sanctuary Mode
   ========================================================================== */
[data-theme="dark"] {
  --lb-bg-body: #0a0f12;
  --lb-bg-surface: #111a1f;
  --lb-bg-card: #141f26;
  --lb-bg-muted: #16242c;
  --lb-text-main: #e2e8f0;
  --lb-text-heading: #f8fafc;
  --lb-text-muted: #94a3b8;
  --lb-border-color: #1e2d36;
  --lb-border-light: #16222a;
}

[data-theme="dark"] .site-header {
  background: rgba(17, 26, 31, 0.92);
  border-bottom: 1px solid var(--lb-border-color);
}

[data-theme="dark"] .header-topbar {
  background: #080d10;
  border-bottom: 1px solid #16222a;
}

[data-theme="dark"] .topbar-search-form .search-field {
  background: #111a1f;
  border-color: #1e2d36;
  color: #f8fafc;
}

[data-theme="dark"] .topbar-social-link {
  background: #141f26;
  color: #94a3b8;
}

[data-theme="dark"] .site-title-link {
  color: #f8fafc;
}

[data-theme="dark"] .nav-menu a {
  color: #e2e8f0;
}

[data-theme="dark"] .nav-menu a:hover {
  color: var(--lb-mint-400);
}

[data-theme="dark"] .booking-card,
[data-theme="dark"] .product-card,
[data-theme="dark"] .journey-step-card,
[data-theme="dark"] .mood-tracker-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .faq-item {
  background: var(--lb-bg-card);
  border-color: var(--lb-border-color);
}

[data-theme="dark"] .features-strip {
  background: #0d1419;
  border-color: var(--lb-border-color);
}

[data-theme="dark"] .features-grid .feature-box {
  background: #141f26;
  border: 1px solid var(--lb-border-color);
}

[data-theme="dark"] .booking-input,
[data-theme="dark"] .booking-select {
  background: #111a1f;
  border-color: #1e2d36;
  color: #f8fafc;
}

[data-theme="dark"] .time-chip {
  background: #111a1f;
  border-color: #1e2d36;
  color: #94a3b8;
}

[data-theme="dark"] .testimonials-section {
  background: #0a0f12 !important;
}

[data-theme="dark"] .faq-header {
  color: #f8fafc;
}

[data-theme="dark"] .faq-content {
  color: #94a3b8;
}

/* Header Dark Mode Toggle Button */
.theme-mode-toggle {
  background: var(--lb-bg-muted);
  border: 1px solid var(--lb-border-color);
  width: 40px;
  height: 40px;
  border-radius: var(--lb-radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--lb-transition);
  padding: 0;
}

.theme-mode-toggle:hover {
  background: var(--lb-mint-50);
  border-color: var(--lb-mint-500);
  transform: scale(1.05);
}

.mode-icon-moon { display: inline-block; }
.mode-icon-sun  { display: none; }

[data-theme="dark"] .mode-icon-moon { display: none; }
[data-theme="dark"] .mode-icon-sun  { display: inline-block; }
[data-theme="dark"] .theme-mode-toggle:hover {
  background: #1e2d36;
}

/* ==========================================================================
   Innovative Feature 2: Sacred Daily Oracle & Reflection Card Deck
   ========================================================================== */
.oracle-section {
  padding: 6rem 0;
  background: radial-gradient(circle at 50% 30%, rgba(16, 185, 129, 0.05) 0%, rgba(236, 72, 153, 0.03) 60%, transparent 100%), var(--lb-bg-body);
}

.oracle-deck-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1200px;
  margin-top: 1rem;
}

.oracle-card-3d {
  width: 520px;
  max-width: 92vw;
  height: 480px;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.oracle-card-3d:hover {
  transform: translateY(-4px);
}

.oracle-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.oracle-card-3d.is-flipped .oracle-card-inner {
  transform: rotateY(180deg);
}

.oracle-card-face {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--lb-radius-xl);
  backface-visibility: hidden;
  box-shadow: 0 16px 40px rgba(6, 78, 59, 0.12), 0 0 0 1px rgba(16, 185, 129, 0.2);
}

/* Front Face (Card Back / Unrevealed Pattern) */
.oracle-card-front {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #0f766e 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  border: 4px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.oracle-card-front::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1.5px dashed rgba(255, 255, 255, 0.25);
  border-radius: calc(var(--lb-radius-xl) - 8px);
  pointer-events: none;
}

.oracle-front-pattern {
  text-align: center;
  z-index: 2;
}

.oracle-mandala-symbol {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: floatOrb 4s ease-in-out infinite;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.08); }
}

.oracle-front-brand {
  font-family: var(--lb-font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.oracle-front-caption {
  color: #d1fae5;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.oracle-front-tap-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--lb-radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

/* Back Face (Revealed Reflection) */
.oracle-card-back {
  background: var(--lb-bg-surface);
  color: var(--lb-text-main);
  transform: rotateY(180deg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid var(--lb-mint-500);
}

.oracle-back-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#oracleThemeBadge {
  background: var(--lb-mint-50);
  color: var(--lb-mint-800);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: var(--lb-radius-full);
  border: 1px solid var(--lb-mint-200);
}

.oracle-quote-box {
  position: relative;
  padding: 0.75rem 0.5rem;
  text-align: center;
}

.oracle-quote-mark {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--lb-pink-400);
  opacity: 0.3;
  font-family: Georgia, serif;
}

#oracleQuoteText {
  font-family: var(--lb-font-heading);
  font-size: 1.25rem;
  line-height: 1.55;
  font-style: italic;
  font-weight: 600;
  color: var(--lb-text-heading);
  margin-bottom: 0.5rem;
}

#oracleQuoteAuthor {
  display: block;
  font-size: 0.85rem;
  color: var(--lb-mint-600);
  font-weight: 700;
}

.oracle-action-prompt {
  background: var(--lb-bg-muted);
  border-radius: var(--lb-radius-md);
  padding: 0.9rem 1.1rem;
  border-left: 3px solid var(--lb-pink-400);
}

.oracle-action-prompt strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  color: var(--lb-pink-500);
  margin-bottom: 0.25rem;
  letter-spacing: 0.04em;
}

.oracle-action-prompt p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--lb-text-main);
  line-height: 1.45;
}

.oracle-breath-prompt {
  font-size: 0.85rem;
  color: var(--lb-mint-700);
  background: var(--lb-mint-50);
  padding: 0.55rem 0.9rem;
  border-radius: var(--lb-radius-sm);
}

.oracle-card-controls {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.oracle-controls-footer {
  margin-top: 2rem;
  text-align: center;
}

.oracle-pool-stats {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--lb-text-muted);
}

/* ==========================================================================
   Innovative Feature 3: Coaching & Box Pricing Comparison Matrix
   ========================================================================== */
.pricing-section {
  padding: 6rem 0;
  background: var(--lb-bg-surface);
}

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.pricing-toggle-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lb-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.pricing-toggle-label.is-active {
  color: var(--lb-text-heading);
  font-weight: 700;
}

.pricing-save-badge {
  background: linear-gradient(135deg, var(--lb-pink-400), var(--lb-pink-500));
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: var(--lb-radius-full);
}

.pricing-toggle-btn {
  width: 58px;
  height: 32px;
  background: #cbd5e1;
  border-radius: var(--lb-radius-full);
  border: none;
  cursor: pointer;
  position: relative;
  padding: 3px;
  transition: background 0.3s ease;
}

.pricing-toggle-btn.is-annual {
  background: var(--lb-mint-500);
}

.pricing-toggle-knob {
  display: block;
  width: 26px;
  height: 26px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-toggle-btn.is-annual .pricing-toggle-knob {
  transform: translateX(26px);
}

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

.pricing-card {
  background: var(--lb-bg-surface);
  border: 1px solid var(--lb-border-color);
  border-radius: var(--lb-radius-xl);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: var(--lb-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lb-shadow-md);
}

.pricing-card.is-featured {
  border: 2px solid var(--lb-mint-500);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.15);
  transform: scale(1.03);
}

.pricing-card.is-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--lb-mint-500), var(--lb-mint-600));
  color: #ffffff;
  font-size: 0.775rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 1.25rem;
  border-radius: var(--lb-radius-full);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.pricing-card-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lb-mint-600);
  display: block;
  margin-bottom: 0.5rem;
}

.pricing-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pricing-card-subtitle {
  font-size: 0.9rem;
  color: var(--lb-text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.pricing-card-price {
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.pricing-card-price .price-value {
  font-family: var(--lb-font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--lb-text-heading);
  line-height: 1;
  transition: opacity 0.15s ease;
}

.pricing-card-price .price-period {
  font-size: 0.95rem;
  color: var(--lb-text-muted);
  font-weight: 500;
}

.pricing-features-list {
  margin-bottom: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.925rem;
  color: var(--lb-text-main);
  line-height: 1.45;
}

.pricing-features-list .check-icon {
  color: var(--lb-mint-500);
  font-weight: 800;
  flex-shrink: 0;
}

/* ==========================================================================
   Innovative Feature 4: Ambient Serenity Soundscape Floating Player
   ========================================================================== */
.soundscape-player-wrap {
  position: fixed;
  bottom: 85px;
  right: 25px;
  z-index: 998;
}

.soundscape-pill {
  background: rgba(17, 26, 31, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 0.55rem 1.15rem 0.55rem 0.65rem;
  border-radius: var(--lb-radius-full);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: var(--lb-transition);
}

.soundscape-pill:hover {
  transform: translateY(-2px);
  border-color: var(--lb-mint-400);
}

.soundscape-toggle-play {
  width: 34px;
  height: 34px;
  background: var(--lb-mint-500);
  color: #ffffff;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}

.soundscape-toggle-play:hover {
  background: var(--lb-mint-600);
  transform: scale(1.08);
}

/* Animated Equalizer Bars */
.soundscape-equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
  width: 18px;
}

.soundscape-equalizer .eq-bar {
  width: 3px;
  background: var(--lb-mint-400);
  border-radius: 2px;
  height: 4px;
  transition: height 0.2s ease;
}

.soundscape-player-wrap.is-playing .soundscape-equalizer .eq-bar.bar-1 { animation: jumpBar 0.6s ease infinite alternate; }
.soundscape-player-wrap.is-playing .soundscape-equalizer .eq-bar.bar-2 { animation: jumpBar 0.9s ease 0.2s infinite alternate; }
.soundscape-player-wrap.is-playing .soundscape-equalizer .eq-bar.bar-3 { animation: jumpBar 0.7s ease 0.4s infinite alternate; }
.soundscape-player-wrap.is-playing .soundscape-equalizer .eq-bar.bar-4 { animation: jumpBar 0.8s ease 0.1s infinite alternate; }

@keyframes jumpBar {
  0% { height: 3px; }
  100% { height: 15px; }
}

.soundscape-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.soundscape-expand-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
  transition: transform 0.25s ease;
}

.soundscape-player-wrap.is-tray-open .soundscape-expand-btn {
  transform: rotate(180deg);
}

/* Expanded Settings Tray */
.soundscape-tray {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 280px;
  background: rgba(17, 26, 31, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--lb-radius-lg);
  padding: 1.25rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  display: none;
  flex-direction: column;
  gap: 1rem;
  color: #ffffff;
}

.soundscape-player-wrap.is-tray-open .soundscape-tray {
  display: flex;
}

.soundscape-tray-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.soundscape-tray-header h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.soundscape-tray-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
}

.soundscape-presets-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.soundscape-preset-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  padding: 0.5rem 0.75rem;
  border-radius: var(--lb-radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.soundscape-preset-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.soundscape-preset-btn.is-active {
  background: var(--lb-mint-500);
  border-color: var(--lb-mint-400);
  color: #ffffff;
  font-weight: 700;
}

.soundscape-volume-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.soundscape-volume-row input[type="range"] {
  flex: 1;
  accent-color: var(--lb-mint-500);
  cursor: pointer;
}
