:root {
    --primary: #00F260;
    /* Neon Green */
    --bg-color: #050a10;
    /* Deep Blue Black */
    --card-bg: rgba(10, 15, 20, 0.85);
    /* Dark Blue Card */
    --text-main: #ffffff;
    --text-sec: #9ca3af;
    --border: #0575E6;
    /* Blue Border */
    --shadow: 0 4px 20px rgba(0, 242, 96, 0.2);
    /* Green Glow */
    --radius: 16px;
    --safe-area-bottom: env(safe-area-inset-bottom);
    --accent: #0575E6;
    /* Blue Accent */
    --dark-green: #038030;
    --gradient: linear-gradient(135deg, #00F260 0%, #0575E6 100%);
    /* Green to Blue */
    --font-heading: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    /* Smoother text */
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Parallax Background */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120vh;
    background-size: cover;
    background-position: center;
    z-index: -1;
    will-change: transform;
}

.parallax-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark overlay lighter */
    /* Dark blueish overlay for "Northern Lights" feel */
    background: rgba(5, 20, 40, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: -1;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 2px solid var(--border);
    padding: 0.2rem 0;
    text-align: center;
    transition: all 0.3s ease;
    overflow: visible;
    position: relative;
    animation: breathe-bg 4s ease-in-out infinite;
}

@keyframes breathe-bg {

    0%,
    100% {
        background-color: rgba(5, 10, 20, 0.9);
    }

    50% {
        background-color: rgba(5, 117, 230, 0.2);
    }
}

.logo {
    height: 160px;
    border-radius: 12px;
    object-fit: contain;
    animation: breathe 6s ease-in-out infinite;
    position: relative;
    z-index: 20;
    filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.6));
    will-change: transform, filter;
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.6));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.9));
    }
}



/* Category Select */
.category-wrapper {
    padding: 1rem;
    position: relative;
    z-index: 10;
}

.custom-select {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    border: 2px solid var(--border);
    background: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    color: white;
    /* Blue/Green Replacements */
    box-shadow: 0 4px 12px rgba(0, 242, 96, 0.3);
    /* ... */
}

.custom-select:focus {
    /* ... */
    box-shadow: 0 0 0 3px rgba(5, 117, 230, 0.3);
}

/* Golden Shine Effect -> Blue/Green Shine */
.product-card::before {
    /* ... */
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 242, 96, 0.3),
            transparent);
    /* ... */
}

.product-card:hover {
    /* ... */
    box-shadow: 0 12px 32px rgba(5, 117, 230, 0.5);
    /* ... */
    background: linear-gradient(135deg, rgba(5, 10, 20, 0.95) 0%, rgba(10, 20, 30, 0.95) 100%);
    border-color: rgba(0, 242, 96, 0.6);
}

.glass-card::before {
    /* ... */
    background: rgba(5, 117, 230, 0.1);
}

.logo {
    /* ... */
    filter: drop-shadow(0 0 10px rgba(0, 242, 96, 0.6));
}

@keyframes breathe {

    0%,
    100% {
        /* ... */
        filter: drop-shadow(0 0 10px rgba(0, 242, 96, 0.6));
    }

    50% {
        /* ... */
        filter: drop-shadow(0 0 15px rgba(5, 117, 230, 0.9));
    }
}

