 :root {
            --primary: #2B50EC;
            --secondary: #6c757d;
            --dark: #222;
            --light: #f8f9fa;
            --danger: #E74C3C;
            --success: #27AE60;
            --warning: #F39C12;
            --sale: #E74C3C;
        }

        body {
            font-family: 'Jost', sans-serif;
            color: var(--dark);
            padding-top: 0 !important;
        }

        .announcement-bar {
            background-color: var(--dark);
            color: white;
            font-size: 14px;
            padding: 8px 0;
        }

        .navbar {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 10px 0;
        }

        .navbar-brand {
            font-weight: 700;
            color: var(--primary) !important;
            font-size: 24px;
        }

        .hero-section {
            position: relative;
            height: 70vh;
            min-height: 500px;
            overflow: hidden;
            background-color: #000;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: 0;
            opacity: 0.7;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            color: white;
        }

        .product-card {
            transition: all 0.3s ease;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .product-img {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
            cursor: pointer;
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 12px;
            padding: 5px 10px;
            border-radius: 20px;
            font-weight: 600;
        }

        .badge-sale {
            background-color: var(--sale);
            color: white;
        }

        .badge-new {
            background-color: var(--success);
            color: white;
        }

        .price {
            font-weight: 700;
            color: var(--primary);
            font-size: 18px;
        }

        .original-price {
            text-decoration: line-through;
            color: var(--secondary);
            font-size: 14px;
        }

        #productViewModal .modal-dialog {
            max-width: 900px;
        }

        .product-view-img {
            width: 100%;
            height: 400px;
            object-fit: contain;
            background: #f8f9fa;
            border-radius: 8px;
        }

        .review-card {
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .rating {
            color: var(--warning);
        }

        .floating-whatsapp {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-align: center;
            line-height: 60px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            display: none;
            z-index: 1000;
            font-size: 1.8rem;
        }

        .floating-whatsapp a {
            color: white;
        }

        .payment-method-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 5px;
        }

        .payment-method-img {
            height: 30px;
            object-fit: contain;
            margin-bottom: 5px;
        }

        .payment-method-name {
            font-size: 12px;
            color: white;
            text-align: center;
        }

        .payment-methods-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

        .modal-backdrop {
            background-color: rgba(0,0,0,0.5) !important;
        }

        @media (max-width: 768px) {
            .hero-section {
                height: 50vh;
            }

            .product-img {
                height: 180px;
            }

            .product-view-img {
                height: 250px;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                height: 40vh;
            }
            
            .announcement-bar .container {
                flex-direction: column;
                text-align: center;
                gap: 5px;
            }
        }