
        /* Base styles */
        :root {
            --primary-yellow: #FFD700;
            --dark-yellow: #FFA500;
            --black: #000000;
            --dark-gray: #111111;
            --medium-gray: #222222;
            --light-gray: #333333;
            --white: #FFFFFF;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {

			width: 100%;

			max-width: 100%;

			overflow-x: hidden;

		}
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--black);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary-yellow);
            position: relative;
            text-transform: uppercase;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-yellow);
        }
        
        .btn {
            display: inline-block;
            background: var(--primary-yellow);
            color: var(--black);
            padding: 12px 30px;
            border: none;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: var(--shadow);
        }
        
        .btn:hover {
            background: var(--dark-yellow);
            transform: translateY(-3px);
        }

        /* Header styles */
        header {
            background-color: var(--black);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-yellow);
            text-decoration: none;
            display: flex;
            /* align-items: center; */
            padding: 8px 18px;
            margin-right: 20px;
        }
        
        .logo i {
            margin-right: 10px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--primary-yellow);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-yellow);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .nav-icons {
            display: flex;
            align-items: center;
            padding: 10px;
        }
        
        .nav-icon {
            color: var(--white);
            font-size: 1.2rem;
            margin-left: 20px;
            transition: color 0.3s ease;
        }
        
        .nav-icon:hover {
            color: var(--primary-yellow);
        }
        
        .nav-icon.search-icon {
            padding: 6px 12px;
            margin-left: 10px;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            margin-right: 15px;
            margin-left: 12px;
        }

        /* Hero section - Updated for responsive height */
        .hero {
            width: 100%;
            background: 
                linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
                url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            height: 60vh; /* 60% of viewport height */
            min-height: 400px; /* Minimum height */
            max-height: 800px; /* Maximum height */
            display: flex;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.9) 100%),
                url('https://images.unsplash.com/photo-1531297484001-80022131f5a1?auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
            z-index: 0;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--primary-yellow);
            text-transform: uppercase;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: var(--white);
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .hero-btn {
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: var(--shadow);
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .shop-now {
            background: var(--primary-yellow);
            color: var(--black);
        }
        
        .membership {
            background: transparent;
            color: var(--primary-yellow);
            border: 2px solid var(--primary-yellow);
        }
        
        .hero-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--dark-yellow);
            z-index: -1;
            transition: width 0.5s ease;
        }
        
        .shop-now:before {
            background: var(--dark-yellow);
        }
        
        .membership:before {
            background: var(--primary-yellow);
        }
        
        .hero-btn:hover {
            transform: translateY(-5px);
        }
        
        .hero-btn:hover:before {
            width: 100%;
        }
        
        .membership:hover {
            color: var(--black);
        }
        
        .enlightenment {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 10rem;
            color: var(--primary-yellow);
            opacity: 0.1;
            z-index: 1;
            animation: pulse 3s infinite;
        }
        
        @keyframes pulse {
            0% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
            50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.2; }
            100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
        }

        /* Enhanced Products Section */
        .products {
            background-color: var(--black);
            padding: 80px 0;
        }

        .products .container {
            max-width: 1400px;
        }

        /* Search Bar Styles */
        .search-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--black);
            padding: 20px 0;
            z-index: 1100;
            display: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            border-bottom: 2px solid var(--primary-yellow);
        }
        
        .search-container {
            display: flex;
            align-items: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .search-input {
            flex: 1;
            padding: 15px 25px;
            border: 2px solid var(--primary-yellow);
            border-radius: 50px;
            background: var(--dark-gray);
            color: var(--white);
            font-size: 1.1rem;
            outline: none;
            transition: var(--transition);
        }
        
        .search-input:focus {
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
            transform: scale(1.02);
        }

        .search-input::placeholder {
            color: #888;
        }
        
        .close-search {
            background: none;
            border: none;
            color: var(--primary-yellow);
            font-size: 1.8rem;
            margin-left: 20px;
            cursor: pointer;
            transition: transform 0.3s ease;
            padding: 10px;
        }
        
        .close-search:hover {
            transform: rotate(90deg);
        }

        /* Products Search in Section - Hidden */
        .products-search {
            display: none;
        }

        /* Category Sidebar */
        .products-layout {
            display: flex;
            gap: 30px;
            align-items: flex-start;
        }
        .products .container,
		.products-layout,
		.products-content,
		.products-grid {
			width: 100%;
			max-width: 100%;
			overflow-x: hidden;
		}
        .products-sidebar {
            width: 280px;
            background: var(--dark-gray);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid var(--primary-yellow);
            position: sticky;
            top: 100px;
        }

        .sidebar-title {
            font-size: 1.8rem;
            color: var(--primary-yellow);
            margin-bottom: 25px;
            text-align: center;
            border-bottom: 2px solid var(--primary-yellow);
            padding-bottom: 15px;
        }

        .sidebar-link {
            display: block;
            padding: 15px 20px;
            margin-bottom: 10px;
            border-radius: 10px;
            color: var(--white);
            font-weight: 500;
            transition: var(--transition);
            text-decoration: none;
            border: 1px solid transparent;
        }

        .sidebar-link:hover,
        .sidebar-link.active {
            background-color: var(--primary-yellow);
            color: var(--black);
            transform: translateX(5px);
        }

        /* Products Content Area */
        .products-content {
            flex: 1;
        }

        .category-heading {
            color: var(--primary-yellow);
            font-size: 2rem;
            border-bottom: 3px solid var(--primary-yellow);
            padding-bottom: 15px;
            margin-bottom: 40px;
            text-transform: uppercase;
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .product-card {
            background: var(--medium-gray);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 2px solid transparent;
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-yellow);
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-yellow);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .product-card:hover::before {
            transform: scaleX(1);
        }

        .product-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-card:hover img {
            transform: scale(1.05);
        }
        
        .product-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .product-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-yellow);
            font-weight: 600;
        }

        .product-description {
            color: #ddd;
            margin-bottom: 20px;
            flex-grow: 1;
            line-height: 1.5;
            font-size: 0.95rem;
        }
        
        .product-price {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-yellow);
            margin-bottom: 20px;
        }
        
        .product-button {
            background: var(--primary-yellow);
            color: var(--black);
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            text-align: center;
            font-size: 0.9rem;
            display: block;
            margin-top: auto;
        }
        
        .product-button:hover {
            background: var(--white);
            transform: translateY(-2px);
        }
        .products-grid {
             width: 100%;
             max-width: 100%;
        }

            .product-card {
             width: 100%;
             max-width: 100%;
        }

            .product-card img {
             display: block;
             width: 100%;
             height: auto;
        }
        /* Pagination */
        .pagination-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        
        .pagination-button {
            padding: 12px 20px;
            border-radius: 10px;
            background: var(--medium-gray);
            border: 2px solid var(--primary-yellow);
            color: var(--primary-yellow);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            min-width: 50px;
        }
        
        .pagination-button:hover:not(.active):not(:disabled) {
            background: var(--primary-yellow);
            color: var(--black);
            transform: translateY(-2px);
        }
        
        .pagination-button.active {
            background: var(--primary-yellow);
            color: var(--black);
        }
        
        .pagination-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            border-color: #555;
            color: #555;
        }

        /* No products message */
        .no-products {
            text-align: center;
            color: #888;
            font-size: 1.2rem;
            padding: 50px;
            grid-column: 1 / -1;
        }
        
        /* Pricing section */
        .pricing {
            background-color: var(--dark-gray);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .pricing-card {
            background: var(--medium-gray);
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            border: 2px solid var(--medium-gray);
            transition: var(--transition);
        }
        
        .pricing-card:hover {
            border-color: var(--primary-yellow);
        }
        
        .pricing-card.popular {
            transform: scale(1.05);
            border: 2px solid var(--primary-yellow);
            position: relative;
        }
        
        .popular-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: var(--primary-yellow);
            color: var(--black);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        .pricing-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-yellow);
        }
        
        .pricing-price {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary-yellow);
            margin-bottom: 30px;
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid var(--light-gray);
            display: flex;
            align-items: center;
        }
        
        .pricing-features li i {
            color: var(--primary-yellow);
            margin-right: 10px;
        }

        /* Stats Counter Section */
        .stats-section {
            background-color: var(--dark-gray);
            padding: 60px 0;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .stat-card {
            background: var(--medium-gray);
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: var(--shadow);
            border: 2px solid var(--primary-yellow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-yellow);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary-yellow);
            margin: 15px 0;
            transition: all 0.5s ease;
        }

        .stat-label {
            font-size: 1.2rem;
            color: var(--white);
            font-weight: 500;
        }

        .stat-icon {
            font-size: 2.5rem;
            color: var(--primary-yellow);
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--black);
            padding: 80px 0;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--medium-gray);
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .faq-question {
            padding: 20px 60px 20px 25px;
            font-size: 1.3rem;
            color: var(--primary-yellow);
            font-weight: 600;
            cursor: pointer;
            position: relative;
            transition: background-color 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: var(--light-gray);
        }
        
        .faq-question:after {
            content: '\f078';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question:after {
            transform: translateY(-50%) rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: #ddd;
            line-height: 1.6;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 25px 25px;
            max-height: 500px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-gray);
            padding: 60px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary-yellow);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-yellow);
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--medium-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-yellow);
            transition: var(--transition);
            text-decoration: none;
        }
        
        .social-icon:hover {
            background: var(--primary-yellow);
            color: var(--black);
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--light-gray);
            color: var(--white);
        }
        
        /* WhatsApp floating button - Updated with underline */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: var(--primary-yellow);
            color: var(--black);
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: var(--shadow);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            text-decoration: none;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            background-color: var(--dark-yellow);
            text-decoration: underline;
        }

        /* Category Slider - Updated for mobile */
        .category-slider {
            display: none; /* Hidden by default */
            overflow-x: auto;
            scrollbar-width: none; /* Hide scrollbar for Firefox */
            -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
            white-space: nowrap;
            padding: 15px 0;
            margin-bottom: 30px;
            background: var(--dark-gray);
            border-top: 1px solid var(--primary-yellow);
            border-bottom: 1px solid var(--primary-yellow);
        }

        .category-slider::-webkit-scrollbar {
            display: none; /* Hide scrollbar for Chrome/Safari */
        }

      .category-slide {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 16px;
        min-width: 90px;
        margin: 0 8px;
        background: var(--medium-gray);
        color: var(--white);
        border-radius: 30px;
        font-weight: 500;
        cursor: pointer;
        transition: var(--transition);
        border: 2px solid transparent;
        text-align: center;
        font-size: 0.9rem;
        }

        .category-slide:hover,
        .category-slide.active {
            background: var(--primary-yellow);
            color: var(--black);
            border-color: var(--primary-yellow);
        }

        /* Responsive styles */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }

            .products-layout {
                flex-direction: column;
            }

            .products-sidebar {
                width: 100%;
                position: static;
                order: -1;
            }

            .sidebar-title {
                display: none;
            }

            .products-sidebar nav {
                display: flex;
                gap: 10px;
                overflow-x: auto;
                padding-bottom: 10px;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            
            .products-sidebar nav::-webkit-scrollbar {
                display: none;
            }

            .sidebar-link {
                white-space: nowrap;
                margin-bottom: 0;
                flex: 0 0 auto;
            }
            
            /* Show slider only on mobile */
            .category-slider {
                display: block;
            }
            
            .products-sidebar {
                display: none;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--dark-gray);
                flex-direction: column;
                align-items: center;
                padding: 50px 0;
                transition: all 0.3s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .header-container {
                justify-content: flex-start;
            }
            
            .logo {
                margin: 0 auto;
                padding: 6px 20px;
                margin-left: 16px;
            }
            
            .nav-icon.search-icon {
                padding: 4px 8px;
                margin-right: 6px;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .product-card {
                height: auto;
            }
            
            .product-content {
                padding: 15px;
            }
            
            .product-title {
                font-size: 1.1rem;
                margin-bottom: 10px;
            }
            
            .product-description {
                font-size: 0.85rem;
                margin-bottom: 15px;
            }
            
            .product-price {
                font-size: 1.4rem;
                margin-bottom: 15px;
            }
            
            .product-button {
                padding: 8px 15px;
                font-size: 0.8rem;
            }
            
            .pagination-container {
                flex-wrap: wrap;
                overflow-x: visible;
                justify-content: center;
            row-gap: 8px;
                column-gap: 8px;
                margin-top: 30px;
                padding-bottom: 0;
            }
            .pagination-button {
                padding: 6px 12px;
                min-width: 40px;
                font-size: 0.8rem;
            }
            
            .search-container {
                padding: 0 10px;
            }

            .close-search {
                margin-left: 10px;
            }

            .stat-card {
                padding: 20px 15px;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .stat-label {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }

            .products-grid {
              grid-template-columns: repeat(2, 1fr);
               }

            .product-content {
                padding: 20px;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .stat-card {
                padding: 25px 20px;
            }
        }
        
        @media (max-width: 400px) {
            .products-grid {
              grid-template-columns: repeat(2, 1fr);
              }
            
            .swiper-slide {
                padding: 10px 5px;
                font-size: 0.9rem;
            }
        }
    