.product-name {
    /* ... */
    background: linear-gradient(to right, #ffffff 20%, #00F260 50%, #ffffff 80%);
    /* ... */
}

.product-category,
.product-category-overlay {
    background: rgba(5, 117, 230, 0.2);
    border: 1px solid rgba(5, 117, 230, 0.5);
    color: #00F260;
    /* ... */
}

.product-category-overlay {
    /* ... */
    box-shadow: 0 4px 12px rgba(5, 117, 230, 0.6),
        0 0 20px rgba(5, 117, 230, 0.4);
}

.price-tag {
    /* ... */
    color: #00F260;
    background: rgba(5, 117, 230, 0.2);
    border: 1px solid var(--border);
}

.btn-view {
    background: linear-gradient(135deg, #0575E6 0%, #00F260 100%);
    border: 2px solid rgba(0, 242, 96, 0.8);
    /* ... */
    box-shadow: 0 4px 12px rgba(5, 117, 230, 0.4);
}

.btn-view:hover {
    /* ... */
    box-shadow: 0 6px 20px rgba(0, 242, 96, 0.6);
    border-color: #00F260;
}

.hero-title {
    /* ... */
    background: linear-gradient(to right, #fff, #00F260);
    /* ... */
    text-shadow: 0 4px 20px rgba(0, 242, 96, 0.3);
}

.cta-button {
    background: linear-gradient(135deg, #0575E6, #00F260);
    /* ... */
    box-shadow: 0 8px 25px rgba(5, 117, 230, 0.4);
}

.cta-button:hover {
    /* ... */
    box-shadow: 0 15px 35px rgba(0, 242, 96, 0.6);
}

/* Modals */
.modal-content:focus {
    border-color: rgba(0, 242, 96, 0.8);
    box-shadow: 0 0 0 3px rgba(0, 242, 96, 0.3);
}

.modal-content::before {
    background: linear-gradient(90deg, transparent, rgba(5, 117, 230, 0.2), transparent);
}

.nav-btn:hover i,
.nav-btn.active i {
    color: var(--primary);
    filter: drop-shadow(0 0 8px rgba(0, 242, 96, 0.6));
}

.nav-btn:hover,
.nav-btn.active {
    background: rgba(5, 117, 230, 0.2);
    border-color: rgba(5, 117, 230, 0.8);
}

/* FAB */
.nav-btn-fab {
    background: linear-gradient(135deg, #0575E6 0%, #00F260 100%);
    box-shadow: 0 8px 32px rgba(5, 117, 230, 0.7),
        0 0 60px rgba(5, 117, 230, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.25);
}

.nav-btn-fab:hover {
    background: linear-gradient(135deg, #00F260 0%, #0575E6 100%);
    box-shadow: 0 12px 48px rgba(0, 242, 96, 1),
        0 0 100px rgba(0, 242, 96, 0.8),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

@keyframes fabPulseOrange {

    /* Renamed to Green/Blue conceptually but keeping name for compatibility for now */
    0%,
    50%,
    100% {
        box-shadow: 0 8px 32px rgba(5, 117, 230, 0.7),
            0 0 60px rgba(5, 117, 230, 0.5),
            inset 0 2px 0 rgba(255, 255, 255, 0.25);
    }

    25%,
    75% {
        box-shadow: 0 12px 48px rgba(0, 242, 96, 1),
            0 0 80px rgba(0, 242, 96, 0.8),
            inset 0 2px 0 rgba(255, 255, 255, 0.35);
    }
}





.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 0, 0.9);
    border: 2px solid rgba(255, 107, 0, 1);
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.6),
        0 0 30px rgba(255, 107, 0, 0.4);
    -webkit-tap-highlight-color: transparent;
}

.btn-view:hover i {
    background: rgba(255, 107, 0, 0.2);
    transform: scale(1.1);
}

.modal-close:hover,
.modal-close:active {
    background: rgba(255, 140, 0, 1);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 24px rgba(255, 107, 0, 0.8),
        0 0 50px rgba(255, 107, 0, 0.6);
}

/* Modal Logo */
.modal-logo {
    height: 70px;
    border-radius: 12px;
    object-fit: contain;
    position: relative;
    display: inline-block;
}

/* Modal Product Specifics */
.modal-slider-container {
    height: 40vh;
    background: rgba(17, 22, 15, 0.95);
    position: relative;
}

.modal-slider {
    display: flex;
    height: 100%;
    transition: transform 0.3s ease;
}

.slide {
    width: 100%;
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img,
.slide video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.modal-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
}

.modal-dot.active {
    background: white;
    transform: scale(1.2);
}

.modal-body {
    padding: 2rem;
    color: var(--text-color);
    text-align: center;
    /* Center everything in body by default */
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffcc80;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
    text-align: center;
}

.modal-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-sec);
    margin-bottom: 1.5rem;
    white-space: pre-line;
    text-align: center;
}

/* Info boxes with orange borders */
.info-box {
    padding: 1rem;
    background: rgba(255, 107, 0, 0.05);
    border: 2px solid rgba(255, 107, 0, 0.5);
    border-radius: 12px;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-main);
    text-align: center;
}

.tariff-box {
    background: rgba(255, 107, 0, 0.05);
    border: 2px solid rgba(255, 107, 0, 0.5);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.modal-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.modal-price-row:hover {
    background: rgba(255, 107, 0, 0.2);
    border-color: var(--primary);
    transform: translateX(5px);
}

.modal-price-label {
    font-weight: 500;
    color: var(--text-main);
}

.modal-price-value {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    font-weight: 700;
}

/* Shine effect for Price Row */
.modal-price-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.2), transparent);
    transform: skewX(-25deg);
    animation: shine 6s infinite;
    animation-delay: 2s;
    pointer-events: none;
}

.price-row .price {
    color: var(--border);
    font-weight: 800;
}

