/* ============================================
   NOVARIDE - WORLD-CLASS ULTRA-PREMIUM 
   The Best Scooter Sales Page in the World
   ============================================ */

/* ========== VISUAL HERO SHOWCASE ========== */

.visual-hero-showcase {
    position: relative;
    overflow: hidden;
}

.visual-hero-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, #000 0%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

.visual-hero-showcase::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(0deg, #000 0%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

/* Premium Image Glow Effect */
.hero-image-glow {
    position: relative;
}

.hero-image-glow::before {
    content: '';
    position: absolute;
    inset: -50px;
    background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.hero-image-glow:hover::before {
    opacity: 1;
}

/* Premium Floating Effect */
@keyframes premiumFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Cinematic Vignette */
.cinematic-vignette {
    position: relative;
}

.cinematic-vignette::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

/* Premium Card Glass - Enhanced */
.card-glass-luxury {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-glass-luxury:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4), 0 0 40px rgba(16, 185, 129, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

/* Premium Image Container */
.image-container-premium {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.image-container-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-container-premium:hover img {
    transform: scale(1.05);
}

.image-container-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Luxury Gradient Text */
.text-gradient-luxury {
    background: linear-gradient(135deg, #10b981 0%, #34d399 30%, #6ee7b7 50%, #34d399 70%, #10b981 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

/* Ambient Glow Background */
.ambient-glow {
    position: relative;
}

.ambient-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: ambientPulse 8s ease-in-out infinite;
}

@keyframes ambientPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* ========== ULTRA-PREMIUM ZOOM - TESLA/APPLE STYLE ========== */

/* Main Image Container with Zoom */
.product-hero-image {
    position: relative;
    cursor: crosshair;
    overflow: hidden;
    border-radius: 24px;
}

.product-main-img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.5s ease,
        opacity 0.3s ease !important;
}

/* Subtle Hover Glow Effect */
.product-hero-image::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse at center,
            rgba(16, 185, 129, 0.08) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    z-index: -1;
}

.product-hero-image:hover::before {
    opacity: 1;
}

/* ========== APPLE-LEVEL MAGNIFYING GLASS ========== */

/* Premium circular magnifying glass — zoomed image renders inside via <img> */
.magnifier-lens {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
    transition:
        opacity 0.2s ease,
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999999;
    overflow: hidden;
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 60px rgba(0, 0, 0, 0.7);
    background: #0a0a0a !important;
}

.magnifier-lens.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.magnifier-lens .magnifier-img {
    position: absolute;
    display: block !important;
    max-width: none !important;
    max-height: none !important;
    pointer-events: none;
    user-select: none;
    z-index: 1 !important;
    top: 0;
    left: 0;
}

/* Glass highlight reflection — premium curved glass effect */
.magnifier-lens::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.04) 25%,
            transparent 50%,
            transparent 100%);
    pointer-events: none;
    z-index: 10;
}

/* Inner shadow for depth — makes it look like a real glass lens */
.magnifier-lens::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.08),
        inset 0 -6px 16px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    z-index: 11;
}

/* ========== ZOOM RESULT BOX — HIDDEN (replaced by in-lens zoom) ========== */

.zoom-result-box {
    display: none !important;
}

/* Hide magnifier lens on smaller screens / mobile — keep mobile behavior unchanged */
@media (max-width: 1024px) {
    .magnifier-lens {
        display: none !important;
    }
}

/* ========== PREMIUM LIGHTBOX ZOOM ========== */

.zoom-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(30px);
    cursor: zoom-out;
}

.zoom-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.zoom-lightbox-inner {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    transform: scale(0.8);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.zoom-lightbox.active .zoom-lightbox-inner {
    transform: scale(1);
}

.zoom-lightbox img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 50px 200px rgba(0, 0, 0, 0.8),
        0 0 100px rgba(16, 185, 129, 0.2);
}

