/* Sacred Geometry Landing Page - Custom Styles */

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
    --brand-dark: #2D2A26;
    --brand-gold: #B8956E;
    --brand-accent: #B91C1C;
    --brand-light: #F5F0E8;
    --brand-sage: #4A6741;
    --brand-text: #3D3A36;
    --brand-muted: #7A7570;
}

/* ========================================
   BASE STYLES
   ======================================== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background-color: var(--brand-light);
    color: var(--brand-text);
    font-size: 1.0625rem;
    line-height: 1.75;
}

/* Fluid typography */
.font-serif { font-size: clamp(1.0625rem, 1.3vw, 1.25rem); }
h1, .text-hero { font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem); }
h2 { font-size: clamp(1.65rem, 3vw + 0.25rem, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2vw + 0.25rem, 1.875rem); }

/* ========================================
   SCROLLBAR HIDE
   ======================================== */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ========================================
   HERO SECTION STYLES
   ======================================== */
.hero-bg {
    position: relative;
    overflow: hidden;
    background: #2D2A26;
}

/* Hero Image Positioning */
.hero-mobile-image {
    object-position: center 5% !important; /* Show angel head at top */
}

/* Mobile: Show right side of hero image (Tree of Life) */
@media (max-width: 768px) {
    #top .hero-mobile-image,
    section#top .hero-mobile-image {
        object-position: 75% 5% !important;
    }
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-parallax-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    object-fit: cover;
    object-position: center 60%;
}

/* Hero Gold Line */
.hero-gold-line {
    height: 2px;
    width: 120px;
    background: linear-gradient(90deg, transparent, #B8956E, transparent);
    animation: lineExpand 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

@keyframes lineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 120px;
        opacity: 1;
    }
}

/* Hero Headline Glow Effect */
.hero-headline {
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 1),
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 4px 8px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(184, 149, 110, 0.25);
}

/* Hero Text - Strong shadows for clear readability over image */
.hero-text-shadow {
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 1),
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 4px 8px rgba(0, 0, 0, 0.7);
}

.hero-headline.hero-animate {
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Responsive Hero Typography */
@media (min-width: 1280px) {
    .hero-headline-xl {
        font-size: 5.5rem;
        line-height: 1.05;
    }
}

@media (min-width: 1536px) {
    .hero-headline-xl {
        font-size: 6.5rem;
    }
}

/* ========================================
   HERO ANIMATIONS
   ======================================== */
@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroGlow {
    0%, 100% {
        text-shadow: 0 0 40px rgba(184, 149, 110, 0.2);
    }
    50% {
        text-shadow: 0 0 80px rgba(184, 149, 110, 0.4);
    }
}

.hero-animate {
    opacity: 0;
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-animate-delay-1 { animation-delay: 0.1s; }
.hero-animate-delay-2 { animation-delay: 0.3s; }
.hero-animate-delay-3 { animation-delay: 0.5s; }
.hero-animate-delay-4 { animation-delay: 0.7s; }
.hero-animate-delay-5 { animation-delay: 0.9s; }

.hero-animate:nth-child(1) { animation-delay: 0.1s; }
.hero-animate:nth-child(2) { animation-delay: 0.2s; }
.hero-animate:nth-child(3) { animation-delay: 0.3s; }
.hero-animate:nth-child(4) { animation-delay: 0.4s; }
.hero-animate:nth-child(5) { animation-delay: 0.5s; }
.hero-animate:nth-child(6) { animation-delay: 0.6s; }

/* ========================================
   HERO DOPAMINE-TRIGGERING ANIMATIONS
   ======================================== */

/* Gradient Overlay — static, no animation (background-position animation causes full repaint every frame) */
.hero-gradient-overlay {
    background: linear-gradient(
        135deg,
        rgba(184, 149, 110, 0.08) 0%,
        rgba(185, 28, 28, 0.04) 25%,
        rgba(74, 103, 65, 0.06) 50%,
        rgba(184, 149, 110, 0.08) 75%,
        rgba(185, 28, 28, 0.04) 100%
    );
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Hero Image - GPU layer, static position */
.hero-parallax-image {
    transform: translateZ(0);
    will-change: auto;
}

/* Floating Geometric Shapes */
.hero-floating-shapes {
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border: 2px solid rgba(184, 149, 110, 0.2);
    border-radius: 50%;
    animation: floatShape 20s ease-in-out infinite;
    will-change: transform;
}

.hero-shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    border-color: rgba(184, 149, 110, 0.3);
}

.hero-shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
    border-color: rgba(185, 28, 28, 0.25);
    border-radius: 0;
    transform: rotate(45deg);
}

.hero-shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
    border-color: rgba(74, 103, 65, 0.2);
}