/* Links Modal */
/* Link items with orange borders */
.link-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid rgba(0, 242, 96, 0.5);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    text-decoration: none;
    color: var(--text-main);
    background: rgba(0, 242, 96, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Shine effect for Link Item */
.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 96, 0.2), transparent);
    transform: skewX(-25deg);
    animation: shine 7s infinite;
    animation-delay: 1s;
    pointer-events: none;
}

.link-item:hover {
    border-color: rgba(0, 242, 96, 0.8);
    background: rgba(0, 242, 96, 0.2);
    transform: translateY(-2px);
}

.link-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0575E6 0%, #00F260 100%);
    border: 1px solid rgba(0, 242, 96, 0.8);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.link-content {
    flex-grow: 1;
}

.link-content strong {
    display: block;
    font-size: 1rem;
}

/* Order Button - Green/Blue theme */
.order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0575E6 0%, #00F260 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1.5rem;
    border: 3px solid rgba(0, 10, 20, 0.9);
    box-shadow: 0 8px 32px rgba(0, 242, 96, 0.5),
        0 0 60px rgba(5, 117, 230, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    animation: fabPulseGreen 2s ease-in-out infinite;
}

.order-btn:hover {
    background: linear-gradient(135deg, #00F260 0%, #0575E6 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 48px rgba(0, 242, 96, 0.8),
        0 0 100px rgba(5, 117, 230, 0.6);
}

.order-btn i {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.6));
}

/* Sparkle Effect - Orange */
.sparkle {
    position: fixed;
    /* Important: fixed positioning relative to viewport */
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle-burst 0.8s cubic-bezier(0, .9, .57, 1) forwards;
    z-index: 9999;
    background: rgba(255, 107, 0, 1);
    box-shadow: 0 0 6px rgba(255, 107, 0, 0.8);
    /* Orange Glow */
}

@keyframes sparkle-burst {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

/* Order Buttons in Modal */
.order-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    color: white;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Reflection effect for order buttons */
.order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: left 0.6s;
}

.order-btn:hover::before {
    left: 100%;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.threema-btn {
    background: linear-gradient(135deg, #05A63F 0%, #038030 100%);
    /* Threema Green */
    box-shadow: 0 4px 15px rgba(5, 166, 63, 0.3);
}

.signal-btn {
    background: linear-gradient(135deg, #3A76F0 0%, #2C5AD1 100%);
    /* Signal Blue */
    box-shadow: 0 4px 15px rgba(58, 118, 240, 0.3);
}

.telegram-btn {
    background: linear-gradient(135deg, #229ED9 0%, #1E88BD 100%);
    /* Telegram Blue */
    box-shadow: 0 4px 15px rgba(34, 158, 217, 0.3);
}

/* Utilities */
.loading-spinner {
    border: 3px solid rgba(220, 38, 38, 0.2);
    border-top: 3px solid var(--border);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    /* Resize Header Logo - Animation breathe active */
    .logo {
        height: 80px !important;
        width: auto !important;
        max-width: 180px !important;
        /* Forcer l'animation sur mobile */
        animation: breathe-mobile 4s ease-in-out infinite !important;
    }

    @keyframes breathe-mobile {

        0%,
        100% {
            transform: scale(1);
            filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.8)) drop-shadow(0 0 30px rgba(255, 107, 0, 0.6));
        }

        50% {
            transform: scale(1.1);
            filter: drop-shadow(0 0 25px rgba(255, 107, 0, 1)) drop-shadow(0 0 50px rgba(255, 107, 0, 0.8));
        }
    }

    @keyframes pulseGlowOrange {

        0%,
        100% {
            filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.8));
        }

        50% {
            filter: drop-shadow(0 0 25px rgba(255, 107, 0, 1)) drop-shadow(0 0 50px rgba(255, 107, 0, 0.8));
        }
    }

    .logo-marquee {
        height: 60px !important;
    }

    .marquee-logo {
        height: 40px !important;
    }
}

/* Telegram Mini App Specifics */
body.telegram-app {
    width: 100vw;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    /* Prevent font scaling */
}

/* ========================================= */
/*       MODERN LANDING PAGE STYLES          */
/* ========================================= */

