        :root {
            --bs-primary: #dc3545;
            --bs-primary-rgb: 220, 53, 69;
        }
        
        body {
            background: #000;
            font-family: 'Roboto Condensed', sans-serif;
        }
        
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('/public/assets/img/gallery/header-bg.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero-title {
            font-size: 4.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            line-height: 1.1;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            font-weight: 300;
            color: rgba(255,255,255,0.8);
            letter-spacing: 1px;
        }
        
        .btn-primary {
            background: var(--bs-primary);
            border-color: var(--bs-primary);
            color: #000;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            padding: 12px 35px;
        }
        
        .btn-primary:hover {
            background: #d4b87a;
            border-color: #d4b87a;
            color: #000;
        }
        
        .btn-outline-primary {
            border-color: var(--bs-primary);
            color: var(--bs-primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            padding: 12px 35px;
        }
        
        .btn-outline-primary:hover {
            background: var(--bs-primary);
            color: #000;
        }
        
        .feature-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.08);
            border-color: var(--bs-primary);
        }
        
        .feature-card i {
            font-size: 3rem;
            color: var(--bs-primary);
            margin-bottom: 20px;
        }
        
        .feature-card h4 {
            color: #fff;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }
        
        .feature-card p {
            color: rgba(255,255,255,0.7);
            font-weight: 300;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #fff;
        }
        
        .stats-section {
            background: rgba(255,255,255,0.03);
            padding: 80px 0;
        }
        
        .stat-number {
            font-size: 4rem;
            font-weight: 700;
            color: var(--bs-primary);
        }
        
        .stat-label {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255,255,255,0.7);
        }
        
        .product-showcase {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .product-showcase:hover {
            transform: translateY(-5px);
            border-color: var(--bs-primary);
        }
        
        .product-showcase .product-img {
            height: 300px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .product-showcase .product-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
        }
        
        .product-showcase .product-img.placeholder {
            background: linear-gradient(135deg, rgba(220,53,69,0.2), rgba(0,0,0,0.5));
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .product-showcase .product-img.placeholder i {
            font-size: 5rem;
            color: var(--bs-primary);
            position: relative;
            z-index: 1;
        }
        
        .product-showcase .product-info {
            padding: 30px;
        }
        
        .product-showcase .badge-type {
            background: var(--bs-primary);
            color: #000;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }
        
        .product-showcase h4 {
            color: #fff;
            font-weight: 700;
            margin: 15px 0 10px;
            text-transform: uppercase;
        }
        
        .product-showcase p {
            color: rgba(255,255,255,0.6);
            font-weight: 300;
            font-size: 0.95rem;
        }
        
        .product-showcase .price {
            color: var(--bs-primary);
            font-size: 1.5rem;
            font-weight: 700;
        }
        

        .btn-buy-landing {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bs-primary);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 10px 22px;
            font-size: 0.9rem;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.25s ease;
            position: relative;
            overflow: hidden;
            font-family: 'Roboto Condensed', sans-serif;
        }

        .btn-buy-landing:hover {
            background: #c82333;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
        }

        .btn-buy-landing .login-hint {
            display: none;
            font-size: 0.78rem;
            font-weight: 400;
            background: rgba(0,0,0,0.25);
            padding: 2px 8px;
            border-radius: 20px;
            letter-spacing: 0;
            text-transform: none;
        }

        .btn-buy-landing:hover .login-hint {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .btn-buy-landing.disabled {
            background: rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.4);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .cta-section {
            background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.95)), url('/public/assets/img/gallery/store-bg.png');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
        }
        
        .footer {
            background: #000;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 60px 0 30px;
        }
        
        .footer h5 {
            color: #fff;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        
        .footer a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: var(--bs-primary);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            margin-top: 40px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            background: var(--bs-primary);
            border-color: var(--bs-primary);
            color: #000;
        }
        
        .navbar-dark .navbar-nav .nav-link {
            color: rgba(255,255,255,0.8);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            font-size: 0.9rem;
        }
        
        .navbar-dark .navbar-nav .nav-link:hover {
            color: var(--bs-primary);
        }
        
        .navbar.scrolled {
            background: rgba(0,0,0,0.95) !important;
            backdrop-filter: blur(10px);
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .product-showcase .product-img {
                height: 250px;
            }
        }