.hero-shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: -7s;
    border-color: rgba(184, 149, 110, 0.15);
    border-radius: 0;
    transform: rotate(30deg);
}

.hero-shape-5 {
    width: 50px;
    height: 50px;
    bottom: 40%;
    right: 10%;
    animation-delay: -12s;
    border-color: rgba(185, 28, 28, 0.2);
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(20px, 30px) rotate(270deg) scale(1.05);
        opacity: 0.5;
    }
}

/* Static Particles — animation removed (background-position on multiple gradients causes repaint every frame) */
.hero-particles {
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(184, 149, 110, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(185, 28, 28, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(184, 149, 110, 0.5), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(74, 103, 65, 0.4), transparent),
        radial-gradient(2px 2px at 90% 80%, rgba(184, 149, 110, 0.3), transparent),
        radial-gradient(1px 1px at 10% 60%, rgba(185, 28, 28, 0.4), transparent);
    opacity: 0.5;
}

/* Shimmer Effect for Badge */
.hero-shimmer {
    position: relative;
    overflow: hidden;
}

.hero-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    /* Shimmer animation removed per design – no blinky effect */
}

@keyframes shimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Headline Word Highlight Animation */
.hero-headline-animated {
    position: relative;
}

.hero-highlight-word {
    position: relative;
    display: inline-block;
    text-shadow: 0 0 20px rgba(185, 28, 28, 0.5);
}

/* Social Proof Badge Pulse */
.hero-pulse-badge {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(184, 149, 110, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 8px rgba(184, 149, 110, 0);
    }
}

/* Icon Bounce */
.hero-icon-bounce {
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.1);
    }
}

/* Number Glow */
.hero-number-glow {
    animation: numberGlow 2.5s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(184, 149, 110, 0.5);
}

@keyframes numberGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(184, 149, 110, 0.5);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 20px rgba(184, 149, 110, 0.8), 0 0 30px rgba(184, 149, 110, 0.4);
        transform: scale(1.05);
    }
}

/* Enhanced CTA Button with More Dopamine */
.hero-cta-primary {
    position: relative;
    overflow: visible;
}

.hero-cta-primary::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: linear-gradient(45deg, #B91C1C, #B8956E, #B91C1C);
    background-size: 200% 200%;
    animation: ctaGradient 3s ease infinite;
    z-index: -1;
    opacity: 0.6;
    filter: blur(8px);
}

@keyframes ctaGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Video Container Enhancement */
#hero-video-container {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#hero-video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(184, 149, 110, 0.4), 0 0 40px rgba(185, 28, 28, 0.2);
}

/* Play Button Pulse */
#hero-video-container .group:hover .w-20 {
    animation: playButtonPulse 1s ease-in-out infinite;
}

@keyframes playButtonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(184, 149, 110, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(184, 149, 110, 0);
    }
}

/* Hero CTA Button Enhancement */
.hero-cta-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-cta-primary:hover::before {
    left: 100%;
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 149, 110, 0.4);
}

/* ========================================
   CTA BUTTON PULSING ANIMATION
   Red (#B91C1C) creates urgency and triggers action
   Research shows red outperforms green by 21% for conversions
   ======================================== */
.hero-cta-primary,
a[href="#buy-cta"].bg-brand-gold,
a[href*="wa.me"].bg-brand-gold,
#sticky-cta a,
.cta-button {
    animation: ctaPulse 2s ease-in-out infinite;
    position: relative;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.7),
                    0 4px 20px rgba(184, 149, 110, 0.3);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(185, 28, 28, 0),
                    0 4px 20px rgba(185, 28, 28, 0.5),
                    0 0 30px rgba(185, 28, 28, 0.3);
    }
}

