
/* ==========================================================================
   VISTAARAM - APPLE-INSPIRED SACRED MINIMALISM
   Clean Whites, Crisp Contrast, Subtle Warm Gold Accents, Focused Typography
   ========================================================================== */

:root {
  --apple-bg: #FAF8F5; /* Actual website warm temple canvas */
  --apple-bg-subtle: #F5EFE6;
  --apple-bg-card: #FFFFFF;
  --apple-border: #EADFD8; /* Actual website biscuit border */
  --apple-border-gold: rgba(200, 148, 98, 0.4);

  --apple-dark: #221C18;
  --apple-charcoal: #4B4541;
  --apple-gray: #6F6660;
  --apple-light-gray: #8A8A8A;
  
  --brand-burgundy: #8B0C1B; /* Actual website sacred crimson */
  --brand-burgundy-dark: #4A0717; /* Actual website footer rich maroon */
  --brand-gold: #C89462; /* Actual website sandalwood gold */
  --brand-gold-dark: #B9784F;
  --brand-gold-light: #E8DBC5; /* Actual website light gold text */
  --brand-navy: #27374D; /* Actual website slate navy */
  
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 125px;
}

[id] {
  scroll-margin-top: 125px;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background-color: #FAF5EE;
  background-image: 
    radial-gradient(ellipse 100% 55% at 50% -5%, rgba(200, 148, 98, 0.22) 0%, rgba(250, 245, 238, 0) 65%),
    radial-gradient(ellipse 75% 50% at 92% 28%, rgba(139, 12, 27, 0.055) 0%, transparent 55%),
    radial-gradient(ellipse 70% 48% at 8% 58%, rgba(200, 148, 98, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 85% 55% at 50% 88%, rgba(74, 7, 23, 0.05) 0%, transparent 60%);
  background-attachment: fixed;
  color: var(--apple-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Authentic Handcrafted Sacred Parchment Tactile Micro-Texture */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.032;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--apple-dark);
  letter-spacing: -0.01em;
  font-weight: 700;
}

/* 1. Minimal Header */
.apple-blessing-bar {
  background: var(--apple-dark);
  color: #FFFFFF;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  padding: 6px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.apple-blessing-bar strong {
  color: var(--brand-gold-light);
}

.apple-nav {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(200, 148, 98, 0.22);
  box-shadow: 0 4px 20px rgba(34, 28, 24, 0.03);
  transition: var(--transition);
}

.apple-brand-logo {
  height: 38px;
  width: auto;
  display: block;
  transition: transform 0.25s ease;
}

.apple-brand-logo:hover {
  transform: scale(1.02);
}

.apple-nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--apple-charcoal);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.apple-nav-link:hover {
  color: var(--brand-burgundy);
  background: var(--apple-bg-subtle);
}

.apple-btn-cta {
  background: var(--apple-dark);
  color: #FFFFFF;
  border: none;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.apple-btn-cta:hover {
  background: var(--brand-burgundy);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.apple-cart-btn {
  background: var(--apple-bg-card);
  border: 1px solid var(--apple-border);
  color: var(--apple-dark);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.apple-cart-btn:hover {
  background: var(--apple-dark);
  color: #FFFFFF;
}

.cart-count-badge {
  background: var(--brand-burgundy);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* 2. Apple-Style Hero: Simple, Focused, Trust-Building */
.apple-hero {
  padding: 5rem 1rem 4rem;
  text-align: center;
  background: radial-gradient(circle at 50% 10%, #FFFDF9 0%, #FFFFFF 80%);
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--apple-bg-card);
  border: 1px solid var(--apple-border-gold);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 1.5rem;
}

.apple-hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  color: var(--apple-dark);
}

.apple-hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-burgundy);
}

.apple-hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--apple-gray);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.apple-hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 3rem;
}

.btn-apple-buy {
  background: var(--brand-burgundy);
  color: #FFFFFF;
  border: none;
  padding: 12px 32px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(74, 7, 23, 0.25);
  transition: var(--transition);
}

.btn-apple-buy:hover {
  background: #330510;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.apple-hero-trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--apple-light-gray);
  font-size: 0.85rem;
  font-weight: 500;
}

.apple-hero-trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.apple-hero-trust-bar i {
  color: var(--brand-gold);
}

/* 3. Section 2: Clean Video Reels */
.apple-reels-section {
  padding: 4rem 0 5rem;
  background: var(--apple-bg-subtle);
  border-top: 1px solid var(--apple-border);
  border-bottom: 1px solid var(--apple-border);
}

.apple-section-header {
  text-align: center;
  margin-bottom: 2.8rem;
}

.apple-section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.4rem;
}

.apple-section-header p {
  color: var(--apple-gray);
  font-size: 1rem;
  margin: 0;
}

.apple-reel-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.apple-reel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.apple-reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apple-reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  color: #FFFFFF;
}

.apple-reel-badge {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.apple-reel-info h4 {
  color: #FFFFFF;
  font-size: 1rem;
  margin-bottom: 2px;
}

.apple-reel-info p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.reel-play-btn {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  transition: background 0.2s ease;
}

.reel-play-btn:hover {
  background: var(--brand-burgundy);
}

/* 4. Section 3: Clean Product Offering (Apple Spec Card) */
.apple-product-section {
  padding: 5rem 0;
  background: #FFFFFF;
}

.apple-product-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--apple-border);
  padding: clamp(24px, 4vw, 48px);
}

.apple-img-viewer {
  background: var(--apple-bg-card);
  border-radius: var(--radius-md);
  aspect-ratio: 1.15;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  margin-bottom: 14px;
}

.apple-img-viewer img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.apple-img-viewer:hover img {
  transform: scale(1.04);
}

.gallery-thumbnails-row {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.thumb-item {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--apple-border);
  background: var(--apple-bg-card);
  cursor: pointer;
  overflow: hidden;
  padding: 3px;
  transition: var(--transition);
}