/* Lightbox Close Button */
.zoom-close {
    position: absolute;
    top: -60px;
    right: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.zoom-close:hover {
    background: var(--nova-green);
    color: #000;
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
}

/* Zoom Controls */
.zoom-controls {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.zoom-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.zoom-btn:hover {
    background: var(--nova-green);
    color: #000;
    transform: scale(1.1);
}

/* Zoom Level Indicator */
.zoom-level {
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Lightbox Pan Effect */
.zoom-lightbox img.zoomed {
    cursor: grab;
    transform: scale(2);
    transition: transform 0.4s ease;
}

.zoom-lightbox img.zoomed:active {
    cursor: grabbing;
}

/* ========== MINIMAL ZOOM HINT - APPLE STYLE ========== */

.zoom-hint {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.product-hero-image:hover .zoom-hint {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.zoom-hint svg {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ========== PRODUCT CARD CINEMATIC - NO ZOOM ON CARDS ========== */
/* Zoom functionality is only on scooter-detail.html, not on scooters.html cards */

.product-card-cinematic .product-image {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Remove zoom overlay on cards - only for detail page */
.product-card-cinematic .product-image::after {
    display: none;
}

.product-card-cinematic {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(165deg,
            rgba(18, 18, 22, 0.95) 0%,
            rgba(12, 12, 15, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 28px;
    padding: 0;
    text-align: center;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card-cinematic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(16, 185, 129, 0.4) 50%,
            transparent 100%);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.product-card-cinematic::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%,
            rgba(16, 185, 129, 0.15) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.product-card-cinematic:hover {
    border-color: rgba(16, 185, 129, 0.25);
    transform: translateY(-8px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(16, 185, 129, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-card-cinematic:hover::before {
    transform: scaleX(1);
}

.product-card-cinematic:hover::after {
    opacity: 1;
}

/* APPLE-LEVEL HERO IMAGE - Full-Bleed Edge-to-Edge */
.product-card-cinematic .product-image {
    position: relative;
    height: 280px;
    margin-bottom: 0;
    overflow: hidden;
    background: linear-gradient(180deg,
            rgba(16, 185, 129, 0.04) 0%,
            rgba(10, 10, 12, 0.3) 50%,
            rgba(10, 10, 12, 0.95) 100%);
    /* No padding - full bleed */
    padding: 0;
    border-radius: 28px 28px 0 0;
}

.product-card-cinematic .product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(12, 12, 15, 1) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.product-card-cinematic .product-image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card-cinematic .product-image img,
.product-card-cinematic .product-image picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card-cinematic:hover .product-image img,
.product-card-cinematic:hover .product-image picture img {
    transform: scale(1.08);
}

/* APPLE-LEVEL MINIMAL BADGE */
.product-card-cinematic .premium-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    left: auto;
    padding: 8px 14px;
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.3s ease;
}

.product-card-cinematic:hover .premium-badge {
    transform: translateY(-2px);
    box-shadow:
        0 6px 24px rgba(16, 185, 129, 0.2),
        0 0 0 1px rgba(16, 185, 129, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Badge Color Variants via inline styles */
.product-card-cinematic .premium-badge[style*="#6ee7b7"],
.product-card-cinematic .premium-badge[style*="6ee7b7"] {
    background: rgba(10, 10, 15, 0.8) !important;
    border-color: rgba(110, 231, 183, 0.4) !important;
    color: #6ee7b7 !important;
    box-shadow:
        0 4px 20px rgba(110, 231, 183, 0.15),
        0 0 0 1px rgba(110, 231, 183, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.product-card-cinematic .premium-badge[style*="#f59e0b"],
.product-card-cinematic .premium-badge[style*="f59e0b"] {
    background: rgba(10, 10, 15, 0.8) !important;
    border-color: rgba(251, 191, 36, 0.4) !important;
    color: #fbbf24 !important;
    box-shadow:
        0 4px 20px rgba(251, 191, 36, 0.15),
        0 0 0 1px rgba(251, 191, 36, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.product-card-cinematic .premium-badge[style*="#8b5cf6"],
.product-card-cinematic .premium-badge[style*="8b5cf6"] {
    background: rgba(10, 10, 15, 0.8) !important;
    border-color: rgba(167, 139, 250, 0.4) !important;
    color: #a78bfa !important;
    box-shadow:
        0 4px 20px rgba(167, 139, 250, 0.15),
        0 0 0 1px rgba(167, 139, 250, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.product-card-cinematic .premium-badge[style*="#06b6d4"],
.product-card-cinematic .premium-badge[style*="06b6d4"] {
    background: rgba(10, 10, 15, 0.8) !important;
    border-color: rgba(34, 211, 238, 0.4) !important;
    color: #22d3ee !important;
    box-shadow:
        0 4px 20px rgba(34, 211, 238, 0.15),
        0 0 0 1px rgba(34, 211, 238, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.product-card-cinematic .premium-badge[style*="#22c55e"],
.product-card-cinematic .premium-badge[style*="22c55e"] {
    background: rgba(10, 10, 15, 0.8) !important;
    border-color: rgba(74, 222, 128, 0.4) !important;
    color: #4ade80 !important;
    box-shadow:
        0 4px 20px rgba(74, 222, 128, 0.15),
        0 0 0 1px rgba(74, 222, 128, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

/* Product Title - Apple Minimal Elegance */
.product-card-cinematic .product-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    padding: 24px 28px 0;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.product-card-cinematic:hover .product-title {
    color: var(--nova-green);
}

/* Description - Hidden for cleaner look */
.product-card-cinematic>p {
    display: none;
}

/* Specs Grid - Minimal Elegance */
.product-card-cinematic .specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 16px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.product-card-cinematic .spec-item {
    text-align: center;
    position: relative;
}

.product-card-cinematic .spec-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.product-card-cinematic:hover .spec-value {
    color: var(--nova-green);
}

.product-card-cinematic .spec-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
}

/* Apple-Style Price - Clean & Simple */
.product-card-cinematic .product-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    padding: 0 28px;
    margin: 12px 0 16px;
}

@keyframes priceShimmer {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

/* Apple-Minimal CTA Button */
.product-card-cinematic .btn-discover {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: calc(100% - 56px);
    margin: auto 28px 24px;
    /* margin-top: auto pushes button to bottom */
    padding: 14px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #000;
    background: var(--nova-green);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25);
}

.product-card-cinematic .btn-discover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.7s ease;
}

.product-card-cinematic .btn-discover:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.5);
}

.product-card-cinematic .btn-discover:hover::before {
    left: 100%;
}

.product-card-cinematic .btn-discover svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.product-card-cinematic .btn-discover:hover svg {
    transform: translateX(5px);
}

/* ========== LUXURY SECTION HEADERS ========== */

.section-header-luxury {
    text-align: center;
    margin-bottom: 80px;
}

.section-header-luxury .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--nova-green);
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 25px;
}

.section-header-luxury .eyebrow::before,
.section-header-luxury .eyebrow::after {
    content: '';
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(16, 185, 129, 0.5));
}

.section-header-luxury .eyebrow::after {
    background: linear-gradient(90deg,
            rgba(16, 185, 129, 0.5),
            transparent);
}

.section-header-luxury h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
}

.section-header-luxury .subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 550px;
    margin: 0 auto;
}

/* ========== ANIMATED COUNTER STATS ========== */

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px 40px;
    background: linear-gradient(135deg,
            rgba(16, 185, 129, 0.05) 0%,
            transparent 50%,
            rgba(16, 185, 129, 0.03) 100%);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.stats-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(16, 185, 129, 0.05) 0%,
            transparent 50%);
    animation: statsRotate 20s linear infinite;
}

@keyframes statsRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.stat-item-premium {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
}

.stat-item-premium .stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    color: var(--nova-green);
    transition: all 0.4s ease;
}

.stat-item-premium:hover .stat-icon {
    background: var(--nova-green);
    color: #000;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.stat-item-premium .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-item-premium .stat-number span {
    color: var(--nova-green);
}

.stat-item-premium .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== TESTIMONIAL CAROUSEL PREMIUM ========== */

.testimonial-premium {
    position: relative;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.03) 0%,
            rgba(16, 185, 129, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    overflow: hidden;
}

.testimonial-premium .quote-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    color: var(--nova-green);
    opacity: 0.5;
}

.testimonial-premium blockquote {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    font-style: italic;
}

.testimonial-premium .author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-premium .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--nova-green);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.testimonial-premium .author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.testimonial-premium .author-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-premium .stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 25px;
}

.testimonial-premium .stars svg {
    width: 20px;
    height: 20px;
    color: #fbbf24;
    fill: #fbbf24;
}

/* ========== WHY CHOOSE US - LUXURY ========== */

.why-card-luxury {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-card-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle,
            rgba(16, 185, 129, 0.2) 0%,
            transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s ease;
}

.why-card-luxury:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.why-card-luxury:hover::before {
    opacity: 1;
    width: 200px;
    height: 200px;
}

.why-card-luxury .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            rgba(16, 185, 129, 0.1) 0%,
            transparent 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    color: var(--nova-green);
    transition: all 0.5s ease;
}

.why-card-luxury:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--nova-green) 0%, #0d9668 100%);
    color: #000;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    border-color: transparent;
}

.why-card-luxury h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.why-card-luxury p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ========== FLOATING PARTICLES BACKGROUND ========== */

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--nova-green);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 20%;
    top: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 30%;
    top: 40%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 40%;
    top: 60%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    left: 50%;
    top: 30%;
    animation-delay: 3s;
}

.particle:nth-child(6) {
    left: 60%;
    top: 70%;
    animation-delay: 5s;
}

.particle:nth-child(7) {
    left: 70%;
    top: 50%;
    animation-delay: 2.5s;
}

.particle:nth-child(8) {
    left: 80%;
    top: 20%;
    animation-delay: 1.5s;
}

.particle:nth-child(9) {
    left: 90%;
    top: 60%;
    animation-delay: 3.5s;
}

.particle:nth-child(10) {
    left: 15%;
    top: 50%;
    animation-delay: 4.5s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.2;
    }

    25% {
        transform: translateY(-50px) translateX(20px) scale(1.5);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-20px) translateX(-15px) scale(1);
        opacity: 0.3;
    }

    75% {
        transform: translateY(-80px) translateX(10px) scale(1.2);
        opacity: 0.4;
    }
}