/* Ensure animation doesn't interfere with hover states */
.hero-cta-primary:hover,
a[href="#buy-cta"].bg-brand-gold:hover,
a[href*="wa.me"].bg-brand-gold:hover,
#sticky-cta a:hover {
    animation: ctaPulse 2s ease-in-out infinite, ctaPulseHover 0.3s ease-out;
}

@keyframes ctaPulseHover {
    0% {
        box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.7),
                    0 4px 20px rgba(184, 149, 110, 0.3);
    }
    100% {
        box-shadow: 0 0 0 12px rgba(185, 28, 28, 0),
                    0 8px 30px rgba(185, 28, 28, 0.6),
                    0 0 40px rgba(185, 28, 28, 0.4);
    }
}

/* Alternative: Border pulse for subtle effect */
.cta-pulse-border {
    position: relative;
}

.cta-pulse-border::after {
    content: '';
    position: absolute;
    inset: -2px;
    border: 2px solid rgba(185, 28, 28, 0.6);
    border-radius: inherit;
    animation: borderPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes borderPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

/* Hero Secondary Link */
.hero-cta-secondary {
    position: relative;
    transition: all 0.3s ease;
}

.hero-cta-secondary::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #B8956E;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.hero-cta-secondary:hover::after {
    width: 100%;
}

.hero-cta-secondary:hover {
    color: #B8956E;
}

/* ========================================
   NAVIGATION DOTS
   ======================================== */
#nav-dots .nav-dot span {
    transition: all 0.3s ease;
}

#nav-dots .nav-dot.active span,
#nav-dots .nav-dot:hover span {
    background-color: var(--brand-gold);
    transform: scale(1.3);
}

#nav-dots .nav-dot.active span {
    box-shadow: 0 0 10px rgba(184, 149, 110, 0.5);
}

/* ========================================
   COUNTDOWN TIMER
   ======================================== */
/* ========================================
   COUNTDOWN TIMER (Sticky – 5 days from first visit, reset to 1 day when expired)
   ======================================== */
.countdown-timer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(45, 42, 38, 0.97) 0%, rgba(61, 58, 54, 0.97) 100%);
    border: 2px solid var(--brand-gold);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(184, 149, 110, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 280px;
    transition: all 0.3s ease;
}
.countdown-timer.urgent {
    border-color: var(--brand-accent);
    box-shadow: 0 8px 25px rgba(185, 28, 28, 0.4);
    animation: pulse-urgent 2s ease-in-out infinite;
}
.countdown-timer.critical {
    border-color: var(--brand-accent);
    box-shadow: 0 8px 25px rgba(185, 28, 28, 0.5);
    animation: pulse-critical 1s ease-in-out infinite;
}
@keyframes pulse-urgent {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}
@keyframes pulse-critical {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(185, 28, 28, 0.5); }
    50% { transform: scale(1.03); box-shadow: 0 12px 35px rgba(185, 28, 28, 0.65); }
}
.countdown-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.countdown-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.countdown-display {
    font-size: 1.1rem;
    color: var(--brand-gold);
    font-weight: 700;
    line-height: 1.4;
}
.countdown-timer.urgent .countdown-display { color: var(--brand-accent); }
.countdown-timer.critical .countdown-display {
    color: var(--brand-accent);
    font-size: 1.2rem;
}
.countdown-unit { font-weight: 700; }
.countdown-timer.urgent .countdown-unit { color: var(--brand-accent); }
.countdown-timer.critical .countdown-unit { color: var(--brand-accent); }
.countdown-separator {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}
.countdown-timer.expired { display: none; }

/* Mobile: Timer als feste Leiste ganz oben über dem Header */
@media (max-width: 767px) {
    .countdown-timer {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        padding: 8px 16px !important;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    }
    .countdown-content {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 0.25rem;
    }
    .countdown-label {
        margin-bottom: 0;
        margin-right: 0.2rem;
        font-size: 12px;
        white-space: nowrap;
    }
    .countdown-display {
        font-size: 12px;
        display: inline-flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 0 0.15rem;
        white-space: nowrap;
    }
    .countdown-timer.critical .countdown-display { font-size: 12px; }
    .countdown-timer.urgent .countdown-display { font-size: 12px; }

    /* Nav bar sits below the countdown bar (~36px high) */
    #main-header {
        top: 36px !important;
        min-height: 60px;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    #main-header .flex.items-center.justify-between {
        min-height: 60px;
        padding-top: 0;
        padding-bottom: 0;
    }
    #main-header .flex-shrink-0 img {
        max-height: 52px;
        width: auto;
        padding: 6px 0;
        box-sizing: content-box;
    }
    #main-header #mobile-menu-btn svg {
        width: 28px;
        height: 28px;
    }
}
@media (max-width: 639px) {
    .countdown-timer {
        padding: 6px 12px !important;
    }
    .countdown-label { font-size: 11px; }
    .countdown-display { font-size: 11px; }
    .countdown-timer.critical .countdown-display { font-size: 11px; }
}