.thumb-item.active {
  border-color: var(--brand-burgundy);
  box-shadow: 0 0 0 1px var(--brand-burgundy);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Apple Pack Selector Buttons */
.apple-pack-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 1.8rem 0;
}

.apple-pack-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid var(--apple-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  cursor: pointer;
  background: #FFFFFF;
  transition: var(--transition);
}

.apple-pack-card:hover {
  border-color: #999;
}

.apple-pack-card.selected {
  border-color: var(--brand-burgundy);
  background: #FFFDF9;
  box-shadow: 0 4px 15px rgba(74, 7, 23, 0.08);
}

.apple-pack-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--apple-dark);
}

.apple-pack-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--apple-bg-card);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  color: var(--brand-gold);
  margin-left: 6px;
}

.apple-pack-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-burgundy);
  font-family: var(--font-serif);
}

.apple-pack-strike {
  font-size: 0.85rem;
  color: var(--apple-light-gray);
  text-decoration: line-through;
  margin-left: 4px;
}

/* Direct Action Bar */
.apple-action-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.qty-counter {
  display: inline-flex;
  align-items: center;
  background: var(--apple-bg-card);
  border: 1px solid var(--apple-border);
  border-radius: var(--radius-full);
  overflow: hidden;
  width: 110px;
}

.qty-btn {
  background: transparent;
  border: none;
  width: 32px;
  height: 48px;
  font-weight: 700;
  cursor: pointer;
}

.qty-input {
  width: 44px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 700;
}

.btn-apple-cart {
  flex: 1;
  background: var(--apple-dark);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  padding: 14px 20px;
}

.btn-apple-cart:hover {
  background: var(--brand-burgundy);
}

.btn-apple-instant {
  background: var(--brand-gold);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0 24px;
  transition: var(--transition);
}

.btn-apple-instant:hover {
  background: #9D742B;
}

/* Bullet list */
.apple-specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--apple-border);
  padding-top: 1.4rem;
}

.apple-specs-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--apple-charcoal);
  margin-bottom: 0.6rem;
}

.apple-specs-list i {
  color: #2E7D32;
  font-size: 0.9rem;
}

/* 5. Section 4: Workflow Image */
.apple-workflow-section {
  padding: 4rem 0 5rem;
  background: var(--apple-bg-subtle);
  border-top: 1px solid var(--apple-border);
}

.workflow-img-frame {
  max-width: 960px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--apple-border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.workflow-img-frame img {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
}

/* 6. Section 5: Trust Specs Comparison */
.apple-trust-section {
  padding: 5rem 0;
  background: #FFFFFF;
}

.apple-spec-table {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  border-collapse: collapse;
}

.apple-spec-table th {
  padding: 16px 20px;
  font-size: 1.1rem;
  border-bottom: 2px solid var(--apple-dark);
}

.apple-spec-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--apple-border);
  font-size: 0.95rem;
}

.spec-highlight {
  font-weight: 700;
  color: var(--brand-burgundy);
}

/* Drawer & Components */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -460px;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: #FFFFFF;
  z-index: 1060;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--apple-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

.btn-close-drawer {
  background: transparent;
  border: none;
  font-size: 1.3rem;
  color: var(--apple-gray);
  cursor: pointer;
}

.shipping-progress-bar-wrap {
  padding: 12px 24px;
  background: var(--apple-bg-subtle);
  border-bottom: 1px solid var(--apple-border);
}

.shipping-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--apple-charcoal);
  margin-bottom: 6px;
}

.shipping-meter {
  height: 4px;
  background: var(--apple-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.shipping-meter-fill {
  height: 100%;
  background: #2E7D32;
  transition: width 0.3s ease;
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 18px 24px;
}

.cart-item-row {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--apple-border);
}

.cart-item-thumb {
  width: 64px;
  height: 64px;
  background: var(--apple-bg-card);
  border-radius: var(--radius-sm);
  padding: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.cart-item-variant {
  font-size: 0.78rem;
  color: var(--apple-gray);
  margin-bottom: 6px;
}

.cart-item-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-price {
  font-weight: 700;
  color: var(--brand-burgundy);
}

.cart-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--apple-border);
  border-radius: var(--radius-full);
}

.cart-stepper button {
  background: transparent;
  border: none;
  width: 24px;
  height: 24px;
  font-weight: 700;
  cursor: pointer;
}

.cart-stepper span {
  width: 24px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.btn-remove-item {
  color: #D32F2F;
  font-size: 0.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-top: 4px;
}

.cart-drawer-footer {
  padding: 20px 24px;
  background: var(--apple-bg-subtle);
  border-top: 1px solid var(--apple-border);
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.cart-summary-line.total-line {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-burgundy);
  border-top: 1px solid var(--apple-border);
  padding-top: 10px;
  margin-top: 8px;
}

.btn-checkout-drawer {
  width: 100%;
  background: var(--brand-burgundy);
  color: #FFFFFF;
  border: none;
  padding: 13px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  margin-top: 12px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-checkout-drawer:hover {
  background: #330510;
  color: #FFFFFF;
}

/* Minimal Footer */
.apple-footer {
  background: #F5F5F7;
  padding: 50px 0 40px;
  color: var(--apple-gray);
  font-size: 0.82rem;
  border-top: 1px solid var(--apple-border);
}

.apple-footer a {
  color: var(--apple-charcoal);
  text-decoration: none;
}

.apple-footer a:hover {
  text-decoration: underline;
}

.vistaaram-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--apple-dark);
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2000;
  transform: translateY(80px);
  opacity: 0;
  font-size: 0.88rem;
  transition: var(--transition);
}

.vistaaram-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   DIVINE STORYTELLING & MODERN SACRED DESIGN ADDITIONS
   ========================================================================== */

