:root {
    /* --- Brand Identity Palette (Dark Luxury) --- */

    /* 1. DOMINANT (Purple) */
    --brand-purple: #9D50BB;
    /* Richer Violet for Dark Mode */
    --brand-indigo: #300e57;
    /* Deep Void Purple */

    /* 2. ACCENT (Orange/Fire) */
    --brand-orange: #ee6306;
    /* Vibrant Solar Orange */
    --brand-amber: #D4AF37;
    /* Metallic Gold Accent */

    /* 3. NEUTRALS (Dark Mode) */
    --brand-mist: #0b0b0b;
    /* Deep Stealth Grey (Section BG) */
    --text-primary: #F8F9FA;
    /* Crisp White (Reading Text) */
    --text-secondary: #B0B0B0;
    /* Slate Purple (Subtext) */

    /* Backgrounds */
    --bg-void: #020202;
    /* Deepest Void Black */
    --bg-nebula: #080808;
    /* Softest Grey-Black Section BG */

    /* Glass / Panels (Dark Glass) */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);

    /* Text Mapped */
    --text-muted: #6C757D;

    /* Accents & Gradients */
    --primary-color: var(--brand-purple);
    --accent-color: var(--brand-orange);
    --primary-glow: #b05eff;
    --royal-gold: var(--brand-amber);

    /* Gradients */
    --gradient-flame: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-amber) 100%);
    --gradient-royal: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-indigo) 100%);
    --gradient-header: linear-gradient(to bottom, #020202, rgba(2, 2, 2, 0.95));

    /* Dimensions */
    --container-width: 1200px;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --header-clearance: 16rem;

    /* Backward Compatibility Mappings */
    --royal-gold: var(--brand-amber);
    --accent-color: var(--brand-amber);
    --primary-color: var(--brand-purple);
    --primary-glow: #b05eff;
    --glass-surface: var(--glass-bg);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-void);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    width: 100%;
    /* Ensure body doesn't overflow */
    position: relative;
    /* subtle texture */
    background-image:
        radial-gradient(circle at 100% 0%, rgba(238, 99, 6, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(81, 34, 157, 0.05) 0%, transparent 40%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: white;
    /* Headers in Pure white for Dark Mode */
    margin-bottom: 1rem;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Text Gradient (Fire on White) */
.text-gradient {
    background: var(--gradient-flame);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons: The Flame Pop */
.btn-luxury {
    display: inline-block;
    padding: 1rem 2.5rem;
    white-space: nowrap;
    background: var(--gradient-flame);
    border: none;
    color: #fff;
    /* White text on Orange button */
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(238, 99, 6, 0.2);
    font-weight: 700;
}

.btn-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 99, 6, 0.4);
    background: linear-gradient(45deg, var(--brand-amber), var(--brand-orange));
}

/* Glass Panels (Enhanced Deep Mystic Luxury) */
.glass-panel {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 3rem;
    
    /* Multi-layer shadows for depth */
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 60px rgba(157, 80, 187, 0.03);
    
    /* Enhanced glassmorphism */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    
    /* Smooth transitions */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.03), 
        transparent);
    transition: left 0.8s ease;
}

.glass-panel:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 80px rgba(157, 80, 187, 0.08);
}

.glass-panel:hover::before {
    left: 100%;
}

/* Premium Glass Panel - For hero sections and featured content */
.glass-panel-premium {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.08) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(212, 175, 55, 0.1),
        0 0 80px rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-panel-premium:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 16px 64px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(212, 175, 55, 0.2),
        0 0 100px rgba(212, 175, 55, 0.12);
}