/* ========================================
   SECTION DIVIDERS
   ======================================== */
.section-divider {
    position: relative;
    height: 60px;
    overflow: hidden;
    line-height: 0;
}
.section-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}
.section-divider--dark-to-light svg { fill: var(--brand-light); }
.section-divider--light-to-dark svg { fill: var(--brand-dark); }
.section-divider--white-to-dark svg { fill: var(--brand-dark); }
.section-divider--light-to-dark-grad svg { fill: #2D2A26; }

@media (max-width: 768px) {
    .section-divider { height: 36px; }
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--brand-gold);
}

.faq-trigger {
    cursor: pointer;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-content {
    max-height: 500px;
}

/* ========================================
   UNIFIED CARD STYLE
   ======================================== */
.brand-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.brand-card:hover {
    border-color: var(--brand-gold);
    box-shadow: 0 8px 24px rgba(184,149,110,0.12);
    transform: translateY(-2px);
}
.brand-card--dark {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}
.brand-card--dark:hover {
    border-color: var(--brand-gold);
    box-shadow: 0 8px 24px rgba(184,149,110,0.15);
}

/* ========================================
   VIDEO CONTAINERS
   ======================================== */
.video-container {
    position: relative;
    cursor: pointer;
}

.video-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

/* Cinematic glow for key video containers */
#hero-video-container,
#lineage-video-container {
    position: relative;
}
#hero-video-container::before,
#lineage-video-container::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 12px;
    background: radial-gradient(ellipse at center, rgba(184,149,110,0.35) 0%, transparent 70%);
    z-index: -1;
    animation: videoGlow 6s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes videoGlow {
    0%   { opacity: 0.4; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.02); }
}

/* ========================================
   PARTICLES CANVAS
   ======================================== */
#particles-canvas {
    opacity: 0.3;
}

/* ========================================
   COSMIC FLOATING BACKGROUND
   ======================================== */
.cosmic-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Universe gradient - light-filled, ethereal */
.cosmic-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(184, 149, 110, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(74, 103, 65, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
}

/* Floating stars/particles */
.cosmic-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(184, 149, 110, 0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 20%, rgba(184, 149, 110, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 80% 50%, rgba(255, 255, 255, 0.25) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 60%, rgba(184, 149, 110, 0.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 50% 40%, rgba(184, 149, 110, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 90%, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
    animation: twinkle 8s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Floating Pyramid Container */
.floating-pyramids {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Individual floating pyramid */
.pyramid {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0.15;
    animation: floatPyramid 20s ease-in-out infinite;
}

/* Triangle shapes using borders */
.pyramid-1 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid rgba(184, 149, 110, 0.3);
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.pyramid-2 {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(255, 255, 255, 0.2);
    top: 60%;
    left: 85%;
    animation-delay: -5s;
    animation-duration: 22s;
}

.pyramid-3 {
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(184, 149, 110, 0.2);
    top: 70%;
    left: 5%;
    animation-delay: -10s;
    animation-duration: 28s;
}

.pyramid-4 {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 26px solid rgba(255, 255, 255, 0.25);
    top: 25%;
    left: 90%;
    animation-delay: -3s;
    animation-duration: 18s;
}

.pyramid-5 {
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid rgba(184, 149, 110, 0.15);
    top: 45%;
    left: 50%;
    animation-delay: -8s;
    animation-duration: 30s;
}

.pyramid-6 {
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 31px solid rgba(255, 255, 255, 0.2);
    top: 80%;
    left: 70%;
    animation-delay: -12s;
    animation-duration: 24s;
}

/* Floating circles (sacred geometry) */
.sacred-circle {
    position: absolute;
    border: 1px solid rgba(184, 149, 110, 0.2);
    border-radius: 50%;
    animation: floatCircle 25s ease-in-out infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 15%;
    animation-delay: -2s;
}

.circle-2 {
    width: 50px;
    height: 50px;
    top: 65%;
    left: 20%;
    animation-delay: -7s;
    animation-duration: 20s;
}

.circle-3 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 25%;
    animation-delay: -12s;
    animation-duration: 30s;
    border-color: rgba(255, 255, 255, 0.15);
}

@keyframes floatPyramid {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
    75% {
        transform: translateY(-25px) rotate(2deg);
    }
}

@keyframes floatCircle {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.05);
        opacity: 0.5;
    }
}

/* Dark section variant */
.cosmic-bg-dark::before {
    background: 
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(184, 149, 110, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 70%, rgba(100, 140, 200, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
}

.cosmic-bg-dark::after {
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(184, 149, 110, 0.5) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 20%, rgba(184, 149, 110, 0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 80% 50%, rgba(255, 255, 255, 0.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 60%, rgba(184, 149, 110, 0.45) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 80%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 50% 40%, rgba(184, 149, 110, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 90%, rgba(255, 255, 255, 0.35) 0%, transparent 100%);
}

.cosmic-bg-dark .pyramid {
    opacity: 0.2;
}

.cosmic-bg-dark .pyramid-1 {
    border-bottom-color: rgba(184, 149, 110, 0.4);
}

.cosmic-bg-dark .pyramid-2 {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.cosmic-bg-dark .pyramid-3 {
    border-bottom-color: rgba(184, 149, 110, 0.3);
}

.cosmic-bg-dark .sacred-circle {
    border-color: rgba(184, 149, 110, 0.25);
}

/* ========================================
   HOSTS SECTION - ENHANCED COSMIC BACKGROUND
   ======================================== */
.cosmic-bg-hosts::before {
    background: 
        /* Nebula glow - gold center */
        radial-gradient(ellipse 70% 50% at 50% 50%, rgba(184, 149, 110, 0.15) 0%, transparent 60%),
        /* Rose Crimson accent - subtle top right */
        radial-gradient(ellipse 40% 30% at 85% 15%, rgba(185, 28, 28, 0.08) 0%, transparent 50%),
        /* Rose Crimson accent - subtle bottom left */
        radial-gradient(ellipse 35% 25% at 10% 85%, rgba(185, 28, 28, 0.06) 0%, transparent 50%),
        /* Deep space blue hints */
        radial-gradient(ellipse 50% 40% at 20% 30%, rgba(80, 100, 140, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 45% 35% at 80% 70%, rgba(100, 80, 120, 0.08) 0%, transparent 50%);
}

.cosmic-bg-hosts::after {
    background-image: 
        /* Gold stars */
        radial-gradient(2px 2px at 5% 15%, rgba(184, 149, 110, 0.6) 0%, transparent 100%),
        radial-gradient(2px 2px at 15% 45%, rgba(184, 149, 110, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 25% 75%, rgba(184, 149, 110, 0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 35% 25%, rgba(184, 149, 110, 0.55) 0%, transparent 100%),
        radial-gradient(1px 1px at 45% 85%, rgba(184, 149, 110, 0.45) 0%, transparent 100%),
        radial-gradient(2px 2px at 55% 35%, rgba(184, 149, 110, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 65% 65%, rgba(184, 149, 110, 0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 75% 15%, rgba(184, 149, 110, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 55%, rgba(184, 149, 110, 0.45) 0%, transparent 100%),
        radial-gradient(2px 2px at 95% 85%, rgba(184, 149, 110, 0.5) 0%, transparent 100%),
        /* White stars */
        radial-gradient(2px 2px at 10% 35%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 20% 65%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 30% 95%, rgba(255, 255, 255, 0.45) 0%, transparent 100%),
        radial-gradient(1px 1px at 40% 5%, rgba(255, 255, 255, 0.35) 0%, transparent 100%),
        radial-gradient(2px 2px at 50% 55%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 25%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        radial-gradient(2px 2px at 70% 75%, rgba(255, 255, 255, 0.45) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 45%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 90% 5%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
        /* Rose Crimson accent stars - very subtle */
        radial-gradient(2px 2px at 12% 82%, rgba(185, 28, 28, 0.25) 0%, transparent 100%),
        radial-gradient(1px 1px at 88% 18%, rgba(185, 28, 28, 0.2) 0%, transparent 100%),
        radial-gradient(2px 2px at 72% 92%, rgba(185, 28, 28, 0.22) 0%, transparent 100%);
    animation: twinkleHosts 6s ease-in-out infinite;
}

@keyframes twinkleHosts {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Glowing pyramids for hosts section */
.cosmic-bg-hosts .pyramid {
    opacity: 0.25;
    filter: drop-shadow(0 0 8px rgba(184, 149, 110, 0.4));
}

.cosmic-bg-hosts .pyramid-1 {
    border-bottom-color: rgba(184, 149, 110, 0.5);
}

.cosmic-bg-hosts .pyramid-2 {
    border-bottom-color: rgba(255, 255, 255, 0.35);
}

.cosmic-bg-hosts .pyramid-3 {
    border-bottom-color: rgba(184, 149, 110, 0.4);
}

.cosmic-bg-hosts .pyramid-4 {
    border-bottom-color: rgba(185, 28, 28, 0.2);
}

.cosmic-bg-hosts .pyramid-5 {
    border-bottom-color: rgba(184, 149, 110, 0.35);
}

.cosmic-bg-hosts .pyramid-6 {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.cosmic-bg-hosts .sacred-circle {
    border-color: rgba(184, 149, 110, 0.3);
    box-shadow: 0 0 15px rgba(184, 149, 110, 0.15);
}

.cosmic-bg-hosts .circle-crimson {
    border-color: rgba(185, 28, 28, 0.15);
    box-shadow: 0 0 20px rgba(185, 28, 28, 0.1);
}

/* ========================================
   CTA BUTTON EFFECTS
   ======================================== */
#checkout-btn {
    position: relative;
    overflow: hidden;
}

#checkout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

#checkout-btn:hover::before {
    left: 100%;
}

/* ========================================
   PULSE ANIMATION FOR URGENCY
   ======================================== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
button:focus,
a:focus {
    outline: 2px solid #B91C1C;
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    nav,
    footer,
    #countdown-timer,
    #nav-dots,
    #particles-canvas,
    .video-container {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    section {
        page-break-inside: avoid;
    }
}

/* ========================================
   AUTO-SCROLLING TESTIMONIALS WALL
   ======================================== */
.autoscroll-wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-height: 720px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
}

.autoscroll-col {
    overflow: hidden;
    position: relative;
}

.autoscroll-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: asrScrollUp var(--scroll-speed, 20s) linear infinite;
}

.autoscroll-col:hover .autoscroll-track {
    animation-play-state: paused;
}

@keyframes asrScrollUp {
    from { transform: translateY(0); }
    to   { transform: translateY(-50%); }
}

.asr-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    flex-shrink: 0;
}
.asr-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.asr-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #b2dfdb;
    color: #00695c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.asr-meta {
    flex: 1;
    min-width: 0;
}
.asr-meta-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1a1a;
    line-height: 1.3;
}
.asr-meta-info {
    font-size: 0.75rem;
    color: #888;
}
.asr-date {
    font-size: 0.75rem;
    color: #888;
    white-space: nowrap;
    flex-shrink: 0;
}
.asr-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}
.asr-star {
    width: 22px;
    height: 22px;
    background: #00b67a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}
.asr-star svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}
.asr-card h4 {
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
}
.asr-card p {
    color: #333;
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0 0 14px;
}
.asr-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.asr-footer-tag {
    font-size: 0.7rem;
    color: #555;
    background: #f3f3f3;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 500;
}
.asr-footer-badge {
    font-size: 0.7rem;
    color: #555;
    background: #f3f3f3;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .autoscroll-wall {
        grid-template-columns: 1fr;
        max-height: 480px;
        gap: 14px;
    }
    .autoscroll-col:nth-child(2),
    .autoscroll-col:nth-child(3) {
        display: none;
    }
    .autoscroll-track { gap: 14px; }
    .asr-card { padding: 20px 18px; }
}

/* ========================================
   HEADER NAVIGATION
   ======================================== */
#main-header {
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
#main-header.scrolled {
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    background-color: rgba(255,255,255,0.98);
}

.header-nav-link {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-text);
    transition: color 0.2s ease;
    white-space: nowrap;
}
.header-nav-link:hover {
    color: var(--brand-gold);
}

.header-cta-btn {
    display: inline-block;
    padding: 0.55rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    background: var(--brand-gold);
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}
.header-cta-btn:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--brand-text);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-nav-link:last-of-type {
    border-bottom: none;
}
.mobile-nav-link:hover {
    color: var(--brand-gold);
    padding-left: 0.5rem;
}

/* Hide nav dots on the left while mobile menu is open */
@media (max-width: 1023px) {
    #nav-dots.hide-dots {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }
}

/* Mobile: smaller menu dropdown */
@media (max-width: 1023px) {
    #mobile-menu .px-3 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* ========================================
   LEGACY CARDS HOVER EFFECT
   ======================================== */
section#masters .group:hover {
    transform: translateY(-4px);
}

/* ========================================
   HOST CARDS IMAGE OVERLAY
   ======================================== */
section#hosts .aspect-\[4\/3\]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 42, 38, 0.8) 0%, transparent 50%);
    pointer-events: none;
}

/* ========================================
   CURRICULUM ITEMS HOVER
   ======================================== */
section#curriculum .bg-white\/5:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
    /* Smaller hero text on mobile */
    section#top h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    /* Stack curriculum value on mobile */
    section#curriculum .flex.items-start.justify-between {
        flex-direction: column;
    }
    
    section#curriculum .flex.items-start.justify-between > span {
        margin-top: 1rem;
    }
    
    /* Full width buttons on mobile */
    #buy-cta a.inline-block {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   LOADING STATE
   ======================================== */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s infinite;
}

/* shimmer keyframes defined above (line ~329) */

/* ========================================
   MOBILE NAVIGATION DOTS
   ======================================== */
@media (max-width: 1023px) {
    #nav-dots {
        left: 0.75rem;
        gap: 0.5rem;
    }
    
    #nav-dots .nav-dot {
        opacity: 0.7;
    }
    
    #nav-dots .nav-dot:hover,
    #nav-dots .nav-dot.active {
        opacity: 1;
    }
}