/* Enhanced Hero with Atmospheric Temple Backdrop */
.apple-hero {
  position: relative;
  padding: 5.5rem 1rem 4.5rem;
  text-align: center;
  background: radial-gradient(circle at 50% 15%, rgba(245, 238, 226, 0.7) 0%, rgba(255, 255, 255, 0.95) 75%),
              url('/assets/images/hero-bg.png') center/cover no-repeat;
  overflow: hidden;
}

.apple-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #FFFFFF);
  pointer-events: none;
}

.divine-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--brand-gold);
  backdrop-filter: blur(10px);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--brand-burgundy);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(184, 142, 62, 0.15);
}

.text-serif-maroon {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brand-burgundy);
  display: block;
}

.btn-apple-story {
  background: transparent;
  color: var(--apple-charcoal);
  border: 1.5px solid var(--apple-border);
  padding: 11px 26px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-apple-story:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: var(--apple-charcoal);
  color: var(--apple-dark);
}

/* Chapter 1: The Devotional Story Section */
.divine-story-section {
  padding: 5.5rem 0;
  background: #FAF7F2;
  position: relative;
  border-top: 1px solid rgba(184, 142, 62, 0.15);
}

.story-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 0.5rem;
}

.story-heading {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 700;
  color: var(--apple-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.story-lead-text {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 1.5rem;
}

.founder-quote-card {
  position: relative;
  background: #FFFFFF;
  border-left: 4px solid var(--brand-gold);
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-top: 2rem;
}

.founder-quote-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brand-burgundy);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.founder-quote-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--apple-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(184, 142, 62, 0.2);
  background: #FFFFFF;
  padding: 18px;
}

.story-visual-frame img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.story-badge-strip {
  position: absolute;
  bottom: 28px;
  left: 32px;
  right: 32px;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-around;
  text-align: center;
  font-size: 0.78rem;
}

.story-badge-strip strong {
  display: block;
  font-size: 1rem;
  color: var(--brand-gold-light);
}

/* Chapter 2: The 3 Sacred Pillars */
.divine-pillars-section {
  padding: 5rem 0;
  background: #FFFFFF;
}

.divine-pillar-card {
  height: 100%;
  background: #FFFDF9;
  border: 1px solid rgba(184, 142, 62, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  transition: var(--transition);
  position: relative;
}

.divine-pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-gold);
  box-shadow: 0 16px 36px rgba(184, 142, 62, 0.12);
}

.pillar-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(74, 7, 23, 0.08);
  color: var(--brand-burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
}

.divine-pillar-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--apple-dark);
  margin-bottom: 0.8rem;
}

.divine-pillar-card p {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Chapter 5: The Daily Aarti Ritual Steps */
.ritual-section {
  padding: 5rem 0;
  background: #FAF7F2;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ritual-step-card {
  height: 100%;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  transition: var(--transition);
}

.ritual-step-card:hover {
  border-color: var(--brand-gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.ritual-step-num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--brand-burgundy);
  background: rgba(74, 7, 23, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 0.8rem;
}

.ritual-step-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.ritual-step-card p {
  font-size: 0.88rem;
  color: var(--apple-gray);
  line-height: 1.5;
  margin: 0;
}

/* Chapter 8: More Sacred Offerings */
.catalog-section {
  padding: 5rem 0;
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.catalog-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: rgba(184, 142, 62, 0.4);
}

.catalog-card-img-wrap {
  aspect-ratio: 1.15;
  background: var(--apple-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.catalog-card-img-wrap img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.catalog-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.catalog-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 0.3rem;
}

.catalog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.catalog-card-desc {
  font-size: 0.88rem;
  color: var(--apple-gray);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

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

.catalog-card-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--apple-dark);
}

.catalog-card-reg {
  font-size: 0.9rem;
  color: var(--apple-light-gray);
  text-decoration: line-through;
  margin-left: 6px;
}

.btn-catalog-cart {
  background: var(--apple-dark);
  color: #FFFFFF;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-catalog-cart:hover {
  background: var(--brand-burgundy);
  color: #FFFFFF;
}

/* Devotional Final Invitation */
.divine-cta-section {
  padding: 5rem 0;
  background: radial-gradient(circle at 50% 50%, #520919 0%, #30030C 100%);
  color: #FFFFFF;
  text-align: center;
  position: relative;
}

.divine-cta-section h2 {
  color: #FFFFFF;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.divine-cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 2.2rem;
}

.btn-divine-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #AA7C11 100%);
  color: #111111;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: var(--radius-full);
  border: none;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-divine-gold:hover {
  background: linear-gradient(135deg, #E5C158 0%, #BC8D22 100%);
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

/* Video Modal Dialog */
.modal-content.dark-modal {
  background: #000000;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ==========================================================================
   FRESH DIVINE LUXURY AESTHETIC (MINIMALIST & ATMOSPHERIC)
   ========================================================================== */

.fresh-divine-hero {
  padding: 5rem 1rem 4rem;
  text-align: center;
  background: radial-gradient(circle at 50% 32%, rgba(253, 243, 224, 0.75) 0%, rgba(254, 250, 242, 0.5) 50%, #FFFFFF 90%);
  position: relative;
}

.fresh-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #B88E3E;
  font-weight: 600;
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.fresh-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: #161412;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.fresh-hero-title em {
  font-style: italic;
  font-weight: 400;
  color: #4A0717;
  display: block;
}

.fresh-hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: #666;
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  font-weight: 400;
}

.fresh-product-stage {
  position: relative;
  max-width: 520px;
  margin: 1.5rem auto 2.5rem;
}

.fresh-product-stage img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 35px rgba(184, 142, 62, 0.16));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fresh-product-stage:hover img {
  transform: translateY(-6px) scale(1.02);
}

.fresh-badge-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2rem;
}

.fresh-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(184, 142, 62, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.fresh-purchase-card {
  max-width: 640px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid rgba(184, 142, 62, 0.25);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
}

.fresh-pack-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  margin-bottom: 1.4rem;
}

.fresh-pack-card {
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  background: #FFFFFF;
  transition: var(--transition);
  text-align: left;
}

.fresh-pack-card:hover {
  border-color: #aaa;
}

.fresh-pack-card.selected {
  border-color: #4A0717;
  background: #FFFDF9;
  box-shadow: 0 4px 15px rgba(74, 7, 23, 0.08);
}

.fresh-pack-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fresh-pack-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: #4A0717;
  margin-top: 4px;
}

/* 3 Sacred Pillars Section */
.fresh-sacred-section {
  padding: 5rem 0;
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.fresh-truth-card {
  text-align: center;
  padding: 2.2rem 1.5rem;
  height: 100%;
  border-radius: 16px;
  background: #FAF8F5;
  border: 1px solid rgba(184, 142, 62, 0.15);
  transition: var(--transition);
}

.fresh-truth-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(184, 142, 62, 0.08);
  border-color: #B88E3E;
}

.fresh-truth-num {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #B88E3E;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.fresh-truth-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #161412;
  margin-bottom: 0.6rem;
}

.fresh-truth-card p {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   ELEVATED SACRED NARRATIVE HERO CONCEPT
   ========================================================================== */

.sacred-narrative-hero {
  padding: 4.5rem 1rem 3.5rem;
  background-color: #FAF8F5;
  position: relative;
  overflow: hidden;
}

.max-w-850 {
  max-width: 850px;
}

/* ==========================================================================
   THE GRAND SANCTUARY HERO - ZEN TEMPLE MINIMALIST & STORY-DRIVEN
   Colors: #FAF8F5 (Ivory Canvas), #8B0C1B (Sacred Crimson), #C89462 (Sandalwood Gold)
   ========================================================================== */

.grand-sanctuary-hero {
  background: radial-gradient(ellipse 95% 70% at 50% 0%, rgba(200, 148, 98, 0.22) 0%, rgba(245, 239, 230, 0.55) 45%, transparent 80%);
  padding: clamp(1.4rem, 2.5vw, 2.5rem) 1rem clamp(2rem, 3.5vw, 3rem);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(200, 148, 98, 0.2);
}

.sanctuary-celestial-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 96vw);
  height: 650px;
  background: radial-gradient(ellipse at center, rgba(200, 148, 98, 0.35) 0%, rgba(139, 12, 27, 0.08) 42%, rgba(245, 239, 230, 0.05) 65%, transparent 75%);
  filter: blur(55px);
  pointer-events: none;
  z-index: 1;
}

.sanctuary-shloka-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid #EADFD8;
  box-shadow: 0 4px 18px rgba(200, 148, 98, 0.14);
  padding: 5px 6px 5px 18px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8C786A;
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  animation-delay: 0.1s;
}

