
        :root {
            /* Dark Blue Theme Colors */
            --primary-color: #4a90e2;
            --primary-dark: #2c5aa0;
            --primary-light: #6ba3f0;
            --secondary-color: #5dade2;
            --accent-color: #3498db;
            --dark-bg: #0a1929;
            --dark-surface: #132f4c;
            --dark-surface-light: #1e3a5f;
            --text-primary: #e8f4f8;
            --text-secondary: #b8d4e3;
            --text-muted: #8fa8b8;
            --gradient-primary: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
            --gradient-secondary: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
            --gradient-hero: linear-gradient(135deg, #0a1929 0%, #132f4c 50%, #1e3a5f 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            overflow-x: hidden !important;
            width: 100%;
            max-width: 100%;
            position: relative;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background-color: var(--dark-bg);
            color: var(--text-primary);
        }

        .navbar-brand {
            font-family: 'Orbitron', monospace;
            font-weight: 900;
            font-size: 1rem;
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: var(--primary-light) !important;
        }

        .navbar-brand img {
            height: 40px;
            width: auto;
            transition: all 0.3s ease;
        }

        .navbar-brand:hover img {
            transform: scale(1.05);
        }

        .navbar {
            background: rgba(10, 25, 41, 0.95) !important;
            /* Removed backdrop-filter blur for performance */
            /* backdrop-filter: blur(10px); */
            transition: background 0.2s ease, box-shadow 0.2s ease; /* Reduced transition properties */
            z-index: 1050 !important;
            border-bottom: 1px solid rgba(74, 144, 226, 0.2);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            width: 100%;
            max-width: 100vw;
            overflow: visible !important; /* Allow dropdown to overflow - width constraints prevent horizontal scroll */
        }
        
        .navbar .container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 100%;
            overflow: visible !important; /* Allow dropdown to overflow */
            position: relative; /* Ensure positioning context */
        }
        
        /* Language dropdown - ensure it can overflow navbar and appear above hero */
        .navbar .dropdown {
            position: relative; /* Bootstrap needs this for dropdown positioning */
            z-index: 2000 !important; /* High z-index for dropdown container */
        }
        
        .navbar .dropdown-menu {
            z-index: 9999 !important; /* Very high z-index to appear above everything */
            position: absolute !important;
            /* Ensure it's not clipped by parent overflow */
            transform: translateZ(0); /* Force hardware acceleration and new stacking context */
        }
        
        /* Ensure dropdown is visible when shown */
        .navbar .dropdown-menu.show {
            z-index: 9999 !important;
            display: block !important;
        }
        
        /* Ensure flex container doesn't clip dropdown */
        .navbar .d-flex {
            overflow: visible !important;
            position: relative; /* Positioning context */
        }
        
        /* Hero section - lower z-index so dropdown appears above */
        .hero-section {
            z-index: 1 !important;
            position: relative;
        }
        
        /* Mobile Navigation - Ensure proper layout */
        @media (max-width: 991.98px) {
            .navbar .container {
                display: flex;
                justify-content: space-between;
                align-items: center;
                flex-wrap: nowrap;
                padding: 0.5rem 1rem;
            }
            
            .navbar-brand {
                flex: 0 1 auto;
                font-size: 0.9rem !important;
                margin-right: auto;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                max-width: 50%;
            }
            
            .navbar .d-flex {
                flex: 0 0 auto;
                display: flex !important;
                align-items: center;
                gap: 0.25rem;
                margin-left: auto;
            }
            
            #cartLinkMobile {
                position: relative;
                padding: 0.5rem !important;
                margin: 0 !important;
            }
            
            #cartLinkMobile i {
                font-size: 1.25rem;
            }
            
            .navbar-toggler {
                padding: 0.5rem;
                border: 1px solid var(--primary-color);
                margin-left: 0.5rem;
            }
            
            .navbar-collapse {
                margin-top: 0.5rem;
            }
        }
        
        .navbar .navbar-nav .nav-link {
            color: var(--text-primary) !important;
            transition: none; /* Removed transition for better performance */
        }

        .navbar .navbar-nav .nav-link:hover {
            color: var(--primary-light) !important;
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2874, 144, 226, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .navbar-nav .nav-link {
            font-weight: 600;
            margin: 0 10px;
            position: relative;
            /* Removed transition for better scroll performance */
            font-size: 0.9rem;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            /* Removed transition for better scroll performance */
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        .logout-btn {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white !important;
            border-radius: 15px;
            padding: 4px 12px !important;
            margin-left: 10px;
            /* Removed transition for better scroll performance */
            position: relative;
            overflow: hidden;
            font-size: 0.8rem;
        }

        .logout-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
            transition: left 0.3s ease;
            z-index: 1;
        }

        .logout-btn:hover::before {
            left: 0;
        }

        .logout-btn:hover {
            /* Removed transform and box-shadow for better scroll performance */
            color: white !important;
        }

        .logout-btn span,
        .logout-btn i {
            position: relative;
            z-index: 2;
        }

        .logout-btn::after {
            display: none !important;
        }

        /* Hero Section - Dark Theme with Swiper */
        .hero-section {
            min-height: 100vh;
            background: var(--gradient-hero);
            position: relative;
            overflow: hidden;
            padding-top: 0;
            width: 100%;
            max-width: 100vw;
        }
        
        .hero-swiper {
            height: 100vh;
            width: 100%;
            max-width: 100vw;
        }
        
        .hero-slide {
            height: 100vh;
            background-size: cover;
            background-position: center;
            position: relative;
            width: 100%;
            max-width: 100vw;
        }
        
        .hero-slide-overlay {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(10, 25, 41, 0.85) 0%, rgba(19, 47, 76, 0.75) 100%);
            z-index: 1;
        }
        
        .hero-caption {
            position: absolute;
            top: 80px;
            bottom: auto;
            left: 50px;
            transform: none;
            z-index: 2;
            text-align: left;
            width: auto;
            max-width: 600px;
        }
        
        .hero-caption h1 {
            font-family: 'Orbitron', monospace;
            font-size: 4rem;
            font-weight: 900;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .hero-caption p {
            font-size: 1.5rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        }
        
        .hero-caption .btn {
            margin: 0.5rem;
        }
        
        /* Swiper Navigation Buttons */
        .hero-button-prev,
        .hero-button-next {
            color: white !important;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        
        .hero-button-prev:hover,
        .hero-button-next:hover {
            opacity: 1;
        }
        
        .hero-button-prev::after,
        .hero-button-next::after {
            font-size: 32px;
            font-weight: bold;
        }
        
        /* Swiper Pagination */
        .hero-pagination {
            bottom: 30px !important;
        }
        
        .hero-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--primary-color);
            opacity: 0.5;
        }
        
        .hero-pagination .swiper-pagination-bullet-active {
            opacity: 1;
            background-color: var(--primary-light);
        }
        
        @media (max-width: 768px) {
            .hero-caption {
                top: 60px;
                left: 30px;
                max-width: 85%;
            }
            .hero-caption h1 {
                font-size: 2.5rem;
            }
            .hero-caption p {
                font-size: 1.1rem;
            }
            
            /* Hide buttons on mobile/responsive view */
            .hero-caption .btn,
            .hero-caption .btn-custom {
                display: none !important;
            }
            .hero-caption .d-flex {
                display: none !important;
            }
        }

        .hero-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0);
            z-index: 2 !important;
            pointer-events: none;
        }

        /* Ensure video covers the entire viewport */
        .hero-video-background {
            position: absolute;
            top: 80px;
            right: 0;
            width: 50vw;
            height: calc(100vh - 80px);
            object-fit: contain;
            object-position: center top;
            z-index: 1 !important;
            opacity: 0.8;
            transition: opacity 0.5s ease;
            min-width: 50vw;
            min-height: calc(100vh - 80px);
            max-width: 50vw;
            max-height: none;
            border: none;
            outline: none;
            box-shadow: none;
        }

        /* Force video visibility */
        video.hero-video-background {
            display: block !important;
            visibility: visible !important;
            opacity: 0.8 !important;
            border: none !important;
            outline: none !important;
            box-shadow: none !important;
        }

        .hero-content {
            text-align: left;
            position: relative;
            z-index: 9998 !important;
            padding: 2rem 0;
        }

        .hero-content .d-flex img {
            height: 80px;
            width: auto;
            margin-right: 20px;
            filter: none !important;
            background: transparent !important;
            padding: 0 !important;
            border-radius: 0 !important;
            border: none !important;
            box-shadow: none !important;
            display: block !important;
            visibility: visible !important;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Hero content dark text styling - consolidated */
        .hero-content *,
        .hero-content h1,
        .hero-content p,
        .hero-content span,
        .hero-content div {
            color: #000000 !important;
            -webkit-text-fill-color: #000000 !important;
            text-shadow: none !important;
        }

        .hero-content h1 {
            font-family: 'Orbitron', monospace;
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            line-height: 1.2;
            background: #ffffff !important;
            padding: 15px 30px !important;
            border-radius: 15px !important;
            display: inline-block !important;
            border: 3px solid #000000 !important;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;
        }

        .hero-content p {
            font-size: 1.4rem;
            color: #000000 !important;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: none;
            font-weight: 700 !important;
            background: #ffffff !important;
            padding: 20px 30px !important;
            border-radius: 15px !important;
            display: inline-block !important;
            border: 2px solid #000000 !important;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;
            -webkit-text-fill-color: #000000 !important;
        }

        .btn-custom {
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            /* Removed transition for better scroll performance */
            position: relative;
            overflow: hidden;
            text-shadow: none;
            z-index: 9999 !important;
            pointer-events: auto !important;
            cursor: pointer !important;
        }

        .btn-primary-custom {
            background: var(--gradient-secondary) !important;
            color: #ffffff !important;
            box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4) !important;
            text-shadow: none;
            border: 2px solid var(--primary-color) !important;
            font-weight: 700 !important;
            font-size: 1.1rem !important;
            padding: 18px 35px !important;
            pointer-events: auto !important;
            cursor: pointer !important;
            z-index: 9999 !important;
        }

        .btn-primary-custom:hover {
            /* Removed transform for better scroll performance */
            box-shadow: 0 12px 35px rgba(74, 144, 226, 0.6) !important;
            color: #ffffff !important;
            background: var(--gradient-primary) !important;
            border-color: var(--primary-light) !important;
        }

        .btn-outline-custom {
            background: transparent !important;
            color: var(--text-primary) !important;
            border: 2px solid var(--primary-color) !important;
            box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2) !important;
            text-shadow: none;
            font-weight: 700 !important;
            font-size: 1.1rem !important;
            padding: 18px 35px !important;
            pointer-events: auto !important;
            cursor: pointer !important;
            z-index: 9999 !important;
        }

        .btn-outline-custom:hover {
            background: var(--primary-color) !important;
            color: #ffffff !important;
            /* Removed transform for better scroll performance */
            box-shadow: 0 12px 35px rgba(74, 144, 226, 0.5) !important;
            border-color: var(--primary-light) !important;
        }

        .btn-secondary-custom {
            background: linear-gradient(120deg, #f5a524, #f78b3a) !important;
            color: #0a1929 !important;
            border: 2px solid #f5a524 !important;
            box-shadow: 0 8px 25px rgba(245, 165, 36, 0.35) !important;
            font-weight: 700 !important;
            font-size: 1.05rem !important;
            padding: 18px 35px !important;
        }

        .btn-secondary-custom:hover {
            /* Removed transform for better scroll performance */
            box-shadow: 0 12px 35px rgba(245, 165, 36, 0.5) !important;
            filter: brightness(1.05);
        }

        .section-title {
            font-family: 'Orbitron', monospace;
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: var(--text-primary);
        }

        .category-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            transition: left 0.3s ease;
            z-index: 1;
        }

        .category-card:hover::before {
            left: 0;
        }


        .category-card .card-body {
            position: relative;
            z-index: 2;
        }

        .category-card:hover {
            /* Removed transform for better scroll performance */
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .category-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Product card base styles - dark theme version below overrides for shop section */

        .product-image {
            height: 300px;
            background: var(--gradient-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .product-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .product-card:hover .product-image::before {
            transform: translateX(100%);
        }

        .product-icon {
            font-size: 4rem;
            color: white;
        }

        .price-tag {
            background: var(--gradient-primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            position: absolute;
            top: 15px;
            right: 15px;
        }

        .features-section {
            background: var(--light-color);
            padding: 5rem 0;
        }

        .feature-item {
            text-align: center;
            padding: 2rem;
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Audience Cards - Who Needs This Section */
        .features-section .section-title {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        
        .features-section .title-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
        }
        
        .features-section .title-icon i {
            font-size: 1.5rem;
            color: #ffffff;
        }
        
        .audience-card {
            background: linear-gradient(145deg, var(--dark-surface) 0%, var(--dark-surface-light) 100%);
            border: 1px solid rgba(74, 144, 226, 0.3);
            border-radius: 20px;
            padding: 2rem;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .audience-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .audience-card:hover {
            /* Removed transform for better scroll performance */
            border-color: rgba(74, 144, 226, 0.6);
            box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2), 0 0 30px rgba(74, 144, 226, 0.1);
        }
        
        .audience-card:hover::before {
            opacity: 1;
        }
        
        .audience-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            margin: 0 auto 1.2rem auto;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(74, 144, 226, 0.35);
            /* Removed transition for better scroll performance */
        }
        
        .audience-icon i {
            font-size: 2.2rem;
            color: #ffffff;
            transition: transform 0.3s ease;
        }
        
        .audience-card:hover .audience-icon {
            /* Removed transform for better scroll performance */
            box-shadow: 0 12px 35px rgba(74, 144, 226, 0.5);
        }
        
        .audience-card:hover .audience-icon i {
            transform: scale(1.1);
        }
        
        .audience-title {
            color: var(--primary-light);
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 1.2rem;
            text-align: center;
            letter-spacing: 0.5px;
        }
        
        .audience-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .audience-features li {
            color: var(--text-primary);
            padding: 0.6rem 0;
            padding-left: 1.8rem;
            position: relative;
            font-size: 0.95rem;
            line-height: 1.5;
            border-bottom: 1px solid rgba(74, 144, 226, 0.1);
            transition: all 0.3s ease;
        }
        
        .audience-features li:last-child {
            border-bottom: none;
        }
        
        .audience-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-light);
            font-weight: bold;
            font-size: 1rem;
        }
        
        .audience-card:hover .audience-features li {
            padding-left: 2rem;
        }
        
        .audience-card:hover .audience-features li::before {
            color: var(--accent-color);
        }
        
        /* Disable audience hover effects on tablet/mobile */
        @media (max-width: 992px) {
            .audience-card:hover {
                transform: none;
                border-color: rgba(74, 144, 226, 0.3);
                box-shadow: none;
            }
            
            .audience-card:hover::before {
                opacity: 0;
            }
            
            .audience-card:hover .audience-icon {
                transform: none;
                box-shadow: 0 8px 25px rgba(74, 144, 226, 0.35);
            }
            
            .audience-card:hover .audience-icon i {
                transform: none;
            }
            
            .audience-card:hover .audience-features li {
                padding-left: 1.5rem;
            }
            
            .audience-card:hover .audience-features li::before {
                color: var(--primary-light);
            }
        }
        
        @media (max-width: 768px) {
            .audience-icon {
                width: 65px;
                height: 65px;
                border-radius: 16px;
            }
            
            .audience-icon i {
                font-size: 1.8rem;
            }
            
            .audience-title {
                font-size: 1.1rem;
            }
            
            .audience-features li {
                font-size: 0.9rem;
                padding: 0.5rem 0;
                padding-left: 1.5rem;
            }
            
            .features-section .title-icon {
                width: 40px;
                height: 40px;
                border-radius: 10px;
            }
            
            .features-section .title-icon i {
                font-size: 1.2rem;
            }
        }

        .newsletter-section {
            background: var(--gradient-primary);
            padding: 5rem 0;
            color: white;
        }

        .contact-section {
            background: var(--gradient-primary);
            padding: 5rem 0;
            color: white;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-control-custom {
            background: rgba(255,255,255,0.1);
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 50px;
            padding: 15px 25px;
            color: white;
            /* Removed backdrop-filter for better scroll performance */
        }

        .form-control-custom::placeholder {
            color: rgba(255,255,255,0.7);
        }

        .form-control-custom:focus {
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.5);
            box-shadow: none;
            color: white;
        }

        textarea.form-control-custom {
            border-radius: 20px;
            resize: vertical;
        }

        .footer {
            background: var(--dark-surface);
            color: var(--text-primary);
            padding: 3rem 0 1rem;
            border-top: 1px solid rgba(74, 144, 226, 0.2);
        }
        
        .footer h5, .footer h6 {
            color: var(--text-primary);
        }
        
        .footer a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer a:hover {
            color: var(--primary-light);
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--gradient-secondary);
            color: white;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            margin: 0 5px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            transform: translateY(-3px);
            background: var(--gradient-primary);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .shape {
            position: absolute;
            background: rgba(255,255,255,0.15);
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
            animation: float 15s ease-in-out infinite;
            /* Removed backdrop-filter for better scroll performance */
        }

        .shape:nth-child(1) {
            width: 20px;
            height: 20px;
            top: 20%;
            left: 15%;
            animation-delay: 0s;
            animation-duration: 18s;
        }

        .shape:nth-child(2) {
            width: 15px;
            height: 15px;
            top: 70%;
            right: 20%;
            animation-delay: 5s;
            animation-duration: 22s;
        }

        .shape:nth-child(3) {
            width: 25px;
            height: 25px;
            top: 40%;
            left: 80%;
            animation-delay: 10s;
            animation-duration: 20s;
        }

        .shape:nth-child(4) {
            width: 12px;
            height: 12px;
            top: 60%;
            left: 10%;
            animation-delay: 15s;
            animation-duration: 25s;
        }

        .shape:nth-child(5) {
            width: 18px;
            height: 18px;
            top: 25%;
            right: 10%;
            animation-delay: 8s;
            animation-duration: 19s;
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) translateX(0px) rotate(0deg);
                opacity: 0.4;
            }
            25% { 
                transform: translateY(-20px) translateX(15px) rotate(90deg);
                opacity: 0.7;
            }
            50% { 
                transform: translateY(-35px) translateX(-10px) rotate(180deg);
                opacity: 1;
            }
            75% { 
                transform: translateY(-15px) translateX(20px) rotate(270deg);
                opacity: 0.6;
            }
        }

        .stats-section {
            background: var(--gradient-primary);
            color: var(--text-primary);
            padding: 3rem 0;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            font-family: 'Orbitron', monospace;
            color: var(--primary-light);
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--text-secondary);
            opacity: 0.9;
        }

        /* Consolidated Responsive Styles - Removed duplicate media queries */
        @media (max-width: 1200px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .hero-content p {
                font-size: 1.1rem;
            }
            .navbar-brand {
                font-size: 0.85rem;
            }
            .navbar-nav .nav-link {
                font-size: 0.8rem;
                margin: 0 3px;
                padding: 0.25rem 0.5rem !important;
            }
            .logout-btn {
                padding: 2px 6px !important;
                font-size: 0.7rem;
                margin-left: 3px;
                border-radius: 12px;
            }
            .navbar-brand img {
                height: 32px;
            }
            .hero-content .d-flex {
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
            }
            .hero-content .d-flex img {
                height: 50px !important;
                margin-right: 0 !important;
                margin-bottom: 15px !important;
            }
            .hero-content .d-flex h1 {
                font-size: 2rem !important;
                text-align: center !important;
                margin: 0 !important;
                white-space: normal !important;
                word-break: keep-all !important;
            }
            .hero-image-container {
                padding: 15px;
            }
            .hero-main-image {
                max-height: 350px;
                max-width: 100%;
            }
            .hero-image-container::before,
            .hero-image-container::after {
                width: 40px;
                height: 40px;
            }
            .hero-image-container::before {
                top: -20px;
                right: -20px;
            }
            .hero-image-container::after {
                bottom: -20px;
                left: -20px;
            }
            .hero-section {
                padding-top: 70px;
                min-height: 100vh;
            }
            #products .product-details,
            .studio-showcase .studio-content,
            .studio-showcase .studio-description,
            #accessories .card-body {
                text-align: center;
            }
            .studio-showcase .studio-content .section-title {
                text-align: center !important;
            }
            .studio-showcase .studio-features {
                align-items: center;
            }
            .studio-showcase .studio-feature,
            #products .product-features .feature-item {
                justify-content: center;
                text-align: center;
                flex-direction: column;
                margin-bottom: 1.5rem;
            }
            .studio-showcase .studio-feature i,
            #products .product-features .feature-item i {
                margin-right: 0;
                margin-bottom: 8px;
            }
            #products .product-features .feature-item i {
                font-size: 1.5rem;
                color: var(--secondary-color);
            }
            #products .product-features {
                text-align: center;
            }
            #products .product-features .feature-item span {
                font-weight: 600;
                font-size: 1rem;
            }
            #products .product-actions {
                justify-content: center;
                text-align: center;
            }
            .product-card,
            .testimonial-card,
            .stat-item {
                margin-bottom: 1.5rem;
            }
            .product-image,
            .gallery-image,
            .lifestyle-image {
                height: 250px;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .hero-video-background {
                object-position: center;
                opacity: 0.4;
                filter: brightness(0.8) contrast(1.1);
            }
        }

        /* Removed duplicate - already defined in hero-content section above */

        .hero-image-container {
            position: relative;
            display: inline-block;
            padding: 20px;
        }

        .hero-main-image {
            max-width: 100%;
            height: auto;
            max-height: 500px;
            filter: brightness(1.1) contrast(1.1);
            position: relative;
            z-index: 3;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }

        .hero-main-image:hover {
            /* Removed transform for better scroll performance */
            box-shadow: 0 30px 80px rgba(0,0,0,0.4);
        }

        .hero-image-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 50%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
            /* Removed animation for better scroll performance */
        }

        @keyframes glowPulse {
            0%, 100% {
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                opacity: 0.8;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }

        /* Add floating elements around the image */
        .hero-image-container::before,
        .hero-image-container::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            z-index: 2;
            /* Removed animation for better scroll performance */
        }

        .hero-image-container::before {
            top: -30px;
            right: -30px;
            animation-delay: 0s;
        }

        .hero-image-container::after {
            bottom: -30px;
            left: -30px;
            animation-delay: 4s;
        }

        @keyframes floatAround {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.3;
            }
            25% {
                transform: translateY(-20px) rotate(90deg);
                opacity: 0.6;
            }
            50% {
                transform: translateY(-10px) rotate(180deg);
                opacity: 0.4;
            }
            75% {
                transform: translateY(-30px) rotate(270deg);
                opacity: 0.7;
            }
        }

        /* Product Showcase Styles */
        .product-showcase {
            position: relative;
            text-align: center;
        }

        .product-showcase-image {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }

        .product-showcase-image:hover {
            /* Removed transform for better scroll performance */
            box-shadow: 0 30px 80px rgba(0,0,0,0.3);
        }

        .product-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gradient-secondary);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .product-details {
            padding: 2rem;
        }

        .product-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .product-price {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .product-description {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: #e4e4e4;
        }

        .product-features {
            margin-bottom: 2rem;
        }

        .product-features .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            text-align: left;
        }

        .product-features .feature-item i {
            color: var(--secondary-color);
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        .product-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* App Section Styles */
        .app-content {
            padding: 2rem 0;
        }

        .app-description {
            font-size: 1.2rem;
            line-height: 1.8;
            opacity: 0.9;
        }

        .app-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .app-feature {
            display: flex;
            align-items: center;
            padding: 1rem;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .app-feature i {
            margin-right: 1rem;
            font-size: 1.5rem;
            color: var(--secondary-color);
        }

        .app-downloads {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .app-mockup {
            position: relative;
            display: inline-block;
            padding: 20px;
        }

        .app-screenshot {
            max-width: 100%;
            height: auto;
            max-height: 500px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            position: relative;
            z-index: 2;
        }

        .app-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 50%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
            /* Removed animation for better scroll performance */
        }

        @keyframes appGlow {
            0%, 100% {
                opacity: 0.3;
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                opacity: 0.6;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }

        /* Lifestyle Section Styles */
        .lifestyle-section {
            background: var(--light-color);
            padding: 5rem 0;
        }

        .lifestyle-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: none;
            position: relative;
            height: 100%;
        }

        .lifestyle-card:hover {
            /* Removed transform for better scroll performance */
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .lifestyle-image {
            width: 100%;
            height: 350px;
            object-fit: cover;
            position: relative;
            overflow: hidden;
        }

        .lifestyle-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        }

        .lifestyle-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            color: white;
            z-index: 2;
        }

        .lifestyle-content h4 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .lifestyle-content p {
            font-size: 1rem;
            opacity: 0.9;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        /* Product Details Section Styles */
        .product-details-section {
            padding: 5rem 0;
        }

        .details-content {
            padding: 2rem;
        }

        .details-content h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .detail-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .detail-item i {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-right: 15px;
        }

        .detail-item h5 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .detail-item p {
            font-size: 1rem;
            color: #ffffff;
            line-height: 1.6;
        }

        .details-image {
            position: relative;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        
        @media (max-width: 992px) {
            .details-image {
                padding: 15px 10px;
            }
        }
        
        @media (max-width: 576px) {
            .details-image {
                padding: 10px 5px;
            }
        }

        .detail-showcase {
            max-width: 100%;
            width: 100%;
            height: auto;
            max-height: 500px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            display: block;
            margin: 0 auto;
            object-fit: cover;
        }

        .detail-showcase:hover {
            /* Removed transform for better scroll performance */
            box-shadow: 0 30px 80px rgba(0,0,0,0.3);
        }
        
        /* Responsive detail-showcase image */
        @media (max-width: 992px) {
            .detail-showcase {
                max-height: 400px;
                border-radius: 15px;
            }
            
            .detail-showcase:hover {
                transform: none;
            }
        }
        
        @media (max-width: 768px) {
            .detail-showcase {
                max-height: 350px;
                border-radius: 12px;
            }
        }
        
        @media (max-width: 576px) {
            .detail-showcase {
                max-height: 300px;
                border-radius: 10px;
            }
        }
        
        @media (max-width: 480px) {
            .detail-showcase {
                max-height: 280px;
                border-radius: 10px;
            }
        }
        
        @media (max-width: 375px) {
            .detail-showcase {
                max-height: 250px;
                border-radius: 8px;
            }
        }

        .size-guide {
            position: absolute;
            top: 371px;
            left: 306px;
            background: rgba(0,0,0,0.8);
            padding: 15px 25px;
            border-radius: 20px;
            /* Removed backdrop-filter for better scroll performance */
            z-index: 2;
            text-align: center;
            min-width: 280px;
        }

        .size-guide h5 {
            font-size: 1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 10px;
        }

        .size-btn:hover {
            background: white;
            color: var(--primary-color);
        }

        .size-buttons {
            display: flex;
            gap: 10px;
        }

        .size-btn {
            padding: 8px 15px;
            border: 2px solid white;
            border-radius: 20px;
            background: transparent;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }


        .size-btn.active {
            background: white;
            color: var(--primary-color);
            /* Removed transform for better scroll performance */
        }

        /* Size Guide Responsive Styles */
        @media (max-width: 992px) {
            .size-guide {
                position: relative;
                top: auto;
                left: auto;
                min-width: auto;
                width: 100%;
                margin-top: 1rem;
                padding: 12px 15px;
            }
            
            .size-guide h5 {
                font-size: 0.8rem;
                margin-bottom: 8px;
                word-wrap: break-word;
                line-height: 1.3;
            }
            
            .size-buttons {
                flex-wrap: wrap;
                justify-content: center;
                gap: 8px;
            }
            
            .size-btn {
                padding: 6px 12px;
                font-size: 0.85rem;
            }
        }
        
        @media (max-width: 768px) {
            .size-guide {
                padding: 10px 12px;
                border-radius: 12px;
                margin-top: 0.75rem;
            }
            
            .size-guide h5 {
                font-size: 0.75rem;
                margin-bottom: 6px;
            }
            
            .size-buttons {
                gap: 6px;
            }
            
            .size-btn {
                padding: 5px 10px;
                font-size: 0.8rem;
                border-width: 1.5px;
            }
        }
        
        @media (max-width: 576px) {
            .size-guide {
                padding: 8px 10px;
                border-radius: 10px;
                margin-top: 0.5rem;
            }
            
            .size-guide h5 {
                font-size: 0.7rem;
                margin-bottom: 5px;
                word-wrap: break-word;
                line-height: 1.2;
            }
            
            .size-buttons {
                gap: 5px;
            }
            
            .size-btn {
                padding: 4px 8px;
                font-size: 0.7rem;
                border-width: 1.5px;
                border-radius: 12px;
            }
        }
        
        /* iPhone 16 Pro Max and similar large phones (430px width) */
        @media (max-width: 480px) {
            .size-guide {
                padding: 8px 8px;
                border-radius: 10px;
            }
            
            .size-guide h5 {
                font-size: 0.65rem;
                margin-bottom: 4px;
            }
            
            .size-buttons {
                gap: 4px;
            }
            
            .size-btn {
                padding: 4px 7px;
                font-size: 0.65rem;
                border-width: 1px;
                border-radius: 10px;
                min-width: 28px;
            }
        }
        
        /* Smaller phones (iPhone SE, etc.) */
        @media (max-width: 375px) {
            .size-guide {
                padding: 6px 6px;
            }
            
            .size-guide h5 {
                font-size: 0.6rem;
                margin-bottom: 3px;
            }
            
            .size-buttons {
                gap: 3px;
            }
            
            .size-btn {
                padding: 3px 5px;
                font-size: 0.6rem;
                min-width: 24px;
            }
        }

        /* Product Gallery Styles */
        .product-gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .product-gallery-item:hover {
            /* Removed transform for better scroll performance */
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .gallery-image {
            width: 100%;
            height: 350px;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            /* Removed transition for better scroll performance */
        }

        .product-gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay h5 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .gallery-overlay p {
            font-size: 1rem;
            opacity: 0.9;
        }

        .featured-gallery {
            position: relative;
        }

        .featured-gallery .gallery-image {
            height: 400px;
        }

        .featured-gallery .gallery-overlay {
            background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3));
            padding: 30px;
        }

        .featured-gallery .gallery-overlay h5 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .featured-gallery .gallery-overlay p {
            font-size: 1.2rem;
            line-height: 1.6;
        }

        .featured-gallery::before {
            content: 'FEATURED';
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--gradient-secondary);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            z-index: 3;
        }

        /* Responsive: Always show gallery overlay on tablet/mobile */
        @media (max-width: 992px) {
            .gallery-overlay {
                transform: translateY(0) !important;
                opacity: 1 !important;
            }
            
            .product-gallery-item:hover .gallery-overlay {
                transform: translateY(0) !important;
            }
            
            .product-gallery-item:hover img {
                transform: none !important;
            }
            
            .featured-gallery .gallery-overlay {
                transform: translateY(0) !important;
                opacity: 1 !important;
            }
        }

        /* Testimonials Styles */
        .testimonial-card {
            background: rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 2rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
            height: 100%;
        }

        .testimonial-card:hover {
            /* Removed transform for better scroll performance */
            background: rgba(255,255,255,0.15);
        }

        .testimonial-content {
            text-align: center;
        }

        .stars {
            margin-bottom: 1rem;
        }

        .stars i {
            color: #ffd700;
            font-size: 1.2rem;
            margin: 0 2px;
        }

        .testimonial-content p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            color: white;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid rgba(255,255,255,0.3);
        }

        .testimonial-author h5 {
            color: white;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .testimonial-author span {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
        }

        /* Studio Showcase Styles */
        .studio-showcase {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .studio-content {
            padding: 2rem 0;
        }

        .studio-content .section-title {
            text-align: left;
            margin-bottom: 1.5rem;
        }

        .studio-description {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #e4e4e4;
            margin-bottom: 2rem;
        }

        .studio-features {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .studio-feature {
            display: flex;
            align-items: center;
            padding: 1rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            width: 100%;
            min-height: 80px;
            justify-content: flex-start;
        }

        .studio-feature:hover {
            /* Removed transform for better scroll performance */
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .studio-feature i {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-right: 15px;
            width: 30px;
            text-align: center;
        }

        .studio-feature span {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark-color);
        }

        .studio-image-container {
            position: relative;
            text-align: center;
            padding: 20px;
        }

        .studio-image {
            max-width: 100%;
            height: auto;
            max-height: 600px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .studio-image:hover {
            /* Removed transform for better scroll performance */
            box-shadow: 0 30px 80px rgba(0,0,0,0.3);
        }

        .studio-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 50%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
            /* Removed animation for better scroll performance */
        }

        @keyframes studioGlow {
            0%, 100% {
                opacity: 0.3;
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                opacity: 0.6;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }

        /* Improve readability of testimonials section heading */
        .testimonials-section .section-title {
            color: #fff !important;
            text-shadow: 0 2px 8px rgba(0,0,0,0.25), 0 1px 0 #333;
            -webkit-text-fill-color: unset !important;
        }

        /* Improve readability of SOCIAL WEAR App section heading */
        #digital .section-title {
            color: #fff !important;
            text-shadow: 0 2px 8px rgba(0,0,0,0.25), 0 1px 0 #333;
            -webkit-text-fill-color: unset !important;
        }

        @media (max-width: 768px) {
            .footer {
                padding: 1.5rem 0 1rem;
            }
            .footer .row {
                flex-direction: column !important;
            }
            .footer .row > div {
                width: 100% !important;
                text-align: center !important;
                margin-bottom: 1.5rem;
            }
            .footer .d-flex {
                flex-direction: column !important;
                align-items: center !important;
                justify-content: center !important;
                margin-bottom: 1rem;
                text-align: center !important;
            }
            .footer .d-flex img {
                margin-right: 0 !important;
                margin-bottom: 10px !important;
                display: block !important;
                margin-left: auto !important;
                margin-right: auto !important;
                height: 35px !important;
                width: auto !important;
            }
            .footer .d-flex h5 {
                margin: 0 !important;
                text-align: center !important;
                width: 100% !important;
            }
            .footer ul {
                padding-left: 0;
                margin-bottom: 1rem;
            }
            .footer ul li {
                margin-bottom: 0.5rem;
            }
            .footer ul li a {
                font-size: 0.95rem;
                color: rgba(255,255,255,0.85) !important;
                display: inline-block;
                padding: 6px 0;
            }
            .footer .social-links {
                text-align: center !important;
                margin-top: 1rem;
                margin-bottom: 1rem;
            }
            .footer .social-links a {
                margin: 0 8px;
                width: 38px;
                height: 38px;
                line-height: 38px;
                font-size: 1.2rem;
            }
            .footer hr {
                margin: 1.5rem 0;
            }
            .footer .align-items-center {
                flex-direction: column !important;
                text-align: center !important;
            }
            .footer .align-items-center > div {
                width: 100% !important;
                margin-bottom: 0.5rem;
            }
            .footer img[alt="Payment Methods"] {
                display: block;
                margin: 0.5rem auto 0 auto;
                height: 22px;
            }
            .footer p, .footer small {
                font-size: 0.95rem;
            }
        }

        /* Product features mobile improvements */
        #products .product-features {
            text-align: center;
        }
        
        #products .product-features .feature-item {
            justify-content: center;
            text-align: center;
            flex-direction: column;
            margin-bottom: 1.5rem;
        }
        
        #products .product-features .feature-item i {
            margin-right: 0;
            margin-bottom: 8px;
            font-size: 1.5rem;
            color: var(--secondary-color);
        }
        
        #products .product-features .feature-item span {
            font-weight: 600;
            font-size: 1rem;
        }
        
        #products .product-actions {
            justify-content: center;
            text-align: center;
        }

        /* Removed duplicate html/body styles - already defined above */
        
        .container, .container-fluid {
            max-width: 100% !important;
            padding-left: 15px !important;
            padding-right: 15px !important;
            overflow-x: hidden !important;
        }
        
        .row {
            margin-left: 0 !important;
            margin-right: 0 !important;
            max-width: 100% !important;
            overflow-x: hidden !important;
        }
        
        /* Prevent any element from causing horizontal scroll */
        section, div, img, video {
            max-width: 100% !important;
            box-sizing: border-box;
        }
        
        /* Ensure hero section doesn't overflow */
        .hero-section {
            width: 100% !important;
            max-width: 100vw !important;
            overflow-x: hidden !important;
        }
        
        .carousel, .carousel-inner {
            width: 100% !important;
            max-width: 100vw !important;
            overflow-x: hidden !important;
        }
        
        /* Fix any potential overflow issues */
        .hero-main-image, .product-showcase-image, .studio-image, .gallery-image {
            max-width: 100% !important;
            height: auto !important;
        }

        /* Mobile video background optimizations - consolidated */
        @media (max-width: 768px) {
            .hero-video-background {
                object-position: center top;
                object-fit: contain;
                opacity: 0.7;
                width: 100vw;
                height: calc(100vh - 80px);
                min-width: 100vw;
                min-height: calc(100vh - 80px);
                top: 80px;
                filter: brightness(0.9) contrast(1.05);
            }
        }

        @media (max-width: 480px) {
            .hero-video-background {
                display: block !important;
                opacity: 0.6;
            }
            .hero-video-overlay {
                background: rgba(255, 255, 255, 0);
            }
        }

        /* Hover effect to increase video visibility */
        .hero-section:hover .hero-video-background {
            opacity: 0.8;
        }

        /* Focus states for accessibility */
        .hero-section:focus-within .hero-video-background {
            opacity: 0.7;
        }
        
        /* Shop Section Styles - Dark Theme */
        .shop-section {
            background-color: var(--dark-surface);
            padding: 5rem 0;
            overflow: visible !important;
            overflow-y: visible !important;
            overflow-x: hidden !important;
            height: auto !important;
            max-height: none !important;
        }
        
        /* Prevent shop section container from having scrollbar */
        #shopProducts {
            overflow: visible !important;
            overflow-y: visible !important;
            overflow-x: hidden !important;
            height: auto !important;
            max-height: none !important;
        }
        
        /* Ensure shop section container doesn't trap scroll */
        #shop .container {
            overflow: visible !important;
            overflow-y: visible !important;
            overflow-x: hidden !important;
        }
        
        /* Mobile-specific: Force shop section to not have scrollbar */
        @media (max-width: 768px) {
            #shop,
            #shop.shop-section,
            #shopProducts,
            #shop .container,
            #shop .row,
            section#shop {
                overflow: visible !important;
                overflow-y: visible !important;
                overflow-x: hidden !important;
                height: auto !important;
                max-height: none !important;
                position: relative !important;
            }
            
            /* Override section overflow on mobile for shop - more specific */
            section#shop.shop-section {
                overflow: visible !important;
                overflow-y: visible !important;
            }
            
            /* Ensure no scrollbar appears on any shop-related element */
            #shop * {
                overflow-x: hidden !important;
            }
            
            /* Prevent product card scrollbars on mobile */
            .product-card,
            .product-card .card-body {
                overflow: hidden !important;
            }
        }
        
        .product-card {
            background: var(--dark-surface-light);
            border: 1px solid rgba(74, 144, 226, 0.2);
            border-radius: 15px;
            overflow: hidden !important;
            overflow-y: hidden !important;
            overflow-x: hidden !important;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            /* Prevent focus-related scrollbar issues */
            -webkit-overflow-scrolling: auto;
        }
        
        
        .product-card:hover {
            /* Removed transform for better scroll performance */
            box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
            border-color: var(--primary-color);
        }
        
        /* Discount Badge - Red Ribbon Style */
        .discount-badge {
            position: absolute;
            top: 15px;
            left: -5px;
            z-index: 10;
            background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
            color: white;
            padding: 8px 15px;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(229, 57, 53, 0.5);
            clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
            pointer-events: none; /* Allow clicks to pass through to image */
        }
        
        .discount-badge::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 8px 0 0 5px;
            border-color: transparent transparent transparent #8d1a1a;
        }
        
        .discount-badge span {
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        /* Discount badge in modal - adjust positioning */
        .modal-hero .discount-badge {
            top: 60px;
            z-index: 15;
        }
        
        /* Ensure media badge doesn't conflict */
        .modal-hero .media-badge {
            z-index: 14;
        }
        
        @media (max-width: 768px) {
            .discount-badge {
                padding: 6px 12px;
                font-size: 0.8rem;
            }
            .modal-hero .discount-badge {
                top: 50px;
                font-size: 0.75rem;
                padding: 6px 10px;
            }
        }
        
        .product-card img,
        .product-card .card-img-top {
            width: 100%;
            max-width: 100%;
            height: 360px;
            object-fit: cover;
            object-position: center 30%;
            display: block;
            cursor: pointer;
            /* Removed transition for better scroll performance */
        }
        
        .product-card img:hover,
        .product-card .card-img-top:hover {
            /* Removed transform for better scroll performance */
            opacity: 0.9;
        }

        /* Slightly reduce image height on smaller screens to keep cards balanced */
        @media (max-width: 768px) {
            .product-card img,
            .product-card .card-img-top {
                height: 300px;
                object-fit: cover;
                object-position: center 30%;
            }
        }
        
        /* Extra small screens - ensure images fit well */
        @media (max-width: 576px) {
            .product-card img,
            .product-card .card-img-top {
                height: 280px;
                object-fit: cover;
                object-position: center 30%;
            }
        }
        
        .product-card .card-body {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            background: var(--dark-surface-light);
        }
        
        .product-card .card-title {
            /* Prevent text selection issues on mobile that can cause scrollbar problems */
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            cursor: pointer;
            color: var(--text-primary);
            font-weight: 700;
            margin-bottom: 0.75rem;
        }
        
        .product-card .card-text {
            /* Prevent text selection issues on mobile that can cause scrollbar problems */
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            cursor: pointer;
            color: var(--text-secondary);
            flex-grow: 1;
            margin-bottom: 1rem;
        }
        
        .product-price {
            color: var(--primary-light);
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        /* Cart Section Styles */
        .cart-section {
            background-color: var(--dark-surface);
            padding: 5rem 0;
            min-height: 60vh;
        }
        
        .cart-item {
            background: var(--dark-surface-light);
            border: 1px solid rgba(74, 144, 226, 0.2);
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .cart-item img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 8px;
        }
        
        .cart-summary {
            background: var(--dark-surface-light);
            border: 1px solid rgba(74, 144, 226, 0.2);
            border-radius: 10px;
            padding: 2rem;
            position: sticky;
            top: 100px;
        }
        
        .cart-summary h4 {
            color: var(--text-primary);
            margin-bottom: 1.5rem;
        }
        
        .cart-summary .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            color: var(--text-secondary);
        }
        
        .cart-summary .summary-total {
            border-top: 2px solid var(--primary-color);
            padding-top: 1rem;
            margin-top: 1rem;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
        }
        
        /* Checkout Section Styles */
        .checkout-section {
            background-color: var(--dark-surface);
            padding: 5rem 0;
            min-height: 80vh;
        }
        
        .checkout-form {
            background: var(--dark-surface-light);
            border: 1px solid rgba(74, 144, 226, 0.2);
            border-radius: 15px;
            padding: 2rem;
        }
        
        .checkout-form .form-label {
            color: var(--text-primary);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .checkout-form .form-control,
        .checkout-form .form-select {
            background-color: var(--dark-bg);
            border: 1px solid rgba(74, 144, 226, 0.3);
            color: var(--text-primary);
            padding: 0.75rem;
        }
        
        .checkout-form .form-control:focus,
        .checkout-form .form-select:focus {
            background-color: var(--dark-bg);
            border-color: var(--primary-color);
            color: var(--text-primary);
            box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
        }
        
        .checkout-form .form-control::placeholder {
            color: var(--text-muted);
        }
        
        .order-summary {
            background: var(--dark-surface-light);
            border: 1px solid rgba(74, 144, 226, 0.2);
            border-radius: 15px;
            padding: 2rem;
        }
        
        /* Cart Badge in Navbar */
        .cart-badge {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .cart-badge .badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--primary-color);
            color: white;
            width: 20px;
            height: 20px;
            min-width: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.25rem;
            border: 2px solid var(--dark-bg);
        }
        
        /* Empty Cart Message */
        .empty-cart {
            text-align: center;
            padding: 3rem;
            color: var(--text-secondary);
        }
        
        .empty-cart i {
            font-size: 4rem;
            margin-bottom: 1rem;
            color: var(--text-muted);
        }
        
        /* Quantity Input */
        .quantity-input {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .quantity-input button {
            background: var(--primary-color);
            color: white;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .quantity-input button:hover {
            background: var(--primary-light);
        }
        
        .quantity-input input {
            width: 60px;
            text-align: center;
            background: var(--dark-bg);
            border: 1px solid rgba(74, 144, 226, 0.3);
            color: var(--text-primary);
            border-radius: 5px;
            padding: 0.5rem;
        }
        
        /* Section Backgrounds for Dark Theme */
        section {
            background-color: var(--dark-bg);
            color: var(--text-primary);
        }
        
        .bg-light {
            background-color: var(--dark-surface) !important;
        }
        
        .card {
            background-color: var(--dark-surface-light);
            border-color: rgba(74, 144, 226, 0.2);
            color: var(--text-primary);
        }
        
        .text-muted {
            color: var(--text-muted) !important;
        }

        /* Modal tweaks for dark theme */
        .modal-content {
            background: var(--dark-surface);
            color: var(--text-primary);
            border: 1px solid rgba(74,144,226,0.2);
            /* Reduced box-shadow for better scroll performance */
            box-shadow: 0 10px 30px rgba(0,0,0,0.6);
        }
        .modal-header {
            border-bottom: 1px solid rgba(74,144,226,0.25);
            position: relative;
            padding: 1rem 1.5rem;
        }
        
        /* Left Close Button for Product Modal */
        .btn-modal-close-left {
            background: rgba(74, 144, 226, 0.2) !important;
            border: 2px solid rgba(74, 144, 226, 0.4) !important;
            border-radius: 50% !important;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary) !important;
            padding: 0 !important;
            transition: all 0.3s ease;
            cursor: pointer;
            z-index: 1051;
            position: relative;
        }
        
        .btn-modal-close-left i {
            font-size: 1.2rem;
            color: var(--text-primary);
            transition: all 0.3s ease;
        }
        
        .btn-modal-close-left:hover {
            background: rgba(74, 144, 226, 0.4) !important;
            border-color: var(--primary-color) !important;
            /* Removed transform for better scroll performance */
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.5);
        }
        
        .btn-modal-close-left:hover i {
            color: var(--primary-light);
            transform: scale(1.1);
        }
        
        
        /* Right Close Button for Product Modal */
        .btn-modal-close-right {
            background: rgba(74, 144, 226, 0.2) !important;
            border: 2px solid rgba(74, 144, 226, 0.4) !important;
            border-radius: 50% !important;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary) !important;
            padding: 0 !important;
            transition: all 0.3s ease;
            cursor: pointer;
            z-index: 1051;
            position: relative;
        }
        
        .btn-modal-close-right i {
            font-size: 1.2rem;
            color: var(--text-primary);
            transition: all 0.3s ease;
        }
        
        .btn-modal-close-right:hover {
            background: rgba(74, 144, 226, 0.4) !important;
            border-color: var(--primary-color) !important;
            /* Removed transform for better scroll performance */
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.5);
        }
        
        .btn-modal-close-right:hover i {
            color: var(--primary-light);
            transform: scale(1.1);
        }
        
        .modal-footer {
            border-top: 1px solid rgba(74,144,226,0.25);
        }
        .product-modal {
            background: radial-gradient(circle at 10% 10%, rgba(74,144,226,0.08), transparent 35%),
                        radial-gradient(circle at 90% 0%, rgba(52,152,219,0.08), transparent 30%),
                        var(--dark-surface);
            border-radius: 18px;
            overflow: hidden;
        }
        
        /* Ensure body scroll is not locked after modal closes */
        body:not(.modal-open) {
            overflow-y: auto !important;
            overflow-x: hidden !important;
            padding-right: 0 !important;
            position: relative !important;
        }
        
        /* Prevent modal backdrop from blocking scroll */
        .modal-backdrop {
            z-index: 1040;
        }
        
        /* Ensure modal doesn't prevent page scrolling when closed */
        .modal.fade:not(.show) {
            pointer-events: none;
        }
        
        /* Remove focus trap from closed modal */
        .modal:not(.show) {
            pointer-events: none;
        }
        
        .modal:not(.show) * {
            pointer-events: none;
        }
        
        /* Ensure body can receive focus after modal closes */
        body:focus {
            outline: none;
        }
        
        body:not(.modal-open) {
            position: relative;
        }
        
        /* Fix for modal body scrollbar issue on mobile */
        #productModalBody {
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }
        
        /* Ensure html element is also scrollable after modal closes */
        html {
            overflow-y: auto !important;
            overflow-x: hidden !important;
            height: auto !important;
        }
        
        /* Mobile-specific: ensure page can scroll after modal */
        @media (max-width: 768px) {
            body:not(.modal-open) {
                overflow-y: auto !important;
                overflow-x: hidden !important;
                position: relative !important;
                height: auto !important;
            }
            
            html {
                overflow-y: auto !important;
                overflow-x: hidden !important;
                height: auto !important;
            }
        }
        .modal-hero {
            position: relative;
            height: 100%;
            min-height: 420px;
            background: linear-gradient(135deg, rgba(74,144,226,0.12), rgba(10,25,41,0.85));
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .modal-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            -webkit-user-select: none;
            user-select: none;
            -webkit-touch-callout: none;
            touch-action: pan-y pinch-zoom;
            /* Removed will-change for better scroll performance */
        }
        
        /* Swiper.js styling for product modal */
        .modal-image-swiper {
            width: 100%;
            height: 100%;
        }
        
        .modal-image-swiper .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-image-swiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            -webkit-user-select: none;
            user-select: none;
            -webkit-touch-callout: none;
        }
        
        .modal-image-swiper .swiper-pagination {
            bottom: 50px !important;
        }
        
        .modal-image-swiper .swiper-pagination-bullet {
            background: rgba(255, 255, 255, 0.5);
            opacity: 1;
        }
        
        .modal-image-swiper .swiper-pagination-bullet-active {
            background: var(--primary-color);
        }
        
        @media (max-width: 768px) {
            .modal-image-swiper .swiper-pagination {
                bottom: 40px !important;
            }
        }
        
        /* Improve touch interaction for mobile */
        #modalMainImage {
            cursor: grab;
            -webkit-user-select: none;
            user-select: none;
            -webkit-tap-highlight-color: transparent;
            position: relative;
            z-index: 2;
            /* Removed transition for better scroll performance */
        }
        
        #modalMainImage:active {
            cursor: grabbing;
        }
        
        @media (max-width: 768px) {
            #modalMainImage {
                touch-action: pan-y pinch-zoom;
            }
            
            .modal-hero {
                touch-action: pan-y pinch-zoom;
            }
        }
        .modal-hero .media-badge {
            position: absolute;
            top: 18px;
            left: 18px;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(0,0,0,0.55);
            color: #fff;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .modal-hero .media-badge i {
            color: var(--primary-color);
        }
        .modal-details {
            padding: 2.5rem;
            max-height: 90vh;
            overflow-y: auto;
        }
        .modal-topline {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 1rem;
        }
        .modal-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 999px;
            font-size: 0.85rem;
            border: 1px solid rgba(74,144,226,0.35);
            color: var(--text-secondary);
            background: rgba(74,144,226,0.08);
        }
        .price-stack {
            display: flex;
            align-items: baseline;
            gap: 15px;
            margin: 0.5rem 0 1.5rem;
        }
        .price-stack .price-main {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-light);
        }
        .price-stack .price-original {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-muted);
            text-decoration: line-through;
        }
        .price-stack .price-note {
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .detail-subtext {
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }
        .modal-feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 0.75rem 1rem;
            margin: 1.25rem 0;
        }
        .modal-feature-list li {
            list-style: none;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: var(--text-primary);
        }
        .modal-feature-list li i {
            color: #28a745;
            margin-top: 3px;
            font-size: 1rem;
        }
        .modal-feature-list li i.fa-check-circle {
            color: #28a745;
        }
        .support-box {
            border: 1px solid rgba(74,144,226,0.25);
            border-radius: 12px;
            padding: 12px 14px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 8px;
            background: rgba(10,25,41,0.7);
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .support-box span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .modal-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            margin-top: 1.25rem;
        }
        .modal-actions .btn {
            flex: 1;
            min-width: 160px;
        }
        .secure-note {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 6px;
        }
        @media (max-width: 768px) {
            .modal-details {
                padding: 1.5rem;
                max-height: none;
            }
            .modal-hero {
                min-height: 300px;
            }
            .modal-actions {
                flex-direction: column;
            }
            .key-features-tabs .nav-link {
                padding: 0.5rem 0.75rem;
                font-size: 0.9rem;
            }
            .related-product-card {
                margin-bottom: 1rem;
            }
            .btn-modal-close-left,
            .btn-modal-close-right {
                width: 40px;
                height: 40px;
            }
            .btn-modal-close-left i,
            .btn-modal-close-right i {
                font-size: 1rem;
            }
            .modal-header {
                padding: 0.75rem 1rem;
            }
        }
        .form-select,
        .form-control.modal-control {
            background: var(--dark-bg);
            border: 1px solid rgba(74,144,226,0.3);
            color: var(--text-primary);
            padding: 0.75rem;
        }
        .form-label {
            color: var(--text-primary);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        .product-code-input {
            font-size: 1.8rem !important;
            font-weight: 700 !important;
            text-transform: uppercase !important;
            letter-spacing: 0.2em !important;
            text-align: center !important;
            font-family: 'Courier New', monospace;
            line-height: 1.2 !important;
            vertical-align: middle !important;
            display: inline-block !important;
            padding-top: 0.875rem !important;
            padding-bottom: 0.875rem !important;
        }
        .product-code-input::placeholder {
            text-transform: none;
            letter-spacing: normal;
            font-size: 1rem;
            opacity: 0.6;
            line-height: normal;
        }
        @media (max-width: 768px) {
            .product-code-input {
                font-size: 1.5rem !important;
                line-height: 1.3 !important;
                padding-top: 0.75rem !important;
                padding-bottom: 0.75rem !important;
            }
        }
        
        /* Safari-specific fix for cursor alignment */
        @supports (-webkit-appearance: none) {
            .product-code-input {
                line-height: 1.2 !important;
                padding-top: 0.875rem !important;
                padding-bottom: 0.875rem !important;
                height: auto !important;
            }
            @media (max-width: 768px) {
                .product-code-input {
                    line-height: 1.3 !important;
                    padding-top: 0.75rem !important;
                    padding-bottom: 0.75rem !important;
                }
            }
        }
        
        /* Code validation styles */
        .product-code-input.border-green-500 {
            border-color: #28a745 !important;
            box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
        }
        
        .product-code-input.border-red-500 {
            border-color: #dc3545 !important;
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
        }
        
        .product-code-input.border-blue-500 {
            border-color: var(--primary-color) !important;
            box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25) !important;
        }
        
        #productCodeError {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        
        #productCodeError.text-green-500 {
            color: #28a745 !important;
        }
        
        #productCodeError.text-red-500 {
            color: #dc3545 !important;
        }
        
        #productCodeError.text-blue-500 {
            color: var(--primary-color) !important;
        }
        
        .form-select:focus,
        .form-control.modal-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(74,144,226,0.25);
        }

        /* Key Features Tabs */
        .key-features-tabs {
            border-bottom: 1px solid rgba(74,144,226,0.2);
        }
        .key-features-tabs .nav-link {
            color: var(--text-secondary);
            border: none;
            border-bottom: 2px solid transparent;
            padding: 0.75rem 1.25rem;
            background: transparent;
            transition: all 0.3s ease;
        }
        .key-features-tabs .nav-link:hover {
            color: var(--primary-light);
            border-bottom-color: rgba(74,144,226,0.3);
        }
        .key-features-tabs .nav-link.active {
            color: var(--primary-color);
            border-bottom-color: var(--primary-color);
            background: transparent;
            font-weight: 600;
        }
        .tab-content {
            padding: 1.5rem 0;
            min-height: 200px;
        }
        .tab-pane {
            color: var(--text-primary);
        }
        .media-content img {
            border-radius: 8px;
        }
        .media-content p {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 1rem;
        }
        .media-content p:last-child {
            margin-bottom: 0;
        }
        .specifications-content,
        .reviews-content {
            color: var(--text-primary);
        }

        /* Related Products in Modal */
        .related-products-section {
            margin-top: 2rem;
        }
        .related-product-card {
            background: var(--dark-surface-light);
            border: 1px solid rgba(74,144,226,0.2);
            border-radius: 10px;
            overflow: hidden;
            /* Removed transition for better scroll performance */
            cursor: pointer;
        }
        .related-product-card:hover {
            /* Removed transform for better scroll performance */
            box-shadow: 0 8px 20px rgba(74,144,226,0.2);
            border-color: var(--primary-color);
        }
        .related-product-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }
        .related-product-card .card-body {
            padding: 1rem;
        }
        .related-product-card .card-title {
            font-size: 0.95rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }
        .related-product-card .card-price {
            color: var(--primary-light);
            font-weight: 700;
            font-size: 1rem;
        }

        /* Lookbook grid - Modern Masonry Style */
        .lookbook-section {
            background: radial-gradient(circle at 20% 20%, rgba(74,144,226,0.12), transparent 30%),
                        radial-gradient(circle at 80% 0%, rgba(52,152,219,0.12), transparent 30%),
                        var(--dark-surface);
            position: relative;
            overflow: hidden;
        }

        .lookbook-grid {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: repeat(12, 1fr);
            grid-auto-rows: minmax(200px, auto);
        }

        /* Card size variations for modern masonry layout */
        .lookbook-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(74,144,226,0.2);
            box-shadow: 0 8px 32px rgba(0,0,0,0.4);
            isolation: isolate;
            transform: translateY(0);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            background: var(--dark-surface-light);
        }

        /* Large featured cards */
        .lookbook-card.featured {
            grid-column: span 6;
            grid-row: span 2;
            min-height: 400px;
        }

        /* Medium cards */
        .lookbook-card.medium {
            grid-column: span 4;
            grid-row: span 2;
            min-height: 350px;
        }

        /* Standard cards */
        .lookbook-card.standard {
            grid-column: span 3;
            grid-row: span 1;
            min-height: 280px;
        }

        /* Small accent cards */
        .lookbook-card.small {
            grid-column: span 2;
            grid-row: span 1;
            min-height: 240px;
        }

        /* Wide cards */
        .lookbook-card.wide {
            grid-column: span 6;
            grid-row: span 1;
            min-height: 300px;
        }

        /* Tall cards */
        .lookbook-card.tall {
            grid-column: span 3;
            grid-row: span 2;
            min-height: 400px;
        }

        .lookbook-card:hover {
            /* Removed transform for better scroll performance */
            box-shadow: 0 24px 64px rgba(74,144,226,0.4);
            border-color: rgba(74,144,226,0.5);
            z-index: 10;
        }

        .lookbook-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: saturate(1.1) contrast(1.05);
            /* Removed transition for better scroll performance */
        }

        .lookbook-card:hover img {
            /* Removed transform for better scroll performance */
            filter: saturate(1.2) contrast(1.1);
        }

        .lookbook-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(10,25,41,0.3) 50%, rgba(10,25,41,0.95) 100%);
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
            color: #fff;
            font-weight: 600;
            letter-spacing: 1px;
            font-size: 0.95rem;
            text-transform: uppercase;
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(0px);
        }

        .lookbook-card:hover .lookbook-overlay {
            opacity: 1;
            backdrop-filter: blur(2px);
        }

        .lookbook-overlay span {
            transform: translateY(10px);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .lookbook-card:hover .lookbook-overlay span {
            transform: translateY(0);
        }

        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .lookbook-grid {
                grid-template-columns: repeat(8, 1fr);
            }
            .lookbook-card.featured {
                grid-column: span 4;
            }
            .lookbook-card.medium {
                grid-column: span 4;
            }
            .lookbook-card.standard {
                grid-column: span 4;
            }
            .lookbook-card.wide {
                grid-column: span 8;
            }
        }

        @media (max-width: 768px) {
            .lookbook-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 1rem;
            }
            .lookbook-card.featured,
            .lookbook-card.medium,
            .lookbook-card.standard,
            .lookbook-card.wide,
            .lookbook-card.tall {
                grid-column: span 4;
                grid-row: span 1;
                min-height: 250px;
            }
            .lookbook-card.small {
                grid-column: span 2;
            }
        }

        /* Force remaining sections into dark styling */
        .studio-showcase,
        .lifestyle-section,
        .product-details-section,
        .features-section {
            background: var(--dark-bg) !important;
            color: var(--text-primary) !important;
        }

        .studio-feature,
        .lifestyle-card,
        .detail-item,
        .feature-item {
            background: var(--dark-surface-light) !important;
            color: var(--text-primary) !important;
            border: 1px solid rgba(74,144,226,0.25);
        }

        .lifestyle-content {
            background: linear-gradient(180deg, rgba(10,25,41,0.05), rgba(10,25,41,0.85));
            color: var(--text-primary);
        }


        /* Affiliate Banner and Body Spacing - Consolidated */
            body {
            padding-top: 56px !important;
        }
        
        body.has-affiliate-banner {
            padding-top: 130px !important; /* Navbar (86px from top) + Banner (44px) */
        }
        
        .navbar {
            z-index: 1050 !important;
        }
        
        /* Affiliate Banner - Base Styles */
        .affiliate-banner {
            position: fixed !important;
            top: 86px !important;
            left: 0 !important;
            right: 0 !important;
            z-index: 1040 !important;
            color: white !important;
            text-align: center !important;
            font-weight: 600 !important;
            font-size: 0.85rem !important;
            padding: 10px 15px !important;
            min-height: 40px !important;
            max-height: 44px !important;
            line-height: 1.4 !important;
            white-space: nowrap !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
        }
        
        .affiliate-banner .container {
            padding: 0 15px !important;
            white-space: nowrap !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
        }
        
        /* Hero Section */
            .hero-section {
                margin-top: 0 !important;
                padding-top: 0 !important;
            }
        
            .hero-carousel {
                margin-top: 0 !important;
            height: calc(100vh - 56px) !important;
        }
        
        body.has-affiliate-banner .hero-carousel {
            height: calc(100vh - 130px) !important;
        }
        
        /* Responsive Banner Styles */
            @media (max-width: 991.98px) {
            body.has-affiliate-banner {
                    padding-top: 96px !important;
                }
            body.has-affiliate-banner .hero-carousel {
                    height: calc(100vh - 96px) !important;
                }
            }
        
        @media (max-width: 767.98px) {
            .affiliate-banner {
                font-size: 0.75rem !important;
                padding: 8px 5px !important;
                min-height: 36px !important;
                max-height: 40px !important;
                line-height: 1.3 !important;
            }
            .affiliate-banner .container {
                padding: 0 10px !important;
            }
        }
        
        @media (max-width: 575.98px) {
            .affiliate-banner {
                font-size: 0.7rem !important;
                padding: 8px 5px !important;
                min-height: 32px !important;
                max-height: 36px !important;
                line-height: 1.2 !important;
            }
            .affiliate-banner .container {
                padding: 0 5px !important;
            }
            .affiliate-banner i {
                font-size: 0.7rem !important;
            }
        }

        /* Size Chart Tables - Premium Dark Theme */
        .size-chart-table {
            background: var(--dark-surface) !important;
            background-color: #132f4c !important;
            color: var(--text-primary) !important;
            border-collapse: separate !important;
            border-spacing: 0 !important;
            width: 100%;
            font-size: 0.9rem;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(74, 144, 226, 0.3) !important;
            --bs-table-bg: transparent !important;
            --bs-table-border-color: rgba(74, 144, 226, 0.2) !important;
        }
        
        /* Override Bootstrap table defaults */
        .size-chart-table.table {
            --bs-table-bg: transparent !important;
            --bs-table-striped-bg: transparent !important;
            --bs-table-hover-bg: transparent !important;
            margin-bottom: 0 !important;
        }
        
        .size-chart-table th,
        .size-chart-table td {
            padding: 14px 18px;
            text-align: center;
            border: none !important;
            border-bottom: 1px solid rgba(74, 144, 226, 0.15) !important;
            border-right: 1px solid rgba(74, 144, 226, 0.1) !important;
            vertical-align: middle;
            background-color: transparent !important;
            color: var(--text-primary) !important;
        }
        
        .size-chart-table th:last-child,
        .size-chart-table td:last-child {
            border-right: none;
        }
        
        .size-chart-table tbody tr:last-child td {
            border-bottom: none;
        }
        
        .size-chart-table thead th {
            background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 50%, #4a90e2 100%);
            color: #ffffff;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.8rem;
            white-space: nowrap;
            position: sticky;
            top: 0;
            z-index: 10;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            border-bottom: 2px solid var(--primary-color);
        }
        
        /* First column sticky for horizontal scroll */
        .size-chart-table th:first-child,
        .size-chart-table td:first-child {
            position: sticky;
            left: 0;
            z-index: 5;
            background: linear-gradient(135deg, #132f4c 0%, #1e3a5f 100%) !important;
            text-align: left;
            font-weight: 700;
            white-space: nowrap;
            border-right: 2px solid var(--primary-color);
            min-width: 140px;
        }
        
        .size-chart-table thead th:first-child {
            z-index: 15;
            background: linear-gradient(135deg, #0a1929 0%, #1e3a5f 100%) !important;
            border-right: 2px solid var(--primary-light) !important;
        }
        
        .size-chart-table tbody tr {
            background: linear-gradient(90deg, rgba(19, 47, 76, 1) 0%, rgba(30, 58, 95, 0.95) 100%) !important;
            /* Removed transition for better scroll performance */
        }
        
        .size-chart-table tbody tr:nth-child(even) {
            background: linear-gradient(90deg, rgba(10, 25, 41, 1) 0%, rgba(19, 47, 76, 0.95) 100%) !important;
        }
        
        .size-chart-table tbody tr:hover {
            background: linear-gradient(90deg, rgba(44, 90, 160, 0.5) 0%, rgba(74, 144, 226, 0.35) 100%) !important;
        }
        
        /* Last column smaller width */
        .size-chart-table th:last-child,
        .size-chart-table td:last-child {
            min-width: 50px;
            max-width: 60px;
            padding-left: 8px;
            padding-right: 8px;
            font-size: 0.85em;
        }
        
        .size-chart-table tbody tr:hover td:first-child {
            background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%) !important;
            color: #ffffff !important;
        }
        
        .size-chart-table tbody td strong {
            color: var(--primary-light);
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        /* Fancy glow effect on hover */
        .size-chart-table tbody tr:hover td {
            text-shadow: 0 0 8px rgba(74, 144, 226, 0.5);
        }
        
        /* Table container */
        .table-responsive {
            position: relative;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--dark-surface) 0%, var(--dark-surface-light) 100%);
            padding: 2px;
            border: 1px solid rgba(74, 144, 226, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
        }
        
        /* Color Palette Styles */
        .color-palette {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 30px;
            background: linear-gradient(135deg, rgba(19, 47, 76, 0.6) 0%, rgba(30, 58, 95, 0.4) 100%);
            border-radius: 16px;
            border: 1px solid rgba(74, 144, 226, 0.2);
        }
        
        .color-swatch {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            /* Removed transition for better scroll performance */
            padding: 12px;
            border-radius: 12px;
            min-width: 100px;
        }
        
        .color-swatch:hover {
            background: rgba(74, 144, 226, 0.15);
            /* Removed transform for better scroll performance */
        }
        
        .color-box {
            width: 80px;
            height: 50px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            /* Removed transition for better scroll performance */
            position: relative;
            overflow: hidden;
        }
        
        .color-box::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .color-swatch:hover .color-box::after {
            left: 100%;
        }
        
        .color-swatch:hover .color-box {
            /* Removed transform for better scroll performance */
            box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
        }
        
        .color-name {
            color: var(--text-primary);
            font-size: 0.85rem;
            font-weight: 600;
            text-align: center;
            letter-spacing: 0.3px;
            /* Removed transition for better scroll performance */
        }
        
        .color-swatch:hover .color-name {
            color: var(--primary-light);
        }
        
        /* Responsive color palette */
        @media (max-width: 992px) {
            .color-palette {
                gap: 15px;
                padding: 20px;
            }
            
            .color-swatch {
                min-width: 80px;
                padding: 8px;
            }
            
            .color-box {
                width: 60px;
                height: 40px;
            }
            
            .color-name {
                font-size: 0.75rem;
            }
        }
        
        @media (max-width: 576px) {
            .color-palette {
                gap: 10px;
                padding: 15px;
            }
            
            .color-swatch {
                min-width: 70px;
                padding: 6px;
            }
            
            .color-box {
                width: 50px;
                height: 35px;
                border-radius: 6px;
            }
            
            .color-name {
                font-size: 0.65rem;
            }
        }
        
        /* Size Guide Title styling */
        .product-details-section h3,
        .product-details-section h4 {
            font-family: 'Orbitron', monospace;
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Responsive table adjustments */
        @media (max-width: 768px) {
            .size-chart-table {
                font-size: 0.75rem;
            }
            
            .size-chart-table th,
            .size-chart-table td {
                padding: 10px 8px;
            }
            
            .size-chart-table thead th {
                font-size: 0.65rem;
                letter-spacing: 0.5px;
            }
            
            .size-chart-table th:first-child,
            .size-chart-table td:first-child {
                min-width: 100px;
            }
        }
        
        @media (max-width: 576px) {
            .size-chart-table {
                font-size: 0.7rem;
            }
            
            .size-chart-table th,
            .size-chart-table td {
                padding: 8px 6px;
            }
            
            .size-chart-table th:first-child,
            .size-chart-table td:first-child {
                min-width: 80px;
                font-size: 0.65rem;
            }
        }


    
        .shipping-info-link:hover {
            color: #4a90e2 !important;
        }
        .shipping-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .shipping-modal-overlay.active {
            display: flex;
            opacity: 1;
        }
        .shipping-modal-container {
            background: #132f4c;
            color: #e8f4f8;
            border-radius: 16px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow: hidden;
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
            transform: scale(0.8);
            transition: transform 0.3s ease;
            position: relative;
            border: 1px solid rgba(74, 144, 226, 0.2);
        }
        .shipping-modal-overlay.active .shipping-modal-container {
            transform: scale(1);
        }
        .shipping-modal-header {
            background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
            color: white;
            padding: 1.25rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(74, 144, 226, 0.25);
        }
        .shipping-modal-title {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .shipping-modal-title i {
            font-size: 1.3rem;
            color: #6ba3f0;
        }
        .shipping-modal-title h2 {
            margin: 0;
            font-size: 1.2rem;
            font-weight: 600;
            color: #e8f4f8;
        }
        .shipping-modal-close {
            background: rgba(255,255,255,0.1);
            border: none;
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .shipping-modal-close:hover {
            background: rgba(255,255,255,0.2);
            transform: rotate(90deg);
        }
        .shipping-modal-body {
            padding: 1.5rem;
            max-height: 50vh;
            overflow-y: auto;
            overflow-x: hidden;
            background: #0a1929;
            color: #e8f4f8;
            overscroll-behavior: contain;
            -webkit-overflow-scrolling: touch;
        }
        .shipping-modal-body h1 { display: none; }
        .shipping-modal-body h2 {
            color: #6ba3f0;
            font-size: 1.1rem;
            margin-top: 1.25rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .shipping-modal-body h2:first-of-type {
            margin-top: 0;
        }
        .shipping-modal-body p {
            color: #b8d4e3;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0.75rem;
        }
        .shipping-modal-body ul {
            padding-left: 1.5rem;
            margin-bottom: 0.75rem;
        }
        .shipping-modal-body li {
            color: #b8d4e3;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0.4rem;
        }
        .shipping-modal-body strong {
            color: #e8f4f8;
        }
        .shipping-modal-body::-webkit-scrollbar {
            width: 6px;
        }
        .shipping-modal-body::-webkit-scrollbar-track {
            background: #1e3a5f;
            border-radius: 3px;
        }
        .shipping-modal-body::-webkit-scrollbar-thumb {
            background: #4a90e2;
            border-radius: 3px;
        }
        .shipping-modal-footer {
            padding: 0.75rem 1.5rem;
            background: #132f4c;
            border-top: 1px solid rgba(74,144,226,0.25);
            display: flex;
            justify-content: flex-end;
        }
        .shipping-modal-btn-close {
            background: #4a90e2;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.9rem;
        }
        .shipping-modal-btn-close:hover {
            background: #2c5aa0;
        }
        .shipping-loading-spinner {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            color: #b8d4e3;
        }
        .shipping-spinner {
            width: 36px;
            height: 36px;
            border: 3px solid #1e3a5f;
            border-top: 3px solid #4a90e2;
            border-radius: 50%;
            animation: shippingSpin 1s linear infinite;
            margin-bottom: 0.75rem;
        }
        @keyframes shippingSpin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
    