/* ========================================
   COMMON QUESTION ACCORDION
   ======================================== */
.accordion-content {
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.accordion-icon {
    transition: transform 0.3s ease-in-out;
}

#common-question-toggle:hover .accordion-icon {
    transform: scale(1.1);
}

#common-question-toggle:focus {
    outline: 2px solid var(--brand-gold);
    outline-offset: 2px;
}

/* ========================================
   PROGRESSIVE JOURNEY LABELS & WORKSHOP CONNECTION
   ======================================== */

/* Step Badge */
.step-badge {
    display: inline-block;
    background: linear-gradient(135deg, #B8956E, #B91C1C);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 12px rgba(184, 149, 110, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(184, 149, 110, 0.4);
}

/* Workshop Connection Text */
.workshop-connection {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
}

.workshop-connection a {
    color: #B91C1C;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.workshop-connection a:hover {
    color: #B8956E;
    text-decoration: underline;
}

/* Curriculum Preview Cards */
.curriculum-preview-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.curriculum-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(184, 149, 110, 0.2);
}

/* Master Teaching Badge */
.master-teaching-badge {
    background: linear-gradient(135deg, #B91C1C, #DC2626);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(185, 28, 28, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(185, 28, 28, 0.3);
    }
    50% {
        box-shadow: 0 4px 16px rgba(185, 28, 28, 0.5);
    }
}

/* ========================================
   PARALLAX DIVIDER SECTIONS
   ======================================== */
/* Parallax: background directly on section — same pattern as Meditation v2, works in all browsers */
.parallax-divider {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.parallax-divider > .parallax-bg {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
@media (max-width: 768px) {
  .parallax-divider {
    height: 40vh;
  }
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.parallax-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
}
.parallax-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: white;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.5;
}
.parallax-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  color: rgba(184, 149, 110, 0.9);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.parallax-attribution {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .parallax-quote { font-size: 1.5rem; }
}

/* ========================================
   APPLE PAY BUTTON
   ======================================== */
.apple-pay-btn:hover {
  opacity: 0.9;
}

/* Review carousel: 1 card on mobile, 3 on desktop */
/* Old review-carousel overrides removed — now using autoscroll-wall */