.om-glyph {
  color: #8B0C1B;
  font-weight: 800;
  font-size: 0.95rem;
}

.pill-craft-label {
  color: #9C897B;
  font-weight: 600;
}

.dehradun-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #8B0C1B 0%, #51151A 100%);
  color: #FAF5EE !important;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  border: 1px solid rgba(200, 148, 98, 0.45);
  box-shadow: 0 2px 8px rgba(139, 12, 27, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dehradun-highlight-badge i {
  color: #E8DBC5;
  font-size: 0.72rem;
}

.dehradun-text-highlight {
  color: #8B0C1B;
  font-weight: 700;
}

/* Hero Story Flanks (Left: Dehradun Heritage, Right: Devotion & Offering) */
.hero-story-flank {
  position: relative;
  z-index: 3;
}

.flank-left {
  animation: flankFadeInLeft 0.85s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  animation-delay: 0.2s;
}

.flank-right {
  animation: flankFadeInRight 0.85s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  animation-delay: 0.2s;
}

@keyframes flankFadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-28px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes flankFadeInRight {
  0% {
    opacity: 0;
    transform: translateX(28px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.sanctum-kicker-badge {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #EADFD8;
  box-shadow: 0 2px 10px rgba(200, 148, 98, 0.1);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8B0C1B;
}

.flank-main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 2.2vw, 2.15rem);
  font-weight: 700;
  line-height: 1.2;
  color: #221C18;
  letter-spacing: -0.015em;
}

.flank-shimmer-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 600;
  line-height: 1.25;
}

.sanctuary-crimson-text {
  background: linear-gradient(90deg, #8B0C1B 0%, #D4AF37 35%, #8B0C1B 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGoldShimmer 6s linear infinite;
  font-style: italic;
  font-weight: 600;
  display: inline-block;
}

@keyframes textGoldShimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

.flank-body-text {
  font-size: 0.92rem;
  color: #554D47;
  line-height: 1.6;
}

/* Minimal Flank Tags */
.flank-minimal-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flank-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid #EADFD8;
  border-radius: var(--radius-full);
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #221C18;
  box-shadow: 0 2px 8px rgba(200, 148, 98, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flank-tag-pill:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(200, 148, 98, 0.16);
}

/* Flank Offering Card */
.flank-offering-card {
  background: #FFFFFF;
  border: 1.5px solid #EADFD8;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 10px 30px rgba(200, 148, 98, 0.12);
  text-align: left;
}

.offering-tag-mini {
  background: rgba(139, 12, 27, 0.08);
  color: #8B0C1B;
  font-weight: 700;
  font-size: 0.73rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.offering-free-perk {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2E7D32;
}

.flank-price-current {
  font-size: 1.85rem;
  font-weight: 800;
  color: #221C18;
  line-height: 1;
}

.flank-price-regular {
  font-size: 1.05rem;
  color: #8C827A;
  text-decoration: line-through;
}

.flank-savings-chip {
  background: #E8F5E9;
  color: #2E7D32;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 3px 9px;
  border-radius: var(--radius-full);
}

.flank-trust-stack {
  font-size: 0.8rem;
  color: #554D47;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

/* ======================================================
   STANDARDIZED VERTICAL RHYTHM SYSTEM
   ====================================================== */
:root {
  --section-spacing-y: clamp(3rem, 4.5vw, 4.2rem);
}

.vistaaram-section {
  padding: var(--section-spacing-y) 0;
  position: relative;
  border: none !important;
  scroll-margin-top: 125px;
  opacity: 0;
  transform: translateY(32px) scale(0.99);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

#stories {
  scroll-margin-top: 130px;
  background: radial-gradient(ellipse 85% 65% at 50% 50%, rgba(245, 239, 230, 0.65) 0%, rgba(200, 148, 98, 0.06) 50%, transparent 80%);
  position: relative;
}

#choose-pack {
  background: radial-gradient(ellipse 85% 60% at 50% 40%, rgba(255, 255, 255, 0.7) 0%, rgba(245, 239, 230, 0.5) 50%, transparent 80%);
  position: relative;
}

#story {
  background: linear-gradient(180deg, rgba(245, 239, 230, 0.45) 0%, rgba(245, 239, 230, 0.9) 50%, rgba(245, 239, 230, 0.45) 100%);
  border-top: 1px solid rgba(200, 148, 98, 0.16);
  border-bottom: 1px solid rgba(200, 148, 98, 0.16);
  position: relative;
}

#reviews {
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255, 255, 255, 0.65) 0%, rgba(245, 239, 230, 0.5) 50%, transparent 80%);
  position: relative;
}

#more-products {
  background: linear-gradient(180deg, transparent 0%, rgba(245, 239, 230, 0.6) 100%);
  position: relative;
}

/* Elevated Depth Card System */
.card, .offering-pack-card, .catalog-card, .sacred-vow-card {
  box-shadow: 0 4px 20px rgba(74, 7, 23, 0.04), 0 1px 4px rgba(200, 148, 98, 0.08) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.card:hover, .offering-pack-card:hover, .catalog-card:hover, .sacred-vow-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(74, 7, 23, 0.08), 0 2px 8px rgba(200, 148, 98, 0.14) !important;
}

/* Immediately reveal hero section */
.sanctuary-hero-universe {
  opacity: 1 !important;
  transform: none !important;
}

/* Incoming Animation: Active in Viewport */
.vistaaram-section.section-in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Outgoing Animation: Smooth Settle when Scrolled Past */
.vistaaram-section.section-scrolled-past {
  opacity: 0.90;
  transform: translateY(-8px) scale(0.994);
}

.section-header-clean {
  margin-bottom: clamp(0.9rem, 1.6vw, 1.3rem);
  position: relative;
  z-index: 2;
}

.sacred-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C89462;
  margin-bottom: 0.2rem;
}

.section-title-clean {
  font-family: 'Playfair Display', Georgia, serif;
  color: #221C18;
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  letter-spacing: -0.015em;
  line-height: 1.14;
  margin-top: 0 !important;
  margin-bottom: 0.2rem !important;
  font-weight: 700;
}

.section-subtitle-clean {
  font-size: 0.92rem;
  color: #554D47;
  margin: 0;
  line-height: 1.4;
}

/* ======================================================
   GRAND CENTRIC HERO STAGE & BALANCED SACRED RIBBON
   ====================================================== */
.grand-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  font-weight: 700;
  color: #221C18;
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.grand-hero-sub {
  font-size: clamp(0.88rem, 1.05vw, 1rem);
  color: #554D47;
  max-width: 1000px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .grand-hero-sub {
    white-space: nowrap;
  }
}

/* Centerpiece Artifact Stage (Grand Shrine Frame) */
.sanctuary-centerpiece-stage {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
}

.sanctuary-centerpiece-stage.prominent-wide-stage {
  max-width: 940px;
  width: 100%;
}

/* Bottom Sacred Value & Offering Ribbon */
.hero-bottom-ribbon {
  max-width: 940px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.hero-ribbon-card {
  background: #FFFFFF;
  border: 1px solid #EADFD8;
  border-radius: 20px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 18px rgba(200, 148, 98, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
}

.hero-ribbon-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 148, 98, 0.14);
}

.hero-ribbon-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: #FAF8F5;
  border: 1px solid #EADFD8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero-ribbon-meta strong {
  display: block;
  font-size: 0.92rem;
  color: #221C18;
  font-weight: 700;
  line-height: 1.25;
}

.hero-ribbon-meta span {
  display: block;
  font-size: 0.77rem;
  color: #6E655F;
  line-height: 1.35;
  margin-top: 3px;
}

.hero-ribbon-cta-card {
  background: #FFFFFF;
  border: 1.5px solid #C89462;
  border-radius: 20px;
  padding: 14px 20px;
  box-shadow: 0 8px 28px rgba(139, 12, 27, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-ribbon-cta-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #8B0C1B;
  color: #FFFFFF;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.hero-ribbon-cta-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
  margin-top: 4px;
}

.hero-ribbon-cta-price .price-now {
  font-size: 1.35rem;
  font-weight: 800;
  color: #8B0C1B;
}

.hero-ribbon-cta-price .price-old {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: #8C827A;
}

.hero-ribbon-cta-price .price-save {
  background: #E8F5E9;
  color: #2E7D32;
  font-size: 0.70rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.btn-hero-ribbon-order {
  background: #8B0C1B;
  color: #FFFFFF;
  border-radius: var(--radius-full);
  padding: 9px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-hero-ribbon-order:hover {
  background: #4A0717;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(139, 12, 27, 0.25);
}

@media (max-width: 991px) {
  .hero-bottom-ribbon {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 500px;
  }
}

/* Dynamic Sacred Embers Canvas Layer */
.sanctuary-embers-canvas {
  position: absolute;
  top: -40px;
  left: -40px;
  right: -40px;
  bottom: -40px;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  pointer-events: none;
  z-index: 1;
}

.sanctuary-divine-halo {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(600px, 92vw);
  height: min(480px, 90vw);
  background: radial-gradient(circle, rgba(200, 148, 98, 0.38) 0%, rgba(139, 12, 27, 0.1) 48%, transparent 72%);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
  animation: divineAuraPulse 6s ease-in-out infinite alternate;
}

@keyframes divineAuraPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.94);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

.sanctuary-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(74, 7, 23, 0.18), 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 3px solid #FFFFFF;
  max-width: 420px;
  height: 500px;
  margin: 0 auto;
  background: #221C18;
  perspective: 1000px;
  animation: heroVideoReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) backwards, heroCenterpieceFloat 6s ease-in-out infinite 0.9s alternate;
}

.sanctuary-image-wrapper.wide-sanctum-frame {
  max-width: 940px;
  width: 100%;
  height: 480px;
  border-radius: 26px;
  border: 2px solid #C89462;
  box-shadow: 0 24px 60px rgba(139, 12, 27, 0.16), 0 0 35px rgba(200, 148, 98, 0.22);
}

@keyframes heroVideoReveal {
  0% {
    opacity: 0;
    transform: scale(0.88) translateY(24px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes heroCenterpieceFloat {
  0% {
    transform: translateY(0);
    box-shadow: 0 22px 55px rgba(74, 7, 23, 0.18);
  }
  100% {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(139, 12, 27, 0.28);
  }
}

.sanctuary-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.sanctuary-hero-media.active {
  opacity: 1;
  pointer-events: auto;
}

/* Floating Audio Aarti Toggle */
.hero-audio-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  background: rgba(34, 28, 24, 0.85);
  backdrop-filter: blur(12px);
  color: #FAF8F5;
  border: 1px solid rgba(234, 223, 216, 0.35);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
}

.hero-audio-btn:hover {
  background: rgba(139, 12, 27, 0.9);
  border-color: rgba(243, 213, 154, 0.5);
  transform: translateY(-1px);
}

.hero-audio-btn.playing {
  background: #8B0C1B;
  border-color: #F3D59A;
  box-shadow: 0 0 16px rgba(243, 213, 154, 0.45);
  animation: audioPulse 2s infinite alternate;
}

@keyframes audioPulse {
  0% {
    box-shadow: 0 0 10px rgba(243, 213, 154, 0.3);
  }
  100% {
    box-shadow: 0 0 20px rgba(243, 213, 154, 0.7);
  }
}

/* Media View Toggles */
.sanctuary-media-toggles {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  gap: 5px;
  background: rgba(34, 28, 24, 0.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(234, 223, 216, 0.3);
  padding: 4px 6px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.media-toggle-btn {
  background: transparent;
  border: none;
  color: #EADFD8;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.media-toggle-btn.active {
  background: #8B0C1B;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(139, 12, 27, 0.5);
}

.media-toggle-btn:hover:not(.active) {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.15);
}

/* Floating Spiritual Truth Badges */
.floating-sanctum-pill {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid #EADFD8;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #221C18;
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: floatBadge 4s ease-in-out infinite alternate;
}

.pill-soot {
  top: 16px;
  left: 16px;
  animation-delay: 0s;
}

.pill-flame {
  bottom: 60px;
  left: 16px;
  animation-delay: 1.5s;
}

@keyframes floatBadge {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-6px);
  }
}

/* ======================================================
   REELS COVERFLOW SECTION (Increased 9:16 Ratio & Size)
   ====================================================== */
.reels-coverflow-container {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 0 16px;
  overflow-x: clip;
  overflow-y: visible;
}

.reels-coverflow-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  perspective: 1200px;
  transition: transform 0.4s ease;
  height: 550px;
}

.coverflow-reel-card {
  position: relative;
  flex: 0 0 235px;
  width: 235px;
  height: 418px;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.coverflow-reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Coverflow Scale Hierarchy */
.coverflow-reel-card.active-center {
  height: 428px;
  transform: scale(1.24) translateY(-6px);
  z-index: 10;
  opacity: 1;
  border: 3px solid #C89462;
  box-shadow: 0 24px 50px rgba(139, 12, 27, 0.28), 0 10px 24px rgba(200, 148, 98, 0.22);
}

.coverflow-reel-card.active-adjacent {
  height: 418px;
  transform: scale(0.92);
  z-index: 4;
  opacity: 1;
  border: 1.5px solid rgba(234, 223, 216, 0.5);
}

.coverflow-reel-card.active-adjacent.active-adjacent-left {
  transform: scale(0.92) translateX(-20px);
}

.coverflow-reel-card.active-adjacent.active-adjacent-right {
  transform: scale(0.92) translateX(20px);
}

.coverflow-reel-card.active-outer {
  height: 418px;
  transform: scale(0.76);
  z-index: 2;
  opacity: 1;
  border: 1px solid rgba(234, 223, 216, 0.4);
}

.coverflow-reel-card.active-outer.active-outer-left {
  transform: scale(0.76) translateX(20px);
}

.coverflow-reel-card.active-outer.active-outer-right {
  transform: scale(0.76) translateX(-20px);
}

.coverflow-reel-card:hover {
  filter: brightness(1.05);
}

/* Center Reel Audio Unmute Toggle Button */
.reel-audio-toggle-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 25;
  display: none; /* hidden on non-center reels */
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(18, 14, 12, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 148, 98, 0.5);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reel-audio-toggle-btn:hover {
  background: rgba(139, 12, 27, 0.85);
  border-color: #C89462;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(139, 12, 27, 0.4);
}

/* Only displayed on center reel */
.coverflow-reel-card.active-center .reel-audio-toggle-btn {
  display: inline-flex;
  animation: fadeInAudioBtn 0.35s ease forwards;
}

.reel-audio-toggle-btn.is-unmuted {
  background: rgba(139, 12, 27, 0.92);
  border-color: #D4AF37;
  color: #FFF8EE;
  box-shadow: 0 4px 16px rgba(139, 12, 27, 0.5);
}

@keyframes fadeInAudioBtn {
  from {
    opacity: 0;
    transform: translateY(-4px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.coverflow-nav-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.coverflow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: #D5C4B8;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.coverflow-dot.active {
  width: 26px;
  border-radius: var(--radius-full);
  background: #8B0C1B;
}

@media (max-width: 991px) {
  .sanctuary-image-wrapper.wide-sanctum-frame {
    height: 340px;
    max-width: 100%;
  }
  .reels-coverflow-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    padding: 20px 16px;
    gap: 14px;
    height: auto;
    min-height: 430px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .reels-coverflow-track::-webkit-scrollbar {
    display: none;
  }
  .coverflow-reel-card {
    flex: 0 0 200px;
    width: 200px;
    height: 355px;
    scroll-snap-align: center;
  }
  .coverflow-reel-card.active-center {
    transform: scale(1.08);
    height: 365px;
  }
  .coverflow-reel-card.active-adjacent,
  .coverflow-reel-card.active-adjacent-left,
  .coverflow-reel-card.active-adjacent-right,
  .coverflow-reel-card.active-outer,
  .coverflow-reel-card.active-outer-left,
  .coverflow-reel-card.active-outer-right {
    transform: scale(0.96);
    opacity: 1;
    filter: none;
    height: 350px;
  }
}

@media (max-width: 767px) {
  .reels-coverflow-track {
    min-height: 380px;
    padding: 16px 12px;
  }
  .coverflow-reel-card {
    flex: 0 0 185px;
    width: 185px;
    height: 328px;
  }
  .coverflow-reel-card.active-center {
    height: 340px;
    transform: scale(1.05);
  }
  .sanctuary-image-wrapper.wide-sanctum-frame {
    height: 300px;
  }
  .floating-sanctum-pill {
    font-size: 0.68rem;
    padding: 4px 8px;
  }
  .pill-soot {
    top: 10px;
    left: 10px;
  }
  .pill-flame {
    bottom: 54px;
    left: 10px;
  }
  .hero-audio-btn {
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 0.68rem;
  }
  .media-toggle-btn {
    font-size: 0.66rem;
    padding: 4px 8px;
  }
}

@media (max-width: 767px) {
  .sanctuary-image-wrapper {
    height: 320px;
    max-width: 290px;
  }
  .floating-sanctum-pill {
    font-size: 0.68rem;
    padding: 4px 8px;
  }
  .pill-soot {
    top: 10px;
    left: 10px;
  }
  .pill-flame {
    bottom: 54px;
    left: 10px;
  }
  .hero-audio-btn {
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 0.68rem;
  }
  .media-toggle-btn {
    font-size: 0.66rem;
    padding: 4px 8px;
  }
}

/* Magnetic CTA with Shimmer Effect */
.btn-sanctuary-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #8B0C1B 0%, #681026 100%);
  color: #FFFFFF !important;
  text-decoration: none !important;
  padding: 15px 36px;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(139, 12, 27, 0.32);
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-sanctuary-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 40%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 60%
  );
  transform: rotate(30deg);
  animation: ctaShimmer 4s infinite;
  pointer-events: none;
}

@keyframes ctaShimmer {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }
  50%, 100% {
    transform: translateX(100%) rotate(30deg);
  }
}

.btn-sanctuary-primary:hover {
  background: linear-gradient(135deg, #A51F22 0%, #8B0C1B 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(139, 12, 27, 0.45);
}

.cta-price-tag {
  background: rgba(255, 255, 255, 0.22);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-left: 6px;
}

.cta-price-tag del {
  opacity: 0.7;
  font-weight: 400;
  margin-left: 4px;
}

.sanctuary-trust-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.82rem;
  color: #6F6660;
  flex-wrap: wrap;
}

/* ==========================================================================
   DEDICATED SACRED PACK SELECTOR SECTION
   ========================================================================== */

.offering-pack-card {
  background: #FAF8F5;
  border: 1.5px solid #EADFD8;
  border-radius: 20px;
  padding: 26px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.offering-pack-card:hover {
  border-color: #C89462;
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(200, 148, 98, 0.12);
}

.offering-pack-card.featured-pack {
  background: #FFFDF9;
  border-color: #8B0C1B;
  box-shadow: 0 12px 30px rgba(139, 12, 27, 0.1);
}

.offering-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #8B0C1B;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(139, 12, 27, 0.25);
  white-space: nowrap;
}

.offering-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #221C18;
  margin-bottom: 2px;
}

.offering-card-cups {
  font-size: 0.82rem;
  color: #8A8A8A;
  font-weight: 600;
}

.offering-card-pricing .cur-price {
  font-size: 2.1rem;
  font-weight: 800;
  color: #8B0C1B;
  font-family: 'Playfair Display', serif;
  margin-right: 8px;
}

.offering-card-pricing .old-price {
  font-size: 1.05rem;
  color: #8A8A8A;
  text-decoration: line-through;
}

.offering-card-pricing .savings-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: #B9784F;
  margin-top: 3px;
}

.offering-perks-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 0.84rem;
  color: #4B4541;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-offering-select {
  background: #8B0C1B;
  color: #FFFFFF;
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-offering-select:hover {
  background: #4A0717;
  transform: translateY(-1px);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(139, 12, 27, 0.25);
}

