
        /* CSS Variables */
        :root {
            --primary: #DCB33A;
            --secondary: #4ECDC4;
            --accent: #F0C849;
            --media-height: 420px;
            --promo-height: 36px;
            --light: #F7F9FC;
            --dark: #1A1A2E;
            --text: #333333;
            --white: #FFFFFF;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #f5f5f5;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--primary), var(--secondary));
            border-radius: 10px;
            border: 2px solid #f5f5f5;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #ff5252, #3dbeb6);
            box-shadow: 0 0 6px rgba(255, 107, 107, 0.4);
        }

        /* Firefox scrollbar styling */
        * {
            scrollbar-color: linear-gradient(180deg, var(--primary), var(--secondary)) #f5f5f5;
            scrollbar-width: thin;
        }

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: #ff5252;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
        }

        .btn-secondary {
            background-color: var(--secondary);
            color: var(--white);
        }

        .btn-secondary:hover {
            background-color: #3dbeb6;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(78, 205, 196, 0.3);
        }

        .section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: var(--promo-height);
            z-index: 1000;
        }

        /* Promo sliding bar */
        .promo-bar {
            position: fixed;
            inset: 0 0 auto 0; /* top:0 */
            height: var(--promo-height);
            background: #dcb33a; /* gold */
            color: #fff;
            display: flex;
            align-items: center;
            overflow: hidden;
            z-index: 1100;
        }

        .promo-track {
            display: flex;
            align-items: center;
            white-space: nowrap;
            will-change: transform;
            animation: promo-scroll 18s linear infinite;
        }

        .promo-item {
            display: inline-block;
            padding: 0 48px;
            font-weight: 600;
            font-size: 0.95rem;
            color: #fff;
            line-height: 1;
        }

        .promo-bar:hover .promo-track {
            animation-play-state: paused;
        }

        @keyframes promo-scroll {
            0% { transform: translateX(0%); }
            100% { transform: translateX(-50%); }
        }

        /* Ensure page content is not hidden under the fixed promo bar */
        body {
            padding-top: calc(var(--promo-height) + 0px);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 8px;
            color: var(--secondary);
        }

        .nav-menu {
            display: flex;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            bottom: -5px;
            left: 0;
            transition: var(--transition);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
        }

        .search-container {
            position: relative;
            margin-right: 20px;
        }

        .search-input {
            padding: 10px 20px;
            border: 1px solid #e0e0e0;
            border-radius: 30px;
            width: 200px;
            transition: var(--transition);
            font-family: inherit;
        }

        .search-input:focus {
            width: 250px;
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
        }

        .search-btn {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--primary);
            cursor: pointer;
        }

        .header-actions i {
            font-size: 1.2rem;
            margin-left: 20px;
            cursor: pointer;
            transition: var(--transition);
        }

        .header-actions i:hover {
            color: var(--primary);
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            position: relative;
            color: var(--white);
            padding: 150px 0;
            text-align: center;
            overflow: hidden;
            /* fallback background color while video loads */
            background-color: rgba(18, 18, 18, 0.6);
        }

        /* overlay gradient on top of the video */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,107,107,0.55), rgba(78,205,196,0.55));
            z-index: 1;
            pointer-events: none;
        }

        /* Video wrapper sits behind content */
        .hero-video-wrapper {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-video-wrapper iframe {
            width: 177.78vh; /* 16:9 width relative to viewport height to cover */
            height: 100vh;
            max-width: 200%;
            min-width: 100%;
            border: 0;
            pointer-events: none; /* allow clicks on overlaying buttons/text */
        }

        /* Ensure hero content sits above the overlay */
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Mission / Blending Convenience section */
        .mission-section {
            text-align: center;
            padding: 80px 20px;
            background: #fff;
            color: #111;
        }

        .mission-section .mission-title {
            font-size: 2.25rem;
            font-weight: 800;
            margin-bottom: 18px;
        }

        .mission-section .mission-text {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1.05rem;
            line-height: 1.8;
            color: #333;
        }

        @media (max-width: 768px) {
            .mission-section .mission-title {
                font-size: 1.6rem;
            }

            .mission-section .mission-text {
                font-size: 1rem;
                padding: 0 12px;
            }
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        /* Categories Section */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .category-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            height: 350px;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .category-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 25px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: var(--white);
        }

        /* Featured Products */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .product-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            background-color: var(--white);
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }

        .product-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--primary);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .product-info {
            padding: 20px;
        }

        .product-price {
            font-weight: 700;
            color: var(--primary);
            margin: 10px 0;
            font-size: 1.2rem;
        }

        .product-rating {
            color: var(--accent);
            margin-bottom: 10px;
        }

        .product-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
        }

        /* About Section */
        .about {
            background-color: var(--light);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-text h2 {
            margin-bottom: 20px;
        }

        .features-list {
            margin-top: 20px;
        }

        .features-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .features-list i {
            color: var(--secondary);
            margin-right: 10px;
        }

        /* Testimonials */
        .testimonials-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .testimonials-container {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial {
            min-width: 100%;
            padding: 40px;
            text-align: center;
            background-color: var(--light);
            border-radius: 15px;
            box-shadow: var(--shadow);
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .testimonial-author {
            font-weight: 600;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            margin: 0 5px;
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background-color: var(--primary);
        }

        /* Blog Section */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .blog-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .blog-card:hover {
            transform: translateY(-5px);
        }

        .blog-image {
            height: 200px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }

        .blog-content {
            padding: 20px;
        }

        .blog-date {
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 10px;
        }

        .blog-footer {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }

        .btn-accent {
            background-color: var(--accent);
            color: var(--dark);
            font-weight: 600;
        }

        .btn-accent:hover {
            background-color: #f0c849;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(255, 209, 102, 0.3);
        }

        /* Newsletter */
        .newsletter {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--white);
            text-align: center;
            padding: 80px 0;
        }

        .newsletter h2 {
            margin-bottom: 20px;
        }

        .newsletter p {
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-family: inherit;
        }

        .newsletter-form button {
            background-color: var(--dark);
            color: var(--white);
            border: none;
            padding: 0 25px;
            border-radius: 0 30px 30px 0;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            background-color: #2a2a3e;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 80px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a:hover {
            color: var(--secondary);
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }

        .social-icons a:hover {
            background-color: var(--secondary);
            color: var(--dark);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background-color: var(--white);
                box-shadow: var(--shadow);
                transition: var(--transition);
                padding: 20px 0;
                z-index: 999;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
                text-align: center;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .search-container {
                display: none;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input {
                border-radius: 30px;
                margin-bottom: 10px;
            }
            
            .newsletter-form button {
                border-radius: 30px;
                padding: 15px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .section {
                padding: 70px 0;
            }
            
            .product-actions {
                flex-direction: column;
                gap: 10px;
            }
            
            .product-actions .btn {
                width: 100%;
            }
        }

        /* FAQ Section */
        .faq-section {
            background-color: #f9f9f9;
            padding: 80px 0;
        }

        /* Search Results Modal */
        .search-results-modal {
            position: fixed;
            inset: 0;
            display: none;
            align-items: flex-start;
            justify-content: center;
            background: rgba(0,0,0,0.5);
            z-index: 2001;
            padding: 20px;
            overflow-y: auto;
        }

        .search-results-modal.open {
            display: flex;
            padding-top: 100px;
        }

        .search-results-container {
            width: 100%;
            max-width: 900px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            overflow: hidden;
        }

        .search-results-header {
            padding: 20px;
            background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .search-results-header h2 {
            margin: 0;
            font-size: 1.3rem;
        }

        .search-close-btn {
            background: transparent;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        .search-results-content {
            padding: 20px;
            max-height: 600px;
            overflow-y: auto;
        }

        .search-result-item {
            padding: 14px;
            margin-bottom: 12px;
            border-left: 4px solid #FF6B6B;
            background: #f9f9f9;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-result-item:hover {
            background: #f0f0f0;
            transform: translateX(4px);
        }

        .search-result-title {
            font-weight: 600;
            color: #111;
            margin-bottom: 4px;
        }

        .search-result-text {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
        }

        .search-result-type {
            display: inline-block;
            background: #FF6B6B;
            color: white;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 6px;
        }

        .search-no-results {
            text-align: center;
            padding: 40px 20px;
            color: #888;
        }

        /* FAQ Section */
        .faq-section .section-title {
            margin-bottom: 50px;
        }

        .faq-container {
            max-width: 850px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            margin-bottom: 12px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px;
            cursor: pointer;
            user-select: none;
            font-weight: 600;
            color: #111;
            font-size: 1rem;
            transition: background-color 0.3s ease;
        }

        .faq-question:hover {
            background-color: #f5f5f5;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 18px;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 20px;
            color: #555;
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 20px 20px 20px;
        }

        /* Why Blendwell Section */
        .why-section {
            padding: 80px 0;
            background: #fff;
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start; /* align top so media and content line up */
        }

        .why-image {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0,0,0,0.12);
            width: 100%;
            max-width: 100%;
        }

        .why-image img {
            width: 100%;
            height: var(--media-height);
            object-fit: cover;
            display: block;
        }

        .why-content h3 {
            font-size: 0.85rem;
            font-weight: 700;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 12px;
        }

        .why-content h2 {
            font-size: 2.2rem;
            margin: 0 0 30px 0;
            line-height: 1.1;
        }

        .why-features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px 35px;
        }

        .why-feature-item {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .why-feature-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: #dcb33a;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 22px;
            flex-shrink: 0;
            box-shadow: 0 6px 18px rgba(219,179,58,0.2);
        }

        .why-feature-content h4 {
            margin: 0 0 8px 0;
            font-size: 1.05rem;
            font-weight: 700;
            color: #111;
        }

        .why-feature-content p {
            margin: 0;
            color: #555;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        @media (max-width: 1024px) {
            .why-grid {
                gap: 35px;
            }

            .why-content h2 {
                font-size: 1.8rem;
            }
            /* slightly reduce media height on medium screens */
            .why-image img,
            .fuel-media {
                height: 360px;
            }
        }

        @media (max-width: 768px) {
            .why-section {
                padding: 60px 0;
            }

            .why-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .why-image {
                order: 2;
            }

            .why-content {
                order: 1;
            }

            .why-content h2 {
                font-size: 1.6rem;
            }

            .why-features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            /* on smaller screens allow natural height for images/videos */
            .why-image img,
            .fuel-media {
                height: auto;
            }
        }

        @media (max-width: 576px) {
            .why-section {
                padding: 50px 0;
            }

            .why-content h3 {
                font-size: 0.75rem;
            }

            .why-content h2 {
                font-size: 1.4rem;
                margin-bottom: 24px;
            }

            .why-feature-item {
                gap: 12px;
            }

            .why-feature-icon {
                width: 46px;
                height: 46px;
                font-size: 18px;
            }

            .why-feature-content h4 {
                font-size: 0.95rem;
            }

            .why-feature-content p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 60px 0;
            }

            .faq-question {
                font-size: 0.95rem;
                padding: 16px;
            }

            .faq-answer {
                font-size: 0.9rem;
            }
        }

        /* Subscription Modal Styles */
        /* Fuel / Media Section */
        .fuel-section {
            padding: 80px 0;
            background: #fff;
        }

        .fuel-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .fuel-text h2 {
            font-size: 2rem;
            margin-bottom: 18px;
            line-height: 1.1;
        }

        .fuel-text p {
            color: #444;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .fuel-media-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-auto-rows: 1fr;
            gap: 12px;
        }

        .fuel-media-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            background: #f7f7f7;
            min-height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fuel-media-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .fuel-video .fuel-video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 */
            height: 0;
        }

        .fuel-video .fuel-video-wrapper iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        @media (max-width: 1024px) {
            .fuel-text h2 {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 768px) {
            .fuel-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .fuel-media-grid {
                grid-template-columns: 1fr 1fr;
            }

            .fuel-text {
                order: 1;
            }

            .fuel-media-grid {
                order: 2;
            }
        }

        @media (max-width: 576px) {
            .fuel-media-grid {
                grid-template-columns: 1fr;
            }

            .fuel-text h2 {
                font-size: 1.4rem;
            }
        }

        /* Single video layout (used when fuel-media replaces the 2x2 grid) */
        .fuel-media {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            background: #000;
            height: var(--media-height);
            display: block;
            width: 100%;
            max-width: 100%;
        }

        /* video uses full container height so it matches why.webp */
        .fuel-media .fuel-video-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .fuel-media .fuel-video-wrapper iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        .modal-overlay {
            position: fixed;
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.5);
            z-index: 2000;
            padding: 20px;
        }

        .modal-overlay.open {
            display: flex;
        }

        .modal {
            width: 100%;
            max-width: 700px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.25);
            overflow: hidden;
        }

        .modal-header {
            padding: 26px 34px 0 34px;
            text-align: center;
            position: relative;
        }

        .modal-logo {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            color: #263238;
            font-size: 30px;
            margin-bottom: 6px;
        }

        .modal-subtitle {
            color: #666;
            font-size: 14px;
            margin-bottom: 18px;
        }

        .modal-body {
            padding: 0 34px 30px 34px;
            text-align: center;
        }

        .modal h2 {
            font-size: 26px;
            margin-bottom: 18px;
            color: #111;
        }

        .modal input[type="text"], .modal input[type="email"] {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #e6e6e6;
            border-radius: 8px;
            margin-bottom: 12px;
            font-size: 14px;
            outline: none;
            box-sizing: border-box;
        }

        .subscribe-btn {
            display: inline-block;
            width: 100%;
            background: #dcb33a; /* gold */
            color: #fff;
            padding: 14px 18px;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            margin-top: 6px;
        }

        .modal-footer {
            padding: 18px 34px 26px 34px;
            text-align: center;
            font-size: 13px;
            color: #777;
        }

        .no-thanks {
            display: block;
            margin-top: 12px;
            color: #003366;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
        }

        .modal-close {
            position: absolute;
            right: 14px;
            top: 12px;
            background: transparent;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #888;
        }

        /* Scroll to Top Button */
        .scroll-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--white);
            border: none;
            cursor: pointer;
            font-size: 20px;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
            transition: all 0.3s ease;
            z-index: 999;
        }

        .scroll-top-btn.show {
            display: flex;
        }

        .scroll-top-btn:hover {
            background: #ff5252;
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(255, 107, 107, 0.4);
        }

        .scroll-top-btn:active {
            transform: translateY(-1px);
        }

        @media (max-width: 576px) {
            .scroll-top-btn {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }
