.brand-color{
                background-color: var(--brand-color) !important;
            }
            .text-brand{
                color: var(--brand-color) !important;
            }


            .hero-content {
                position: relative;
                z-index: 2;
            }

            .hero-title {
                font-size: 4rem;
                font-weight: 700;
                margin-bottom: 20px;
                text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            }

            .hero-subtitle {
                font-size: 1.4rem;
                margin-bottom: 30px;
                opacity: 0.9;
            }

            .floating-elements {
                position: absolute;
                width: 100%;
                height: 100%;
                overflow: hidden;
            }

            .floating-icon {
                position: absolute;
                color: rgba(255,255,255,0.1);
                animation: float 6s ease-in-out infinite;
            }

            .floating-icon:nth-child(1) { top: 20%; left: 10%; font-size: 3rem; animation-delay: 0s; }
            .floating-icon:nth-child(2) { top: 60%; right: 15%; font-size: 2.5rem; animation-delay: 2s; }
            .floating-icon:nth-child(3) { bottom: 30%; left: 20%; font-size: 2rem; animation-delay: 4s; }

            @keyframes float {
                0%, 100% { transform: translateY(0px) rotate(0deg); }
                50% { transform: translateY(-20px) rotate(5deg); }
            }

            /* Product Gallery Section */
            .gallery-section {
                padding: 80px 20px;
                background: white;
            }

            .main-image-container {
                position: relative;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            }

            .main-image {
                width: 100%;
                height: 600px;
                object-fit: cover;
                border-radius: 15px;
                transition: transform 0.5s ease;
            }

            .main-image:hover {
                transform: scale(1.02);
            }

            .thumbnail-gallery {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 15px;
                margin-top: 30px;
            }

            .thumbnail {
                width: 100%;
                height: 120px;
                object-fit: cover;
                border-radius: 12px;
                cursor: pointer;
                transition: all 0.3s ease;
                border: 3px solid transparent;
            }

            .thumbnail:hover, .thumbnail.active {
                border-color: var(--secondary-color);
                transform: translateY(-5px);
                box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            }

            /* Product Info Section */
            .product-info-section {
                padding: 80px 20px;
                background: var(--light-bg);
            }

            .section-title {
                font-size: 3rem;
                font-weight: 700;
                color: var(--primary-color);
                margin-bottom: 20px;
                position: relative;
            }

            .section-title::after {
                content: '';
                position: absolute;
                bottom: -10px;
                left: 0;
                width: 80px;
                height: 4px;
                background: var(--gold-gradient);
                border-radius: 2px;
            }

            .product-subtitle {
                font-size: 1.3rem;
                color: var(--muted-text);
                margin-bottom: 40px;
            }

            .rating-showcase {
                display: flex;
                align-items: center;
                gap: 20px;
                margin-bottom: 40px;
                padding: 25px;
                background: white;
                border-radius: 15px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            }

            .rating-number {
                font-size: 3rem;
                font-weight: 800;
                color: var(--secondary-color);
            }

            .stars-large {
                color:#f2c94c;
                font-size: 1.8rem;
                margin-bottom: 5px;
            }

            .certification-showcase {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
                margin: 40px 0;
            }

            .cert-card {
                background: white;
                padding: 30px;
                border-radius: 15px;
                text-align: center;
                box-shadow: 0 8px 25px rgba(0,0,0,0.08);
                transition: transform 0.3s ease;
                border-top: 4px solid var(--success-color);
            }

            .cert-card:hover {
                transform: translateY(-8px);
            }

            .cert-icon {
                font-size: 3rem;
                color: var(--success-color);
                margin-bottom: 15px;
            }

            .cert-title {
                font-weight: 700;
                color: var(--primary-color);
                margin-bottom: 8px;
            }

            /* Features Section */
            .features-section {
                padding: 80px 20px;
                background: white;
            }

            .features-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 30px;
                margin-top: 50px;
            }

            .feature-card {
                background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-bg) 100%);
                padding: 40px 30px;
                border-radius: 20px;
                text-align: center;
                border: 1px solid #e2e8f0;
                transition: all 0.4s ease;
                position: relative;
                overflow: hidden;
            }

            .feature-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
                transition: left 0.6s ease;
            }

            .feature-card:hover::before {
                left: 100%;
            }

            .feature-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 40px rgba(0,0,0,0.12);
                border-color: var(--secondary-color);
            }

            .feature-icon {
                font-size: 4rem;
                margin-bottom: 20px;
                background: var(--gold-gradient);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }

            .feature-title {
                font-size: 1.4rem;
                font-weight: 700;
                color: var(--primary-color);
                margin-bottom: 15px;
            }

            .feature-description {
                color: var(--muted-text);
                line-height: 1.7;
            }

            /* Details Section */
            .details-section {
                padding: 80px 0;
                background: var(--light-bg);
            }

            .details-tabs {
                background: white;
                border-radius: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.08);
                overflow: hidden;
            }

            .nav-tabs {
                background: var(--primary-color);
                border: none;
                padding: 0;
            }

            .nav-tabs .nav-link {
                border: none;
                color: var(--secondary-color);
                font-weight: 600;
                padding: 20px 30px;
                margin: 0;
                border-radius: 0;
                transition: all 0.3s ease;
                position: relative;
            }

            .nav-tabs .nav-link:hover {
                background: var(--secondary-color);
                color: white;
            }

            .nav-tabs .nav-link.active {
                background: var(--secondary-color);
                color: white;
            }

            .tab-content {
                padding: 50px;
            }

            .tab-pane h4 {
                font-size: 2.2rem;
                color: var(--primary-color);
                margin-bottom: 30px;
            }

            /* Specifications Table */
            .specs-table {
                background: white;
                border-radius: 15px;
                overflow: hidden;
                box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            }

            .specs-table tbody tr {
                border-bottom: 1px solid #e2e8f0;
                transition: background 0.3s ease;
            }

            .specs-table tbody tr:hover {
                background: var(--light-bg);
            }

            .specs-table td {
                padding: 20px 25px;
                vertical-align: middle;
            }

            .specs-table td:first-child {
                font-weight: 700;
                color: var(--primary-color);
                width: 35%;
                background: #f8fafc;
            }

            /* Nutritional Grid */
            .nutrition-showcase {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                gap: 25px;
                margin: 30px 0;
            }

            .nutrition-card {
                background: white;
                padding: 30px 20px;
                border-radius: 15px;
                text-align: center;
                box-shadow: 0 5px 15px rgba(0,0,0,0.08);
                border-top: 4px solid var(--secondary-color);
                transition: transform 0.3s ease;
            }

            .nutrition-card:hover {
                transform: translateY(-5px);
            }

            .nutrition-value {
                font-size: 2.5rem;
                font-weight: 800;
                color: var(--primary-color);
                margin-bottom: 10px;
            }

            .nutrition-label {
                color: var(--muted-text);
                font-weight: 600;
                text-transform: uppercase;
                font-size: 0.85rem;
                letter-spacing: 1px;
            }

            /* Video Section */
            .video-showcase {
                position: relative;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 15px 35px rgba(0,0,0,0.15);
                margin: 40px 0;
            }

            .video-thumbnail {
                width: 100%;
                height: 400px;
                object-fit: cover;
                cursor: pointer;
                transition: transform 0.3s ease;
            }

            .video-thumbnail:hover {
                transform: scale(1.05);
            }

            .play-overlay {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                background: rgba(0,0,0,0.8);
                color: white;
                border: none;
                border-radius: 50%;
                width: 100px;
                height: 100px;
                font-size: 2.5rem;
                cursor: pointer;
                transition: all 0.3s ease;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .play-overlay:hover {
                background: var(--secondary-color);
                transform: translate(-50%, -50%) scale(1.1);
            }

            /* Safety Section */
            .safety-notice {
                background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
                border: 2px solid #fc8181;
                border-radius: 15px;
                padding: 30px;
                margin: 40px 0;
            }

            .safety-title {
                color: #c53030;
                font-weight: 700;
                margin-bottom: 15px;
                display: flex;
                align-items: center;
                gap: 10px;
            }

            /* FAQ Section */
            .faq-container {
                margin-top: 30px;
            }

            .faq-item {
                background: white;
                border-radius: 15px;
                margin-bottom: 20px;
                overflow: hidden;
                box-shadow: 0 5px 15px rgba(0,0,0,0.05);
                transition: box-shadow 0.3s ease;
            }

            .faq-item:hover {
                box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            }

            .faq-question {
                padding: 25px 30px;
                background: var(--light-bg);
                cursor: pointer;
                font-weight: 700;
                color: var(--primary-color);
                display: flex;
                justify-content: space-between;
                align-items: center;
                transition: all 0.3s ease;
                border: none;
                width: 100%;
                text-align: left;
            }

            .faq-question:hover {
                background: #e2e8f0;
            }

            .faq-answer {
                padding: 0;
                color: var(--muted-text);
                line-height: 1.7;
                max-height: 0;
                overflow: hidden;
                transition: all 0.4s ease;
            }

            .faq-answer.show {
                max-height: 200px;
                padding: 25px 30px;
            }

            /* Responsive Design */
            @media (max-width: 768px) {
                .hero-title {
                    font-size: 2.5rem;
                }
                
                .hero-subtitle {
                    font-size: 1.1rem;
                }
                
                .section-title {
                    font-size: 2.2rem;
                }
                
                .main-image {
                    height: 400px;
                }
                
                .tab-content {
                    padding: 30px 20px;
                }
                
                .rating-showcase {
                    flex-direction: column;
                    text-align: center;
                }
                
                .floating-icon {
                    display: none;
                }
            }

            /* Scroll animations */
            .fade-in {
                opacity: 0;
                transform: translateY(30px);
                transition: all 0.8s ease;
            }

            .fade-in.visible {
                opacity: 1;
                transform: translateY(0);
            }
            .hero-section {
                background: linear-gradient(135deg, var(--bg-dark-color) 0%, var(--brand-color) 100%);
                color: var(--title-color-dark);
                padding: 120px 0 80px;
                position: relative;
                overflow: hidden;
            }
    
            .hero-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-color: #00000085;
                z-index: 1;
            }
    
            .bg-video {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                /* z-index: -1;  */
                /* Sends the video behind the content */
            }
    
            .hero-content {
                position: relative;
                z-index: 2;
            }
    
            .section-title {
                color: var(--title-color);
                font-weight: 700;
                margin-bottom: 1rem;
            }
    
            .section-title.white {
                color: var(--title-color-dark);
            }
    
            .section-subtitle {
                color: var(--secondary-color);
                font-weight: 600;
                font-size: 1.1rem;
                margin-bottom: 0.5rem;
            }
    
            @media (max-width: 768px) {
                .hero-section {
                    padding: 80px 0 60px;
                }
            }