.featured-pack .btn-offering-select {
  background: #8B0C1B;
  box-shadow: 0 4px 14px rgba(139, 12, 27, 0.25);
}

/* ======================================================
   VISTAARAM LUXURY FOOTER (Seamless Maroon Flow)
   ====================================================== */
.vistaaram-footer {
  background: linear-gradient(180deg, #2E040D 0%, #170206 100%);
  color: #FAF8F5;
  padding: 4.5rem 0 2rem;
  border: none !important;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.vistaaram-footer.section-in-view {
  opacity: 1;
  transform: translateY(0);
}

.footer-brand-logo {
  height: 38px;
  width: auto;
  margin-bottom: 1.25rem;
  display: block;
}

.footer-brand-desc {
  color: rgba(250, 248, 245, 0.78);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 360px;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FAF8F5;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social-icon:hover {
  background: #C89462;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(200, 148, 98, 0.35);
}

.footer-heading {
  font-family: 'Playfair Display', Georgia, serif;
  color: #FAF8F5;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 26px;
  height: 2px;
  background: #C89462;
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links li a {
  color: rgba(250, 248, 245, 0.72);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: #C89462;
  transform: translateX(4px);
}

.footer-desk-line {
  color: rgba(250, 248, 245, 0.78);
  font-size: 0.86rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}

.footer-desk-line a {
  color: rgba(250, 248, 245, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-desk-line a:hover {
  color: #C89462;
}

.footer-badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: rgba(200, 148, 98, 0.14);
  border: 1px solid rgba(200, 148, 98, 0.3);
  color: #E8DBC5;
  font-size: 0.78rem;
  font-weight: 500;
}

.footer-bottom-bar {
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(250, 248, 245, 0.55);
  font-size: 0.82rem;
}

.footer-bottom-bar a {
  color: rgba(250, 248, 245, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-bar a:hover {
  color: #C89462;
}

.footer-version-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background: rgba(200, 148, 98, 0.15);
  border: 1px solid rgba(200, 148, 98, 0.3);
  border-radius: 999px;
  color: #E8DBC5;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-helios-credit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(250, 248, 245, 0.7);
  font-size: 0.82rem;
}

.helios-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px 4px 6px;
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  text-decoration: none !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18), 0 0 12px rgba(255, 255, 255, 0.1);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.helios-brand-badge:hover {
  background: #FFFFFF;
  border-color: #5B2BD6;
  box-shadow: 0 4px 20px rgba(91, 43, 214, 0.35), 0 0 16px rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.helios-logo-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: inline-block;
  border-radius: 5px;
}

.helios-name {
  font-family: 'Sora', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: -0.02em;
  color: #1A1330 !important;
}

.helios-lab-accent {
  color: #5B2BD6 !important;
  transition: color 0.2s ease;
}

.helios-brand-badge:hover .helios-lab-accent {
  color: #7C3AED !important;
}


/* Mobile Sticky Action Bar - Hidden on desktop, fixed bottom on mobile */
.mobile-sticky-action-bar {
  display: none;
}

@media (max-width: 767px) {
  .mobile-sticky-action-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(200, 148, 98, 0.25);
    padding: 10px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  }
}

/* ==========================================================================
   Rooted in Devbhoomi — Handcrafted in Dehradun Section
   ========================================================================== */
.dehradun-heritage-section {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: radial-gradient(ellipse at 50% 15%, rgba(245, 239, 230, 0.7) 0%, rgba(250, 245, 238, 0.4) 60%, transparent 100%);
}

.heritage-philosophy-card {
  max-width: 820px;
  background: #FFFFFF;
  border: 1px solid #EADFD8;
  border-radius: 20px;
  padding: clamp(1.8rem, 4vw, 2.5rem);
  box-shadow: 0 10px 30px rgba(74, 7, 23, 0.04), 0 1px 3px rgba(200, 148, 98, 0.1);
  position: relative;
  text-align: center;
}

.heritage-philosophy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C89462, transparent);
}

.philosophy-quote-mark {
  color: #C89462;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  opacity: 0.7;
}

.philosophy-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  color: #221C18;
  margin-bottom: 1.25rem;
}

.philosophy-quote-text em {
  color: #8B0C1B;
  font-style: italic;
}

.philosophy-origin-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: #FAF5EE;
  border: 1px solid #EADFD8;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #51151A;
  letter-spacing: 0.3px;
}

.process-showcase-frame {
  max-width: 980px;
  margin: 0 auto;
  padding: 12px;
  background: #FFFFFF;
  border: 1px solid #EADFD8;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(74, 7, 23, 0.05), 0 2px 6px rgba(200, 148, 98, 0.1);
}

.process-diagram-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.dehradun-step-card {
  background: #FFFFFF;
  border: 1px solid #EADFD8;
  border-radius: 18px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 4px 16px rgba(74, 7, 23, 0.03), 0 1px 3px rgba(200, 148, 98, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.dehradun-step-card:hover {
  transform: translateY(-4px);
  border-color: #C89462;
  box-shadow: 0 10px 28px rgba(74, 7, 23, 0.07), 0 2px 6px rgba(200, 148, 98, 0.15);
}

.step-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FAF5EE;
  color: #8B0C1B;
  border: 1px solid #EADFD8;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #221C18;
  margin-bottom: 0.4rem;
}

.step-desc {
  font-size: 0.84rem;
  line-height: 1.55;
  color: #615953;
  margin-bottom: 0;
}

.usp-pills-bar {
  max-width: 900px;
  margin: 0 auto;
}

.usp-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  background: #FFFFFF;
  border: 1px solid #EADFD8;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #3B332E;
  box-shadow: 0 2px 8px rgba(74, 7, 23, 0.03);
  transition: all 0.2s ease;
}

.usp-pill:hover {
  border-color: #C89462;
  background: #FAF5EE;
  transform: translateY(-2px);
}