/* Interactive Glass Panel - For clickable cards */
.glass-panel-interactive {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.glass-panel-interactive:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(157, 80, 187, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(157, 80, 187, 0.3),
        0 0 80px rgba(157, 80, 187, 0.15);
}

/* Subtle Glass Panel - For dense layouts */
.glass-panel-subtle {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.glass-panel-subtle:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

/* Highlight Glass Panel - For CTAs and important sections */
.glass-panel-highlight {
    background: linear-gradient(135deg, 
        rgba(238, 99, 6, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(238, 99, 6, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(238, 99, 6, 0.15),
        0 0 60px rgba(238, 99, 6, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-panel-highlight:hover {
    transform: translateY(-3px);
    border-color: rgba(238, 99, 6, 0.3);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(238, 99, 6, 0.25),
        0 0 80px rgba(238, 99, 6, 0.15);
}

/* Header */
/* --- Header & Navigation --- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    /* REMOVED PADDING to fix gap */
    transition: all 0.4s ease;

    /* Glassmorphism Dark (Mystic) */
    background: rgba(10, 5, 20, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Subtle Brand Border */
    border-bottom: 2px solid transparent;
    /* Prepare for gradient */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

#main-header.scrolled {
    padding: 0;
    background: rgba(2, 2, 2, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);

    /* Gradient Bottom Border Effect */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#main-header.scrolled .nav-link-mystic {
    color: var(--text-primary);
    /* Dark text on white header */
}

#main-header.scrolled .nav-link-mystic:hover {
    color: var(--brand-purple);
    /* Brand color on hover */
    text-shadow: none;
}

/* --- Top Bar (Luxury Utility Strip) --- */
.top-bar {
    background: rgba(5, 2, 10, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    /* Unified with Nav */
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1.5rem;
}

.cart-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1.5rem;
}

/* Mobile Top Bar Adjustments */
@media (max-width: 768px) {
    .top-bar-left a[href^="mailto"] {
        display: none;
        /* Hide email on mobile */
    }

    .top-bar-left,
    .top-bar-right {
        gap: 0.8rem;
    }

    .social-icons {
        border-left: none;
        padding-left: 0;
    }

    .cart-icon-wrapper {
        padding-left: 0.8rem;
    }

    /* Hide text for login/account/cart on very small screens, keep icons */
    @media (max-width: 400px) {
        .top-bar-right a {
            font-size: 0;
        }

        .top-bar-right a i {
            font-size: 1rem;
        }
    }
}

/* Navigation Container - Grid for Precision */
/* Navigation Container - Flex for Absolute Centering */
/* Navigation Container - "The Balancer" Flex Layout */
/* Navigation Container - STRICT GRID Layout */
/* Navigation Container - STRICT GRID Layout */
/* Navigation Container - "Elastic Symmetry" Grid */
.nav-container {
    display: grid;
    /* MIRRORED GRID: Side columns (1 & 3) are flexible '1fr' to force 
       the center column (2) into the mathematical viewport middle. */
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: relative;
    height: 100%;
    width: 100% !important;
    max-width: 1400px !important;
    /* Unified Luxury Box */
    margin: 0 auto !important;
    padding: 0 4rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* 1. Left (Logo Area) */
.logo-text {
    grid-column: 1;
    justify-self: end;
    /* Bind to Center Block */
    display: flex;
    align-items: center;
    margin-right: 20px;
    /* Fixed 20px Gap */
    z-index: 2;
    transition: all 0.3s ease;
}

.logo {
    max-height: 25px;
    /* Reduced by 50% from 50px */
    width: auto;
    transition: transform 0.3s ease, max-height 0.3s ease;
}

/* 2. Center (Navigation Area) */
.nav-links {
    grid-column: 2;
    display: flex;
    gap: 2.2rem;
    /* Luxury default */
    align-items: center;
    justify-content: center;
    margin: 0;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 3. Right (Control Area / Spacer) */
/* This mirrors the logo's existence to keep the center stable */
.nav-links-spacer {
    grid-column: 3;
    display: block;
    width: 100%;
}

.mobile-menu-btn {
    grid-column: 3;
    justify-self: end;
    display: none;
    color: var(--brand-purple);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.nav-link-mystic {
    color: #e0e0e0;
    font-family: var(--font-body);
    /* More sophisticated Inter font */
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
    opacity: 0.9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated Underline - Gold Ray Style */
.nav-link-mystic::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    /* Thinner for luxury */
    bottom: -2px;
    left: 0;
    background: var(--brand-amber);
    box-shadow: 0 0 8px var(--brand-amber);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-mystic:hover {
    color: #fff;
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 191, 0, 0.3);
}

.nav-link-mystic:hover::after {
    width: 100%;
}

/* Fluid Compression (1201px - 1800px) */
@media (max-width: 1800px) and (min-width: 1201px) {
    .nav-container {
        padding: 0 2rem;
    }

    .nav-links {
        gap: clamp(0.8rem, 2vw, 2.22rem);
    }

    .nav-link-mystic {
        font-size: clamp(0.7rem, 0.8vw, 0.85rem);
        letter-spacing: clamp(0.5px, 0.1vw, 1px);
    }

    .logo {
        max-height: 20px;
        /* Slight shrink for horizontal safety */
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    /* Default hidden on desktop */
}

/* --- Responsive Layout (Mobile/Tablet < 1100px) --- */
@media (max-width: 1100px) {

    /* 1. Header Layout Adjustments */
    .nav-container {
        padding: 0 1.5rem;
        display: flex;
        justify-content: space-between;
        height: 70px;
        align-items: center;
        /* Ensure vertical center */
    }

    .logo-text {
        grid-column: auto;
        margin-right: 0;
    }

    .logo {
        max-height: 35px;
        /* Smaller logo for mobile */
    }

    /* 2. Mobile Menu Button */
    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        color: var(--royal-gold);
        z-index: 1002;
        cursor: pointer;
        padding: 10px;
        /* Larger touch target */
    }

    /* 3. The Overlay Navigation */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 2, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1001;
        padding: 80px 20px 20px;
        /* More top padding */
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    /* 4. Luxury Mobile Links */
    .nav-link-mystic {
        font-size: 1.4rem;
        color: #fff;
        font-family: 'Cinzel', serif;
        letter-spacing: 2px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active .nav-link-mystic {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered Animation Delay loop... */
    .nav-links.active .nav-link-mystic:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active .nav-link-mystic:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active .nav-link-mystic:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active .nav-link-mystic:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active .nav-link-mystic:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links.active .nav-link-mystic:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-links.active .nav-link-mystic:nth-child(7) {
        transition-delay: 0.4s;
    }

    .nav-links.active .nav-link-mystic:nth-child(8) {
        transition-delay: 0.45s;
    }

    .nav-links-spacer {
        display: none;
    }
}

/* --- Mobile Specific Fixes (< 768px) --- */
@media (max-width: 768px) {

    /* Top Bar Declutter */
    .top-bar .container {
        justify-content: center;
        /* Center content */
        gap: 10px;
    }

    .top-bar-left {
        display: none;
        /* Hide social/email on mobile to save space */
    }

    .top-bar-right {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .top-bar form {
        width: auto !important;
        /* Allow shrink */
        flex-grow: 1;
    }

    .top-bar input {
        font-size: 16px;
        /* Prevent zoom on iOS */
    }

    /* Hero Typography Overrides */
    .hero h1 {
        font-size: 2.2rem !important;
        /* Smaller */
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
        margin-top: 0 !important;
    }

    .hero p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
        line-height: 1.5 !important;
    }

    /* Hero Buttons */
    .hero .container>div>div {
        display: flex;
        flex-direction: column;
        /* Stack buttons */
        gap: 1rem;
        width: 100%;
    }

    .hero .btn-luxury {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 1rem !important;
    }

    /* Ensure nothing is hidden behind header */
    .hero {
        padding-top: 240px !important;
        /* Increased to 240px for more gap */
        /* Push content down */
        height: auto !important;
        /* Allow grow */
        min-height: 100vh;
        align-items: flex-start !important;
        /* Align top */
    }

    /* Video Object Fit */
    .hero video,
    .hero #youtube-bg,
    .hero iframe {
        height: 100vh !important;
        /* Keep full screen bg */
        position: absolute;
        /* Ensure it stays back */
        top: 0;
    }

    .hero .container {
        padding-top: 0 !important;
        /* Remove internal spacing, rely on hero padding */
    }
}

/* Body Lock */
body.no-scroll {
    overflow: hidden;
}

/* Intermediate Desktop Responsive - REMOVED: Managed by Breakpoint shift */

/* Product Cards (Luxury) */
.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(81, 34, 157, 0.15);
    /* Purple glow shadow */
    border-color: var(--brand-orange);
    /* Highlight border */
}

.card-img {
    height: 280px;
    /* Taller image for better aesthetic */
    width: 100%;
    overflow: hidden;
}

.section-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: var(--spacing-md) 0;
}

.card-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 80%, rgba(0, 0, 0, 0.3));
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.product-card:hover .card-img::after {
    opacity: 0.3;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .card-img img {
    transform: scale(1.08);
    /* Gentle zoom */
}

.card-body {
    padding: 2rem;
    /* More breathing room */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
    /* Centered elegance */
}

.card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--brand-purple);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.card-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--brand-orange);
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

/* Enhancing the description text */
/* Testimonial Cards (Luxury Carousel) */


/* Fix for centering inside container if we don't want full width breakout, 
   but user asked for carousel. simpler approach: Keep it container bound but scrollable. */

.testimonial-scroll {
    /* Resetting the breakout above to safer container-bound carousel */
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    padding: 2rem 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.testimonial-scroll::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 300px;
    /* Fixed width for consistency */
    scroll-snap-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(238, 99, 6, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 45px rgba(238, 99, 6, 0.15);
    border-color: var(--brand-orange);
    z-index: 10;
}

.testimonial-card img {
    width: 100%;
    display: block;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.testimonial-card:hover img {
    transform: scale(1.02);
}

/* Dots Navigation */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(81, 34, 157, 0.2);
    /* Inactive purple */
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.dot:hover {
    background: rgba(238, 99, 6, 0.5);
    transform: scale(1.1);
}

.dot.active {
    background: var(--brand-orange);
    box-shadow: 0 0 10px rgba(238, 99, 6, 0.4);
    transform: scale(1.2);
}

/* Consolidated Header Breakpoints */
@media (max-width: 1200px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Inputs */
input,
textarea,
select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 4px;
}

input:focus {
    border-color: var(--brand-orange);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(238, 99, 6, 0.1);
    outline: none;
}

/* Tables */
table {
    color: var(--text-secondary);
}

th {
    border-bottom: 2px solid var(--brand-purple);
    color: var(--brand-purple);
    font-weight: 700;
}

td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Sidebar */
.member-sidebar {
    background: #050505;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.member-avatar {
    background: var(--gradient-royal);
    color: #fff;
    box-shadow: 0 4px 10px rgba(81, 34, 157, 0.3);
}

.member-nav-item {
    color: var(--text-secondary);
}

.member-nav-item:hover,
.member-nav-item.active {
    color: var(--brand-purple);
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--brand-orange);
}

/* Founder Update */
.founder-update {
    background: rgba(238, 99, 6, 0.03);
    border-left: 4px solid var(--brand-orange);
}

.founder-update h4 {
    color: var(--brand-orange);
}

.founder-update p {
    color: #555;
}

/* Library Cards */
.library-card {
    background: #080808;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.library-card:hover {
    border-color: var(--brand-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lib-meta a {
    border-color: var(--brand-orange) !important;
    color: var(--brand-orange) !important;
}

.lib-meta a:hover {
    background: var(--brand-orange);
    color: #fff !important;
}

/* Sacred Grid (Very Subtle on White) */
.sacred-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* --- DASHBOARD UTILITIES (Dark Mode Compatible) --- */
.luxury-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.luxury-table th {
    text-align: left;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--royal-gold);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.luxury-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ccc;
    vertical-align: middle;
}

.luxury-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Badges */
.badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.badge-success {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-primary {
    background: rgba(81, 34, 157, 0.2);
    color: #b05eff;
    border: 1px solid rgba(81, 34, 157, 0.3);
}

/* Dashboard Inputs */
.dash-input {
    width: 100%;
    padding: 12px;
    background: #222;
    border: 1px solid #444;
    color: #fff;
    border-radius: 6px;
    margin-bottom: 15px;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.dash-input:focus {
    border-color: var(--brand-orange);
    outline: none;
    background: #2a2a2a;
}

/* --- LUXURY COMPONENT UTILITIES --- */

.tech-border {
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.tech-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-amber), transparent);
    opacity: 0.3;
}

.spec-sheet {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--brand-amber);
    border-radius: 4px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.spec-label {
    color: var(--brand-amber);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Visualizer Panel Standard */
.visualizer-panel {
    background: #000;
    border: 1px solid var(--glass-border);
    height: 480px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.member-card {
    background: var(--bg-nebula);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: var(--spacing-md);
}

.visualizer-panel img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(157, 80, 187, 0.3));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.visual-float {
    animation: float 6s ease-in-out infinite;
}