
        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #02451F;
            --secondary-color: #FF8A00;
            --accent-color: #FF4000;
            --light-color: #F5F5F5;
            --dark-color: #333333;
            --white: #ffffff;
            --text-color: #333;
            --text-light: #666;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--white);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 2.5rem;
        }
        
        h2 {
            font-size: 2rem;
        }
        
        h3 {
            font-size: 1.75rem;
        }
        
        p {
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        ul {
            list-style: none;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: var(--border-radius);
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        
        .btn:hover {
            background-color: #013317;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(2, 69, 31, 0.2);
        }
        
        .btn-secondary {
            background-color: var(--secondary-color);
        }
        
        .btn-secondary:hover {
            background-color: #e67a00;
        }
        
        .btn-large {
            padding: 18px 40px;
            font-size: 18px;
        }
        
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .text-center {
            text-align: center;
        }
        
        .text-primary {
            color: var(--primary-color);
        }
        
        .text-secondary {
            color: var(--secondary-color);
        }
        
        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 1.5rem; }
        .mb-4 { margin-bottom: 2rem; }
        .mb-5 { margin-bottom: 3rem; }
        
        .mt-1 { margin-top: 0.5rem; }
        .mt-2 { margin-top: 1rem; }
        .mt-3 { margin-top: 1.5rem; }
        .mt-4 { margin-top: 2rem; }
        .mt-5 { margin-top: 3rem; }
        
        /* Header */
        .header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-top {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 8px 0;
            font-size: 14px;
        }
        
        .scroller {
            overflow: hidden;
            white-space: nowrap;
        }
        
        .scroller__inner {
            display: inline-flex;
            animation: scroll 30s linear infinite;
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }
        
        .header-main {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
        }
        
        .logo {
            max-width: 180px;
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        
        .nav-menu a {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            font-size: 16px;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--primary-color);
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }
        
        .nav-menu a:hover:after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary-color);
            cursor: pointer;
        }
        
        /* Product Image Gallery Styles - UPDATED FOR VIDEO */
        .product-gallery {
            width: 100%;
            position: relative;
        }
        
        .main-product-image {
            width: 100%;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            cursor: pointer;
            margin-bottom: 15px;
            position: relative;
        }
        
        .main-product-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .main-product-image:hover img {
            transform: scale(1.02);
        }
        
        .main-video-thumbnail {
            position: relative;
            cursor: pointer;
        }
        
        .main-video-thumbnail::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3));
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
            opacity: 0;
        }
        
        .main-video-thumbnail:hover .video-overlay {
            opacity: 1;
        }
        
        .video-play-btn-large {
            width: 70px;
            height: 70px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 28px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .video-play-btn-large:hover {
            background-color: var(--white);
            transform: scale(1.1);
        }
        
        .video-label {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
        }
        
        .product-thumbnails {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .thumbnail-item {
            width: 60px;
            height: 60px;
            border-radius: 6px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: var(--transition);
        }
        
        .thumbnail-item.active {
            border-color: var(--primary-color);
        }
        
        .thumbnail-item:hover {
            border-color: var(--secondary-color);
        }
        
        .thumbnail-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .video-thumbnail {
            position: relative;
        }
        
        .video-thumbnail-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            background-color: rgba(0, 0, 0, 0.6);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        
        /* Hero Section - UPDATED WITH BACKGROUND IMAGE FOR BOTH MOBILE AND DESKTOP */
        .hero {
            background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.3) 100%), 
                        url('images/GROWTHVEDA (14).png') no-repeat center center;
            background-size: cover;
            color: var(--dark-color);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
        }
        
        .hero-text {
            width: 100%;
            background-color: rgba(255, 255, 255, 0.85);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(5px);
        }
        
        .hero-image {
            width: 100%;
        }
        
        .hero-text h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-align: center;
        }
        
        .hero-text h2 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #02451F;
            text-align: center;
        }
        
        .price-box {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .original-price {
            font-size: 20px;
            text-decoration: line-through;
            color: #666;
        }
        
        .discounted-price {
            font-size: 28px;
            font-weight: 700;
            color: #FF4000;
        }
        
        .sale-badge {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
        }
        
        .bogo-badge {
            display: inline-block;
            background-color: #9C27B0;
            color: var(--white);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            margin-left: 10px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 25px;
        }
        
        .stars {
            color: #FFD700;
        }
        
        .rating-text {
            font-size: 16px;
            color: var(--dark-color);
        }
        
        .offer-banner {
            background-color: rgba(2, 69, 31, 0.1);
            border: 2px dashed var(--primary-color);
            border-radius: var(--border-radius);
            padding: 15px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-align: center;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .offer-banner i {
            color: #FF4000;
            font-size: 20px;
        }
        
        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
            width: 100%;
            max-width: 300px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons .btn {
            width: 100%;
        }
        
        .secure-checkout {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
            text-align: center;
            color: var(--dark-color);
        }
        
        .secure-checkout img {
            max-width: 200px;
        }
        
        /* What is Growth Veda Section */
        .what-is {
            background-color: var(--light-color);
        }
        
        .what-is-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
        }
        
        .what-is-text {
            width: 100%;
        }
        
        .what-is-image {
            width: 100%;
        }
        
        /* Reels Section - UPDATED */
        .reels-section {
            background-color: #f9f9f9;
        }
        
        .why-choose {
            margin-bottom: 40px;
        }
        
        .why-choose h2 {
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 30px;
        }
        
        .why-choose-content {
            background-color: var(--white);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            margin-bottom: 30px;
        }
        
        .why-choose-content h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
            font-size: 1.5rem;
        }
        
        .reasons-list {
            list-style-type: none;
        }
        
        .reason-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .reason-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .reason-number {
            background-color: var(--primary-color);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .reels-slider {
            position: relative;
            padding: 0 40px;
        }
        
        .reel-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
            position: relative;
        }
        
        .reel-card:hover {
            transform: translateY(-10px);
        }
        
        .reel-card video {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-bottom: 1px solid #eee;
        }
        
        .reel-card-content {
            padding: 20px;
        }
        
        .reel-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .reel-card p {
            color: var(--text-light);
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .video-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 15px;
        }
        
        .play-pause-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }
        
        .volume-btn {
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 18px;
            cursor: pointer;
        }
        
        .swiper-button-next, .swiper-button-prev {
            color: var(--primary-color);
            background-color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: var(--box-shadow);
        }
        
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 20px;
        }
        
        /* How to Use Section */
        .how-to-use {
            background: linear-gradient(rgba(2, 69, 31, 0.9), rgba(2, 69, 31, 0.9)), url('https://images.unsplash.com/photo-1543362906-acfc16c67564?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
        }
        
        .how-to-use-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
        }
        
        .how-to-use-image {
            width: 100%;
            text-align: center;
        }
        
        .how-to-use-image img {
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            max-width: 500px;
            margin: 0 auto;
            width: 100%;
        }
        
        .how-to-use-text {
            width: 100%;
        }
        
        .how-to-use-text h3 {
            color: var(--white);
            text-align: center;
        }
        
        .steps-list {
            margin-bottom: 30px;
        }
        
        .step-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .step-icon {
            width: 40px;
            height: 40px;
            background-color: var(--secondary-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .step-text h4 {
            margin-bottom: 5px;
            color: var(--white);
        }
        
        .step-text p {
            color: rgba(255, 255, 255, 0.8);
        }
        
        /* Benefits Section */
        .benefits-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .benefit-icon {
            color: var(--primary-color);
            font-size: 20px;
            margin-top: 5px;
            flex-shrink: 0;
        }
        
        /* Reviews Section */
        .reviews-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .reviews-stats {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            width: 100%;
        }
        
        .overall-rating {
            text-align: center;
        }
        
        .rating-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .rating-bars {
            width: 100%;
        }
        
        .rating-bar {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
        }
        
        .bar-label {
            width: 30px;
            text-align: center;
        }
        
        .bar-container {
            flex: 1;
            height: 10px;
            background-color: #eee;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .bar-fill {
            height: 100%;
            background-color: var(--primary-color);
            border-radius: 5px;
        }
        
        .bar-count {
            width: 40px;
            text-align: right;
        }
        
        .review-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .review-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--box-shadow);
        }
        
        .review-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        
        .review-rating {
            color: #FFD700;
        }
        
        .review-images {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            flex-wrap: wrap;
        }
        
        .review-images img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .review-images img:hover {
            transform: scale(1.05);
        }
        
        .review-author {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        
        .author-info h4 {
            margin-bottom: 5px;
            font-size: 16px;
        }
        
        .author-info p {
            font-size: 14px;
            color: var(--text-light);
        }
        
        .review-likes {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .like-btn, .dislike-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 14px;
            color: var(--text-light);
        }
        
        .like-btn:hover {
            color: var(--primary-color);
        }
        
        .dislike-btn:hover {
            color: var(--accent-color);
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: var(--light-color);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: var(--white);
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .faq-question {
            padding: 20px;
            font-weight: 600;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question i {
            transition: var(--transition);
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        /* Footer */
        .footer {
            background-color: var(--primary-color);
            color: var(--white);
        }
        
        .footer-top {
            padding: 60px 0;
        }
        
        .footer-columns {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .footer-column h3 {
            color: var(--white);
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary-color);
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        
        .footer-links i {
            width: 20px;
        }
        
        .footer-bottom {
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }
        
        .footer-disclaimer {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 15px;
        }
        
        .footer-copyright {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-copyright a {
            color: var(--secondary-color);
        }
        
        .footer-copyright a:hover {
            text-decoration: underline;
        }
        
        /* Fixed Buy Now Bar */
        .fixed-buy-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--white);
            box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            z-index: 999;
            transform: translateY(100%);
            transition: var(--transition);
        }
        
        .fixed-buy-bar.show {
            transform: translateY(0);
        }
        
        .buy-bar-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        
        .buy-bar-offer {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: 600;
            text-align: center;
        }
        
        /* Responsive Styles for Desktop */
        @media (min-width: 768px) {
            .hero {
                padding: 100px 0;
                background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0.4) 100%), 
                            url('images/GROWTHVEDA (14).png') no-repeat center center;
                background-size: cover;
            }
            
            .hero-content {
                flex-direction: row;
            }
            
            .hero-text {
                flex: 1;
                text-align: left;
                background-color: rgba(255, 255, 255, 0.9);
            }
            
            .hero-image {
                flex: 1;
            }
            
            .hero-text h1 {
                font-size: 3rem;
                text-align: left;
            }
            
            .hero-text h2 {
                font-size: 1.8rem;
                text-align: left;
            }
            
            .price-box {
                justify-content: flex-start;
            }
            
            .rating {
                justify-content: flex-start;
            }
            
            .offer-banner {
                justify-content: flex-start;
                text-align: left;
            }
            
            .hero-buttons {
                flex-direction: row;
                max-width: 100%;
                margin-left: 0;
                margin-right: 0;
            }
            
            .hero-buttons .btn {
                width: auto;
            }
            
            .secure-checkout {
                flex-direction: row;
                justify-content: flex-start;
                text-align: left;
            }
            
            .what-is-content {
                flex-direction: row;
            }
            
            .why-choose-content {
                padding: 40px;
            }
            
            .reasons-list {
                display: grid;
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .how-to-use-content {
                flex-direction: row;
            }
            
            .how-to-use-text h3 {
                text-align: left;
            }
            
            .benefits-list {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .reviews-header {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
            
            .reviews-stats {
                flex-direction: row;
                width: auto;
            }
            
            .rating-bars {
                flex: 1;
            }
            
            .review-cards {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .review-author {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
            
            .footer-columns {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .buy-bar-content {
                flex-direction: row;
                justify-content: space-between;
            }
            
            .product-thumbnails {
                justify-content: flex-start;
            }
        }
        
        @media (min-width: 992px) {
            .reasons-list {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .review-cards {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        /* Mobile Menu Styles */
        @media (max-width: 767px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background-color: var(--white);
                flex-direction: column;
                align-items: flex-start;
                padding: 80px 30px 30px;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
                z-index: 999;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .mobile-menu-btn {
                display: block;
                z-index: 1000;
            }
            
            .mobile-menu-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 998;
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
            }
            
            .mobile-menu-overlay.active {
                opacity: 1;
                visibility: visible;
            }
            
            .reels-slider {
                padding: 0;
            }
            
            .swiper-button-next, .swiper-button-prev {
                display: none;
            }
        }
        
        /* Hindi Text Styling */
        .hindi-text {
            font-family: 'Roboto', 'Noto Sans Devanagari', sans-serif;
            line-height: 1.8;
        }
        
        /* Custom Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 0.8s ease forwards;
        }
        
        /* Loading Spinner */
        .loading-spinner {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.9);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }
        
        .spinner {
            width: 60px;
            height: 60px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Modal for Images & Video */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .modal-content {
            max-width: 100%;
            max-height: 80%;
            border-radius: 8px;
            object-fit: contain;
        }
        
        .modal-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: var(--white);
            font-size: 40px;
            cursor: pointer;
            z-index: 10001;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-video {
            width: 90%;
            max-width: 800px;
            height: auto;
            border-radius: 8px;
        }
    