/* General Layout */
.section {
    min-height: 100vh;
    /* Full viewport height for impact */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Glassmorphism Utilities */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(5, 10, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 242, 96, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.glass-nav.scrolled {
    background: rgba(0, 0, 0, 0.9);
    height: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    filter: drop-shadow(0 0 5px rgba(255, 107, 0, 0.5));
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta).active {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.6);
}

.nav-cta {
    background: linear-gradient(135deg, #0575E6 0%, #00F260 100%);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 242, 96, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 242, 96, 0.5);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding-top: 100px;
    /* Nav spacing */
}

.hero-logo {
    height: 180px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 30px rgba(255, 107, 0, 0.4));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom right, #fff, #00F260);
    /* White to Green */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

/* Concept Section */
.concept-section {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: center;
}

.glass-box {
    background: rgba(10, 15, 25, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 242, 96, 0.2);
    padding: 3rem;
    border-radius: 24px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.icon-box {
    font-size: 3rem;
    color: #00F260;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(0, 242, 96, 0.6));
}

.glass-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

/* Features Grid */
.features-section {
    padding: 6rem 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(20, 15, 10, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 0, 0.1);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(15, 25, 40, 0.8);
    border-color: rgba(0, 242, 96, 0.5);
    box-shadow: 0 20px 40px rgba(0, 242, 96, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: #00F260;
    margin-bottom: 1.5rem;
    transition: transform 0.4s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Modern Footer */
.modern-footer {
    background: #050300;
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    padding: 4rem 1.5rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ff6b00;
    padding-left: 5px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .glass-box {
        padding: 2rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    /* Could add hamburger later */

    /* Ensure footer fits */
    .modern-footer {
        padding-bottom: 100px;
    }

    /* Space for legacy fixed footer if used, or just safe area */

    /* Show limited nav on mobile */
    .glass-nav {
        height: 60px;
        justify-content: center;
    }

    .nav-logo img {
        height: 32px;
    }
}

/* Floating Glass Dock (Fixed Footer) */
.fixed-footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: rgba(10, 15, 25, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
    z-index: 9999;
}

.fixed-footer .nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    gap: 4px;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    padding: 0;
}

.fixed-footer .nav-btn i {
    font-size: 1.3rem;
    margin-bottom: 2px;
    transition: all 0.3s ease;
}

.fixed-footer .nav-btn.active,
.fixed-footer .nav-btn:hover {
    color: #00F260;
    text-shadow: 0 0 10px rgba(0, 242, 96, 0.4);
    background: transparent;
    /* Reset explicit generic hover */
    border: none;
}

.fixed-footer .nav-btn.active i {
    transform: translateY(-4px);
    filter: drop-shadow(0 0 8px rgba(0, 242, 96, 0.6));
}

/* Ensure body has space for footer */
body {
    padding-bottom: 100px;
}

/* ========================================= */
/*           SHOP PAGE SPECIFICS             */
/* ========================================= */

.shop-main {
    padding-top: 80px;
    /* Space for fixed nav */
    max-width: 1200px;
    margin: 0 auto;
}

/* Shop Controls (Search & Filter) */
.shop-controls {
    position: sticky;
    top: 60px;
    /* Below Navbar */
    z-index: 900;
    padding: 1rem 1.5rem;
    background: linear-gradient(to bottom, rgba(5, 10, 20, 0.95) 70%, transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
}

.search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-sec);
    pointer-events: none;
}

.glass-input {
    width: 100%;
    padding: 12px 12px 12px 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    /* Pill shape */
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00F260;
    box-shadow: 0 0 0 3px rgba(0, 242, 96, 0.15);
    outline: none;
}

/* Category Pills */
.category-pills-wrapper {
    overflow-x: auto;
    padding-bottom: 5px;
    margin: 0 -1.5rem;
    /* Bleed to edges on mobile */
    padding: 0 1.5rem 5px;
}

.category-pills {
    display: flex;
    gap: 10px;
    width: max-content;
}

.cat-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    font-weight: 500;
}

.cat-pill.active {
    background: rgba(0, 242, 96, 0.15);
    border-color: #00F260;
    color: #00F260;
    box-shadow: 0 4px 15px rgba(0, 242, 96, 0.2);
}

.cat-pill:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Products Grid Override/Refinement */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Mobile default */
    gap: 1rem;
    padding: 0 1.5rem 6rem;
    /* Bottom padding for footer */
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    display: flex;
    /* Ensure flex for content */
    flex-direction: column;
}

.product-media {
    height: 180px;
    /* Fixed height for consistency */
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1rem;
    position: relative;
}

.product-media img,
.product-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.product-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    flex: 1;
    /* Push footer down */
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price-tag {
    font-weight: 700;
    color: #00F260;
    background: rgba(0, 242, 96, 0.1);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* === MODALS (FIXED) === */
.modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999 !important;
    /* Ensure on top of EVERYTHING */
    display: none !important;
    /* Force hide */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex !important;
    /* Force show */
    opacity: 1 !important;
}

.modal-content {
    background: #1a1a1a;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}