/* ========== PREMIUM PAGE HEADER ========== */

.page-header-premium {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    overflow: hidden;
}

.page-header-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
            rgba(16, 185, 129, 0.15) 0%,
            transparent 60%);
    transform: translate(-50%, -40%);
}

.page-header-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(0deg,
            var(--carbon-black) 0%,
            transparent 100%);
}

.page-header-premium .content {
    position: relative;
    z-index: 1;
}

.page-header-premium h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 25px;
}

.page-header-premium h1 span {
    background: linear-gradient(135deg,
            #10b981 0%,
            #34d399 30%,
            #6ee7b7 50%,
            #34d399 70%,
            #10b981 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.page-header-premium p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========== FILTERS BAR PREMIUM ========== */

.filters-bar-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 25px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    margin-bottom: 60px;
}

.filter-group-premium {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group-premium label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

.filter-group-premium select {
    padding: 12px 40px 12px 18px;
    font-size: 0.9rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: all 0.3s ease;
}

.filter-group-premium select:hover,
.filter-group-premium select:focus {
    border-color: var(--nova-green);
    background-color: rgba(16, 185, 129, 0.1);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
    outline: none;
}

/* ========== COMPARISON TABLE PREMIUM ========== */

.comparison-table-premium {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table-premium th {
    padding: 25px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(16, 185, 129, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table-premium td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.comparison-table-premium tr:hover td {
    background: rgba(16, 185, 129, 0.05);
}

.comparison-table-premium .model-name {
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

.comparison-table-premium .highlight {
    color: var(--nova-green);
    font-weight: 600;
}

/* ========== SCROLL INDICATOR PREMIUM ========== */

.scroll-indicator-premium {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

.scroll-indicator-premium .progress {
    height: 100%;
    background: linear-gradient(90deg,
            var(--nova-green),
            #34d399,
            #6ee7b7);
    width: 0%;
    transition: width 0.1s ease;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
    .product-card-cinematic {
        padding: 30px 25px;
    }

    .product-card-cinematic .product-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .section-header-luxury h2 {
        font-size: 2rem;
    }

    /* Full-bleed images on mobile too */
    .product-card-cinematic .product-image {
        height: 220px;
        padding: 0 !important;
        border-radius: 20px 20px 0 0;
    }

    .product-card-cinematic .product-image img,
    .product-card-cinematic .product-image picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 40%;
    }

    .product-card-cinematic .specs-grid {
        gap: 10px;
    }

    .product-card-cinematic .spec-value {
        font-size: 1.1rem;
    }

    .filters-bar-premium {
        flex-direction: column;
        padding: 20px;
    }
}

/* ========== ULTRA-PREMIUM GALLERY ========== */

.gallery-section-premium {
    padding: 120px 0;
    background: linear-gradient(180deg, #000 0%, #050505 100%);
    position: relative;
}

.gallery-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 1024px) {
    .gallery-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 640px) {
    .gallery-grid-premium {
        grid-template-columns: 1fr;
    }

    .gallery-item.featured {
        grid-column: span 1;
    }
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 50px 150px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--nova-green);
    color: #000;
    transform: rotate(90deg);
}

/* ========== DYNAMIC COLOR SELECTOR ========== */

.color-selector-premium {
    margin: 30px 0;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.color-options-premium {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.color-option-premium {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.color-option-premium:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.color-option-premium.active {
    border-color: var(--nova-green);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.color-option-premium.color-black {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
}

.color-option-premium.color-white {
    background: linear-gradient(145deg, #fff, #e0e0e0);
}

.color-option-premium.color-gray {
    background: linear-gradient(145deg, #c0c0c0, #a0a0a0);
}

.color-option-premium.color-green {
    background: linear-gradient(145deg, #10b981, #059669);
}

.color-option-premium.color-blue {
    background: linear-gradient(145deg, #3b82f6, #1d4ed8);
}

.color-option-premium.color-red {
    background: linear-gradient(145deg, #ef4444, #dc2626);
}

.color-option-premium.color-pink {
    background: linear-gradient(145deg, #f9a8d4, #ec4899);
}

.color-option-premium.color-mint {
    background: linear-gradient(145deg, #6ee7b7, #34d399);
}

.color-option-premium.color-gold {
    background: linear-gradient(145deg, #d4a574, #b8860b);
}

/* Thumbnail Strip */
.thumbnail-strip {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
}

.thumbnail-item {
    width: 80px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail-item.active {
    border-color: var(--nova-green);
    opacity: 1;
}

/* ========== GLOBAL MOBILE SCROLL INDICATOR FIX ========== */
/* Hide "Défiler" text on mobile to avoid overlap with floating stats */
@media (max-width: 767px) {
    .scroll-text {
        display: none !important;
    }
}