* {
	padding: 0;
	margin: 0;
}

:root {
            --gold: #D4AF37;
            --gold-light: #F4D03F;
            --gold-dark: #B8860B;
            --black: #0a0a0a;
            --black-light: #1a1a1a;
            --black-card: #121212;
            --white: #ffffff;
            --gray: #888888;
            --gray-light: #cccccc;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--black);
            color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }

        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--black); }
        ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

        /* ===== PRELOADER ===== */
        .preloader {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: var(--black); display: flex; justify-content: center; align-items: center;
            z-index: 9999; transition: opacity 0.5s ease;
        }
        .preloader.hidden { opacity: 0; pointer-events: none; }
        .preloader-logo {
            font-family: 'Playfair Display', serif; font-size: 2.5rem;
            color: var(--gold); animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 0.4; transform: scale(0.95); }
            50% { opacity: 1; transform: scale(1.05); }
        }

        /* ===== NAVBAR ===== */
        .navbar {
            background: rgba(10, 10, 10, 0.95) !important; backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.1); padding: 15px 0;
            transition: all 0.3s ease;
        }
        .navbar.scrolled { padding: 10px 0; box-shadow: 0 5px 30px rgba(212, 175, 55, 0.1); }
        .navbar-brand {
            font-family: 'Playfair Display', serif; font-size: 1.8rem;
            color: var(--gold) !important; font-weight: 700;
        }
        .navbar-brand span { color: var(--white); font-weight: 400; }
        .nav-link {
            color: var(--gray-light) !important; font-weight: 500; font-size: 0.95rem;
            margin: 0 12px; position: relative; transition: color 0.3s ease;
        }
        .nav-link:hover, .nav-link.active { color: var(--gold) !important; }
        .nav-link::after {
            content: ''; position: absolute; bottom: -5px; left: 0;
            width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease;
        }
        .nav-link:hover::after, .nav-link.active::after { width: 100%; }

        /* ===== BUTTONS ===== */
        .btn-gold {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--black) !important; font-weight: 600; padding: 12px 32px;
            border: none; border-radius: 30px; transition: all 0.3s ease;
            text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem;
            display: inline-block; text-decoration: none;
        }
        .btn-gold:hover {
            transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
            color: var(--black) !important;
        }
        .btn-outline-gold {
            border: 2px solid var(--gold); color: var(--gold); background: transparent;
            padding: 12px 32px; border-radius: 30px; font-weight: 600;
            transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px;
            font-size: 0.85rem; display: inline-block; text-decoration: none;
        }
        .btn-outline-gold:hover { background: var(--gold); color: var(--black); }

        /* ===== SECTION HEADER ===== */
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header h6 {
            color: var(--gold); text-transform: uppercase; letter-spacing: 3px;
            font-size: 0.9rem; font-family: 'Poppins', sans-serif; font-weight: 600;
            margin-bottom: 15px;
        }
        .section-header h2 { font-size: 3rem; font-weight: 700; margin-bottom: 20px; }
        .section-header p { color: var(--gray); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
        .gold-line {
            width: 80px; height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-dark));
            margin: 20px auto; border-radius: 2px;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh; background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, #1a1200 100%);
            position: relative; overflow: hidden; display: flex; align-items: center;
        }
        .hero::before {
            content: ''; position: absolute; top: -50%; right: -20%;
            width: 800px; height: 800px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-30px, -30px) scale(1.1); }
        }
        .hero-content h1 { font-size: 4.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
        .hero-content h1 .gold-text { color: var(--gold); display: block; }
        .hero-content p { font-size: 1.2rem; color: var(--gray); max-width: 500px; margin-bottom: 35px; line-height: 1.8; }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 10px;
            background: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.2);
            padding: 10px 20px; border-radius: 50px; margin-bottom: 30px;
        }
        .hero-badge i { color: var(--gold); }
        .hero-badge span { font-size: 0.9rem; color: var(--gray-light); }
        .hero-stats { display: flex; gap: 40px; margin-top: 50px; }
        .hero-stat h3 { font-size: 2.5rem; color: var(--gold); font-weight: 700; }
        .hero-stat p { font-size: 0.9rem; color: var(--gray); margin: 0; }
        .hero-image { position: relative; }
        .hero-image img { width: 100%; max-width: 500px; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
        .floating-card {
            position: absolute; background: rgba(26, 26, 26, 0.9); backdrop-filter: blur(20px);
            border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 15px; padding: 20px;
            animation: floatCard 4s ease-in-out infinite;
        }
        .floating-card.card-1 { top: 10%; right: -20px; animation-delay: 0s; }
        .floating-card.card-2 { bottom: 15%; left: -30px; animation-delay: 2s; }
        @keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
        .floating-card h4 { font-size: 1.5rem; color: var(--gold); margin-bottom: 5px; }
        .floating-card p { font-size: 0.85rem; color: var(--gray); margin: 0; }

        /* ===== ABOUT SECTION ===== */
        .about-section { padding: 100px 0; background: var(--black); position: relative; overflow: hidden; }
        .about-section::before {
            content: ''; position: absolute; bottom: -50%; left: -20%;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
        }
        .about-image { position: relative; }
        .about-image img { width: 100%; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
        .experience-badge {
            position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: var(--black);
            padding: 25px 30px; border-radius: 20px; text-align: center;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }
        .experience-badge h3 { font-size: 2.5rem; font-weight: 800; margin: 0; line-height: 1; }
        .experience-badge p { font-size: 0.85rem; margin: 5px 0 0; font-weight: 600; }
        .about-content h6 {
            color: var(--gold); text-transform: uppercase; letter-spacing: 3px;
            font-size: 0.9rem; font-family: 'Poppins', sans-serif; font-weight: 600; margin-bottom: 15px;
        }
        .about-content h2 { font-size: 3rem; font-weight: 700; margin-bottom: 25px; line-height: 1.2; }
        .about-content p { color: var(--gray); line-height: 1.8; margin-bottom: 20px; font-size: 1.05rem; }
        .about-list { list-style: none; padding: 0; margin: 30px 0; }
        .about-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; color: var(--gray-light); }
        .about-list li i { color: var(--gold); font-size: 1.2rem; }

        /* ===== FEATURES SECTION ===== */
        .features-section { padding: 100px 0; background: var(--black-light); position: relative; }
        .feature-card {
            background: var(--black-card); border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px; padding: 40px 30px; text-align: center;
            transition: all 0.4s ease; height: 100%;
        }
        .feature-card:hover {
            border-color: rgba(212, 175, 55, 0.2); transform: translateY(-5px);
        }
        .feature-icon {
            width: 80px; height: 80px; background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 25px; font-size: 2rem; color: var(--gold);
            transition: all 0.3s ease;
        }
        .feature-card:hover .feature-icon { background: var(--gold); color: var(--black); transform: rotateY(360deg); }
        .feature-card h4 { font-size: 1.3rem; margin-bottom: 15px; }
        .feature-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }

        /* ===== PRODUCTS SECTION ===== */
        .products-section { padding: 100px 0; background: var(--black); position: relative; }
        .products-section::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
        }
        .product-card {
            background: var(--black-card); border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px; overflow: hidden; transition: all 0.4s ease;
            position: relative; height: 100%;
        }
        .product-card:hover {
            transform: translateY(-10px); border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.1);
        }
        .product-image {
            height: 280px; display: flex; align-items: center; justify-content: center;
            position: relative; overflow: hidden;
        }
        .product-image img { max-height: 220px; transition: transform 0.4s ease; }
        .product-card:hover .product-image img { transform: scale(1.05); }
        .product-tag {
            position: absolute; top: 20px; left: 20px; background: var(--gold); color: var(--black);
            padding: 5px 15px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
        }
        .product-content { padding: 25px; }
        .product-content h4 { font-size: 1.4rem; margin-bottom: 8px; color: var(--white); }
        .product-content .category {
            color: var(--gold); font-size: 0.85rem; text-transform: uppercase;
            letter-spacing: 1px; margin-bottom: 12px; font-weight: 500;
        }
        .product-content p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
        .product-meta {
            display: flex; justify-content: space-between; align-items: center;
            padding-top: 15px; border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .product-price { font-size: 1.3rem; font-weight: 700; color: var(--gold); }
        .product-price span { font-size: 0.85rem; color: var(--gray); font-weight: 400; }
        .product-btn {
            width: 45px; height: 45px; border-radius: 50%; background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3); color: var(--gold);
            display: flex; align-items: center; justify-content: center;
            transition: all 0.3s ease;
        }
        .product-btn:hover { background: var(--gold); color: var(--black); }

        /* Product color variants */
        .product-card.folivit .product-image { background: linear-gradient(135deg, #1a1200, #0a0a0a); }
        .product-card.moxx .product-image { background: linear-gradient(135deg, #1a1a1a, #0a0a0a); }
        .product-card.ketocoal .product-image { background: linear-gradient(135deg, #0d1b2a, #0a0a0a); }
        .product-card.bifen .product-image { background: linear-gradient(135deg, #1a1030, #0a0a0a); }
        .product-card.aurvit .product-image { background: linear-gradient(135deg, #0a1a1a, #0a0a0a); }
        .product-card.moxxil .product-image { background: linear-gradient(135deg, #0a1a30, #0a0a0a); }

        /* ===== TESTIMONIALS SECTION ===== */
        .testimonials-section { padding: 100px 0; background: var(--black-light); }
        .testimonial-card {
            background: var(--black-card); border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px; padding: 40px; position: relative; transition: all 0.4s ease;
        }
        .testimonial-card:hover { border-color: rgba(212, 175, 55, 0.2); }
        .testimonial-card::before {
            content: '"'; position: absolute; top: 20px; left: 30px;
            font-size: 5rem; color: rgba(212, 175, 55, 0.1);
            font-family: 'Playfair Display', serif; line-height: 1;
        }
        .testimonial-card p { color: var(--gray-light); font-size: 1.05rem; line-height: 1.8; margin-bottom: 25px; position: relative; z-index: 1; }
        .testimonial-author { display: flex; align-items: center; gap: 15px; }
        .testimonial-author img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
        .testimonial-author h5 { font-size: 1.1rem; margin: 0; }
        .testimonial-author span { color: var(--gray); font-size: 0.85rem; }
        .stars { color: var(--gold); margin-bottom: 15px; }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #1a1200 0%, var(--black-light) 50%, #0a0a0a 100%);
            position: relative; overflow: hidden;
        }
        .cta-section::before {
            content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
        }
        .cta-content { text-align: center; position: relative; z-index: 1; }
        .cta-content h2 { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; }
        .cta-content p { color: var(--gray); font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px; }
        .cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

        /* ===== CONTACT SECTION ===== */
        .contact-section { padding: 100px 0; background: var(--black); }
        .contact-card {
            background: var(--black-card); border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px; padding: 40px; height: 100%; transition: all 0.4s ease;
        }
        .contact-card:hover { border-color: rgba(212, 175, 55, 0.2); }
        .contact-icon {
            width: 60px; height: 60px; background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 15px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; color: var(--gold); margin-bottom: 20px;
        }
        .contact-card h4 { font-size: 1.2rem; margin-bottom: 10px; }
        .contact-card p { color: var(--gray); font-size: 0.95rem; margin: 0; }
        .contact-form {
            background: var(--black-card); border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px; padding: 50px;
        }
        .form-control {
            background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--white); padding: 15px 20px; border-radius: 10px; font-size: 0.95rem;
        }
        .form-control:focus {
            background: rgba(255, 255, 255, 0.05); border-color: var(--gold); color: var(--white);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
        }
        .form-control::placeholder { color: var(--gray); }
        .form-label { color: var(--gray-light); font-size: 0.9rem; margin-bottom: 8px; }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--black-light); border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 80px 0 30px;
        }
        .footer-brand {
            font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold);
            font-weight: 700; margin-bottom: 20px;
        }
        .footer-brand span { color: var(--white); }
        .footer-about p { color: var(--gray); line-height: 1.8; font-size: 0.95rem; }
        .footer-social { display: flex; gap: 15px; margin-top: 25px; }
        .footer-social a {
            width: 45px; height: 45px; border-radius: 50%; background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center;
            justify-content: center; color: var(--gray); transition: all 0.3s ease;
        }
        .footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--black); transform: translateY(-3px); }
        .footer h5 { font-size: 1.2rem; margin-bottom: 25px; color: var(--white); }
        .footer-links { list-style: none; padding: 0; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: var(--gray); text-decoration: none; transition: all 0.3s ease; font-size: 0.95rem; }
        .footer-links a:hover { color: var(--gold); padding-left: 5px; }
        .footer-contact p { color: var(--gray); margin-bottom: 15px; display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; }
        .footer-contact i { color: var(--gold); margin-top: 5px; }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05); margin-top: 60px;
            padding-top: 30px; text-align: center;
        }
        .footer-bottom p { color: var(--gray); font-size: 0.9rem; margin: 0; }

        /* ===== ANIMATIONS ===== */
        .fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 991px) {
            .hero-content h1 { font-size: 3rem; }
            .section-header h2 { font-size: 2.2rem; }
            .cta-content h2 { font-size: 2.5rem; }
            .about-content h2 { font-size: 2.2rem; }
        }
        @media (max-width: 767px) {
            .hero-content h1 { font-size: 2.5rem; }
            .hero-stats { flex-direction: column; gap: 20px; }
            .floating-card { display: none; }
            .section-header h2 { font-size: 1.8rem; }
            .cta-content h2 { font-size: 2rem; }
            .contact-form { padding: 30px; }
        }


        .hero-image img {
            width: 100% !important;
    margin: 0 auto;
    display: flex;
        }



        /* =========About Us page css============= */


         /* ===== ABOUT US PAGE ONLY STYLES ===== */
        .page-banner {
            padding: 140px 0 80px;
            background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, #1a1200 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .page-banner::before {
            content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
        }
        .page-banner h1 { font-size: 3.5rem; font-weight: 800; position: relative; z-index: 1; }
        .page-banner p { color: var(--gray); font-size: 1.1rem; max-width: 600px; margin: 15px auto 0; position: relative; z-index: 1; }
        .breadcrumb-nav {
            display: flex; justify-content: center; gap: 15px; margin-top: 20px;
            font-size: 0.9rem; position: relative; z-index: 1;
        }
        .breadcrumb-nav a { color: var(--gray); text-decoration: none; transition: color 0.3s; }
        .breadcrumb-nav a:hover { color: var(--gold); }
        .breadcrumb-nav span { color: var(--gold); }
        .breadcrumb-nav i { color: var(--gray); font-size: 0.7rem; margin-top: 6px; }

        .gold-line {
            width: 80px; height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-dark));
            margin: 20px auto; border-radius: 2px;
        }

        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header h6 {
            color: var(--gold); text-transform: uppercase; letter-spacing: 3px;
            font-size: 0.9rem; font-family: 'Poppins', sans-serif; font-weight: 600; margin-bottom: 15px;
        }
        .section-header h2 { font-size: 2.8rem; font-weight: 700; margin-bottom: 20px; }
        .section-header p { color: var(--gray); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

        .fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

        /* Story Section */
        .story-section { padding: 100px 0; background: var(--black); position: relative; }
        .story-section::before {
            content: ''; position: absolute; bottom: -40%; right: -15%;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
        }
        .story-image { position: relative; }
        .story-image img { width: 100%; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
        .story-badge {
            position: absolute; bottom: -15px; left: -15px;
            background: var(--gold); color: var(--black); padding: 20px 25px;
            border-radius: 15px; text-align: center; box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }
        .story-badge h4 { font-size: 2rem; font-weight: 800; margin: 0; line-height: 1; }
        .story-badge p { font-size: 0.8rem; margin: 5px 0 0; font-weight: 600; }
        .story-content h6 {
            color: var(--gold); text-transform: uppercase; letter-spacing: 3px;
            font-size: 0.9rem; font-family: 'Poppins', sans-serif; font-weight: 600; margin-bottom: 15px;
        }
        .story-content h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 25px; line-height: 1.2; }
        .story-content p { color: var(--gray); line-height: 1.8; margin-bottom: 20px; font-size: 1.05rem; }
        .story-list { list-style: none; padding: 0; margin: 25px 0; }
        .story-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; color: var(--gray-light); }
        .story-list li i { color: var(--gold); font-size: 1rem; width: 20px; }

        /* Mission Vision */
        .mission-section { padding: 100px 0; background: var(--black-light); }
        .mv-card {
            background: var(--black-card); border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px; padding: 50px 40px; height: 100%; transition: all 0.4s ease;
        }
        .mv-card:hover { border-color: rgba(212, 175, 55, 0.2); transform: translateY(-5px); }
        .mv-icon {
            width: 70px; height: 70px; background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 25px; font-size: 1.8rem; color: var(--gold);
        }
        .mv-card h3 { font-size: 1.8rem; margin-bottom: 15px; }
        .mv-card p { color: var(--gray); font-size: 1rem; line-height: 1.7; }

        /* Values */
        .values-section { padding: 100px 0; background: var(--black); position: relative; }
        .values-section::before {
            content: ''; position: absolute; top: -30%; left: -10%;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
        }
        .value-card {
            background: var(--black-card); border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px; padding: 40px 30px; text-align: center;
            transition: all 0.4s ease; height: 100%; position: relative; z-index: 1;
        }
        .value-card:hover { border-color: rgba(212, 175, 55, 0.2); }
        .value-number {
            font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800;
            color: rgba(212, 175, 55, 0.15); line-height: 1; margin-bottom: 10px;
        }
        .value-icon {
            width: 60px; height: 60px; background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 15px;
            display: flex; align-items: center; justify-content: center;
            margin: -30px auto 20px; font-size: 1.5rem; color: var(--gold);
            position: relative; z-index: 2;
        }
        .value-card h4 { font-size: 1.3rem; margin-bottom: 12px; }
        .value-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }

        /* Timeline */
        .timeline-section { padding: 100px 0; background: var(--black-light); }
        .timeline { position: relative; padding: 20px 0; }
        .timeline::before {
            content: ''; position: absolute; top: 0; bottom: 0; left: 50%;
            width: 2px; background: linear-gradient(to bottom, var(--gold), transparent);
            transform: translateX(-50%);
        }
        .timeline-item { display: flex; justify-content: flex-end; padding-right: 50%; position: relative; margin-bottom: 50px; }
        .timeline-item:nth-child(even) { justify-content: flex-start; padding-right: 0; padding-left: 50%; }
        .timeline-content {
            background: var(--black-card); border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 15px; padding: 30px; max-width: 450px; position: relative;
            transition: all 0.4s ease;
        }
        .timeline-content:hover { border-color: rgba(212, 175, 55, 0.2); }
        .timeline-dot {
            position: absolute; top: 30px; width: 20px; height: 20px;
            background: var(--gold); border-radius: 50%; border: 4px solid var(--black-light);
            z-index: 2;
        }
        .timeline-item:nth-child(odd) .timeline-dot { right: -60px; }
        .timeline-item:nth-child(even) .timeline-dot { left: -60px; }
        .timeline-year {
            display: inline-block; background: rgba(212, 175, 55, 0.1);
            color: var(--gold); padding: 5px 15px; border-radius: 20px;
            font-size: 0.85rem; font-weight: 600; margin-bottom: 10px;
        }
        .timeline-content h4 { font-size: 1.3rem; margin-bottom: 10px; }
        .timeline-content p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; margin: 0; }

        /* Team */
        .team-section { padding: 100px 0; background: var(--black); position: relative; }
        .team-section::before {
            content: ''; position: absolute; bottom: -30%; right: -10%;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
        }
        .team-card {
            background: var(--black-card); border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px; overflow: hidden; transition: all 0.4s ease;
            position: relative; z-index: 1;
        }
        .team-card:hover {
            transform: translateY(-8px); border-color: rgba(212, 175, 55, 0.2);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }
        .team-img {
            height: 300px; overflow: hidden; position: relative;
        }
        .team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
        .team-card:hover .team-img img { transform: scale(1.05); }
        .team-overlay {
            position: absolute; bottom: 0; left: 0; right: 0;
            background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
            padding: 30px 20px 20px;
        }
        .team-info { padding: 25px; text-align: center; }
        .team-info h4 { font-size: 1.3rem; margin-bottom: 5px; }
        .team-info span { color: var(--gold); font-size: 0.9rem; }
        .team-info p { color: var(--gray); font-size: 0.9rem; margin-top: 10px; line-height: 1.6; }
        .team-social { display: flex; justify-content: center; gap: 12px; margin-top: 15px; }
        .team-social a {
            width: 38px; height: 38px; border-radius: 50%;
            background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
            display: flex; align-items: center; justify-content: center;
            color: var(--gray); font-size: 0.9rem; transition: all 0.3s ease;
        }
        .team-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

        /* Certifications */
        .cert-section { padding: 80px 0; background: var(--black-light); }
        .cert-card {
            background: var(--black-card); border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 15px; padding: 35px 25px; text-align: center;
            transition: all 0.4s ease; height: 100%;
        }
        .cert-card:hover { border-color: rgba(212, 175, 55, 0.2); }
        .cert-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 15px; }
        .cert-card h5 { font-size: 1.1rem; margin-bottom: 8px; }
        .cert-card p { color: var(--gray); font-size: 0.85rem; margin: 0; }

        /* Stats Bar */
        .stats-bar { padding: 60px 0; background: linear-gradient(135deg, #1a1200, var(--black-light)); }
        .stat-item { text-align: center; }
        .stat-item h3 { font-size: 2.8rem; color: var(--gold); font-weight: 800; margin-bottom: 8px; }
        .stat-item p { color: var(--gray); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }

        /* CTA */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #1a1200 0%, var(--black-light) 50%, #0a0a0a 100%);
            text-align: center;
        }
        .cta-section h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; }
        .cta-section p { color: var(--gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto 30px; }
        .cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

        .btn-gold {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--black) !important; font-weight: 600; padding: 12px 32px;
            border: none; border-radius: 30px; transition: all 0.3s ease;
            text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem;
            display: inline-block; text-decoration: none;
        }
        .btn-gold:hover {
            transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
            color: var(--black) !important;
        }
        .btn-outline-gold {
            border: 2px solid var(--gold); color: var(--gold); background: transparent;
            padding: 12px 32px; border-radius: 30px; font-weight: 600;
            transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px;
            font-size: 0.85rem; display: inline-block; text-decoration: none;
        }
        .btn-outline-gold:hover { background: var(--gold); color: var(--black); }

        @media (max-width: 991px) {
            .page-banner h1 { font-size: 2.8rem; }
            .section-header h2 { font-size: 2.2rem; }
            .story-content h2 { font-size: 2rem; }
            .timeline::before { left: 20px; }
            .timeline-item { padding-right: 0; padding-left: 50px; justify-content: flex-start; }
            .timeline-item:nth-child(even) { padding-left: 50px; }
            .timeline-item:nth-child(odd) .timeline-dot { left: -40px; right: auto; }
            .timeline-item:nth-child(even) .timeline-dot { left: -40px; }
        }
        @media (max-width: 767px) {
            .page-banner { padding: 120px 0 60px; }
            .page-banner h1 { font-size: 2.2rem; }
            .section-header h2 { font-size: 1.8rem; }
            .story-content h2 { font-size: 1.8rem; }
            .stat-item h3 { font-size: 2rem; }
            .cta-section h2 { font-size: 2rem; }
        }



        /* ===== CONTACT PAGE ONLY STYLES ===== */
        .page-banner {
            padding: 140px 0 80px;
            background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, #1a1200 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .page-banner::before {
            content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
        }
        .page-banner h1 { font-size: 3.5rem; font-weight: 800; position: relative; z-index: 1; }
        .page-banner p { color: var(--gray); font-size: 1.1rem; max-width: 600px; margin: 15px auto 0; position: relative; z-index: 1; }
        .breadcrumb-nav {
            display: flex; justify-content: center; gap: 15px; margin-top: 20px;
            font-size: 0.9rem; position: relative; z-index: 1;
        }
        .breadcrumb-nav a { color: var(--gray); text-decoration: none; transition: color 0.3s; }
        .breadcrumb-nav a:hover { color: var(--gold); }
        .breadcrumb-nav span { color: var(--gold); }
        .breadcrumb-nav i { color: var(--gray); font-size: 0.7rem; margin-top: 6px; }

        .gold-line {
            width: 80px; height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-dark));
            margin: 20px auto; border-radius: 2px;
        }

        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header h6 {
            color: var(--gold); text-transform: uppercase; letter-spacing: 3px;
            font-size: 0.9rem; font-family: 'Poppins', sans-serif; font-weight: 600; margin-bottom: 15px;
        }
        .section-header h2 { font-size: 2.8rem; font-weight: 700; margin-bottom: 20px; }
        .section-header p { color: var(--gray); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

        .fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

        /* Contact Info Cards */
        .contact-info-section { padding: 100px 0; background: var(--black); position: relative; }
        .contact-info-section::before {
            content: ''; position: absolute; bottom: -30%; right: -10%;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
        }
        .info-card {
            background: var(--black-card); border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px; padding: 45px 35px; text-align: center;
            transition: all 0.4s ease; height: 100%; position: relative; z-index: 1;
        }
        .info-card:hover {
            border-color: rgba(212, 175, 55, 0.2);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }
        .info-icon {
            width: 70px; height: 70px; background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 20px; font-size: 1.6rem; color: var(--gold);
            transition: all 0.3s ease;
        }
        .info-card:hover .info-icon { background: var(--gold); color: var(--black); }
        .info-card h4 { font-size: 1.3rem; margin-bottom: 12px; }
        .info-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; margin: 0; }
        .info-card a { color: var(--gray); text-decoration: none; transition: color 0.3s; }
        .info-card a:hover { color: var(--gold); }

        /* Contact Form Section */
        .form-section { padding: 100px 0; background: var(--black-light); }
        .form-wrapper {
            background: var(--black-card); border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px; padding: 50px; position: relative;
        }
        .form-wrapper::before {
            content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
            width: 100px; height: 3px; background: var(--gold); border-radius: 2px;
        }
        .form-wrapper h3 {
            font-size: 1.8rem; margin-bottom: 10px; text-align: center;
        }
        .form-wrapper > p {
            color: var(--gray); text-align: center; margin-bottom: 35px; font-size: 0.95rem;
        }
        .form-control {
            background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--white); padding: 14px 18px; border-radius: 10px; font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .form-control:focus {
            background: rgba(255, 255, 255, 0.05); border-color: var(--gold); color: var(--white);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
        }
        .form-control::placeholder { color: var(--gray); }
        .form-label { color: var(--gray-light); font-size: 0.9rem; margin-bottom: 8px; font-weight: 500; }
        textarea.form-control { resize: vertical; min-height: 120px; }
        .form-select {
            background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--white); padding: 14px 18px; border-radius: 10px; font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .form-select:focus {
            background: rgba(255, 255, 255, 0.05); border-color: var(--gold); color: var(--white);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
        }
        .form-select option { background: var(--black-card); color: var(--white); }
        .btn-submit {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--black); font-weight: 600; padding: 14px 40px;
            border: none; border-radius: 30px; transition: all 0.3s ease;
            text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem;
            display: inline-block; width: 100%;
        }
        .btn-submit:hover {
            transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        /* Map Section */
        .map-section { padding: 0; background: var(--black); }
        .map-container {
            position: relative; width: 100%; height: 450px;
            background: var(--black-card); overflow: hidden;
        }
        .map-container iframe {
            width: 100%; height: 100%; border: none;
            filter: grayscale(100%) invert(92%) contrast(83%);
        }
        .map-overlay {
            position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
            background: var(--black-card); border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 15px; padding: 20px 35px; text-align: center;
            backdrop-filter: blur(10px);
        }
        .map-overlay h5 { font-size: 1.1rem; margin-bottom: 5px; }
        .map-overlay p { color: var(--gray); font-size: 0.85rem; margin: 0; }

        /* FAQ Section */
        .faq-section { padding: 100px 0; background: var(--black); position: relative; }
        .faq-section::before {
            content: ''; position: absolute; top: -20%; left: -10%;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
        }
        .accordion-item {
            background: var(--black-card); border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 15px !important; margin-bottom: 15px; overflow: hidden;
        }
        .accordion-button {
            background: var(--black-card); color: var(--white); padding: 22px 25px;
            font-size: 1.05rem; font-weight: 500; border: none; box-shadow: none;
        }
        .accordion-button:not(.collapsed) {
            background: var(--black-card); color: var(--gold); box-shadow: none;
        }
        .accordion-button:focus { box-shadow: none; border-color: transparent; }
        .accordion-button::after {
            filter: invert(1) brightness(0.7);
            transition: transform 0.3s ease;
        }
        .accordion-button:not(.collapsed)::after { filter: invert(0.5) sepia(1) saturate(5) hue-rotate(10deg); }
        .accordion-body {
            color: var(--gray); padding: 0 25px 25px; font-size: 0.95rem; line-height: 1.7;
        }

        /* Working Hours */
        .hours-section { padding: 80px 0; background: var(--black-light); }
        .hours-card {
            background: var(--black-card); border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px; padding: 40px; position: relative; z-index: 1;
        }
        .hours-card h4 { font-size: 1.4rem; margin-bottom: 25px; }
        .hours-list { list-style: none; padding: 0; margin: 0; }
        .hours-list li {
            display: flex; justify-content: space-between; align-items: center;
            padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--gray); font-size: 0.95rem;
        }
        .hours-list li:last-child { border-bottom: none; }
        .hours-list li span:first-child { color: var(--gray-light); }
        .hours-list li .open { color: var(--gold); font-weight: 600; }
        .hours-list li .closed { color: #e74c3c; font-weight: 600; }

        /* Social Connect */
        .social-section { padding: 80px 0; background: var(--black); text-align: center; }
        .social-section h3 { font-size: 2rem; margin-bottom: 15px; }
        .social-section p { color: var(--gray); margin-bottom: 30px; }
        .social-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .social-links a {
            width: 60px; height: 60px; border-radius: 50%;
            background: var(--black-card); border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex; align-items: center; justify-content: center;
            color: var(--gray); font-size: 1.4rem; transition: all 0.3s ease;
        }
        .social-links a:hover {
            background: var(--gold); border-color: var(--gold); color: var(--black);
            transform: translateY(-5px); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
        }

        .btn-gold {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--black) !important; font-weight: 600; padding: 12px 32px;
            border: none; border-radius: 30px; transition: all 0.3s ease;
            text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem;
            display: inline-block; text-decoration: none;
        }
        .btn-gold:hover {
            transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
            color: var(--black) !important;
        }

        @media (max-width: 991px) {
            .page-banner h1 { font-size: 2.8rem; }
            .section-header h2 { font-size: 2.2rem; }
        }
        @media (max-width: 767px) {
            .page-banner { padding: 120px 0 60px; }
            .page-banner h1 { font-size: 2.2rem; }
            .section-header h2 { font-size: 1.8rem; }
            .form-wrapper { padding: 30px; }
            .map-container { height: 350px; }
            .map-overlay { width: 90%; padding: 15px 20px; }
        }


        /* ===== PRODUCTS PAGE ONLY STYLES ===== */
        .page-banner {
            padding: 140px 0 80px;
            background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, #1a1200 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .page-banner::before {
            content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
        }
        .page-banner h1 { font-size: 3.5rem; font-weight: 800; position: relative; z-index: 1; }
        .page-banner p { color: var(--gray); font-size: 1.1rem; max-width: 600px; margin: 15px auto 0; position: relative; z-index: 1; }
        .breadcrumb-nav {
            display: flex; justify-content: center; gap: 15px; margin-top: 20px;
            font-size: 0.9rem; position: relative; z-index: 1;
        }
        .breadcrumb-nav a { color: var(--gray); text-decoration: none; transition: color 0.3s; }
        .breadcrumb-nav a:hover { color: var(--gold); }
        .breadcrumb-nav span { color: var(--gold); }
        .breadcrumb-nav i { color: var(--gray); font-size: 0.7rem; margin-top: 6px; }

        .gold-line {
            width: 80px; height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-dark));
            margin: 20px auto; border-radius: 2px;
        }

        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header h6 {
            color: var(--gold); text-transform: uppercase; letter-spacing: 3px;
            font-size: 0.9rem; font-family: 'Poppins', sans-serif; font-weight: 600; margin-bottom: 15px;
        }
        .section-header h2 { font-size: 2.8rem; font-weight: 700; margin-bottom: 20px; }
        .section-header p { color: var(--gray); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

        .fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

        /* Filter Tabs */
        .filter-section { padding: 40px 0 20px; background: var(--black); }
        .filter-tabs { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .filter-btn {
            background: transparent; border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray); padding: 10px 25px; border-radius: 30px;
            font-size: 0.9rem; font-weight: 500; cursor: pointer;
            transition: all 0.3s ease; font-family: 'Poppins', sans-serif;
        }
        .filter-btn:hover, .filter-btn.active {
            background: var(--gold); border-color: var(--gold); color: var(--black);
        }

        /* Product Cards */
        .products-grid { padding: 40px 0 100px; background: var(--black); position: relative; }
        .products-grid::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
        }
        .product-card {
            background: var(--black-card); border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px; overflow: hidden; transition: all 0.4s ease;
            position: relative; height: 100%;
        }
        .product-card:hover {
            transform: translateY(-10px); border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.1);
        }
        .product-image {
            height: 300px; display: flex; align-items: center; justify-content: center;
            position: relative; overflow: hidden;
        }
        .product-image img { max-height: 240px; transition: transform 0.4s ease; }
        .product-card:hover .product-image img { transform: scale(1.05); }
        .product-tag {
            position: absolute; top: 20px; left: 20px;
            background: var(--gold); color: var(--black);
            padding: 5px 15px; border-radius: 20px;
            font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
        }
        .product-tag.rx { background: #e74c3c; color: var(--white); }
        .product-tag.bestseller { background: var(--gold); }
        .product-tag.new { background: #27ae60; color: var(--white); }
        .product-overlay {
            position: absolute; top: 20px; right: 20px;
            display: flex; flex-direction: column; gap: 10px;
            opacity: 0; transform: translateX(10px);
            transition: all 0.3s ease;
        }
        .product-card:hover .product-overlay { opacity: 1; transform: translateX(0); }
        .overlay-btn {
            width: 42px; height: 42px; border-radius: 50%;
            background: rgba(26, 26, 26, 0.9); backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex; align-items: center; justify-content: center;
            color: var(--white); font-size: 0.9rem; cursor: pointer;
            transition: all 0.3s ease;
        }
        .overlay-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
        .product-content { padding: 25px; }
        .product-content .category {
            color: var(--gold); font-size: 0.8rem; text-transform: uppercase;
            letter-spacing: 1.5px; margin-bottom: 8px; font-weight: 500;
        }
        .product-content h4 { font-size: 1.4rem; margin-bottom: 10px; color: var(--white); }
        .product-content p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 15px; }
        .product-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
        .product-features span {
            background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 4px 12px; border-radius: 15px; font-size: 0.75rem; color: var(--gray);
        }
        .product-meta {
            display: flex; justify-content: space-between; align-items: center;
            padding-top: 15px; border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .product-price { font-size: 1.3rem; font-weight: 700; color: var(--gold); }
        .product-price span { font-size: 0.85rem; color: var(--gray); font-weight: 400; }
        .product-btn {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--black); font-weight: 600; padding: 8px 22px;
            border: none; border-radius: 25px; font-size: 0.8rem;
            text-transform: uppercase; letter-spacing: 0.5px;
            transition: all 0.3s ease; cursor: pointer;
        }
        .product-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); }

        /* Product color variants */
        .product-card.folivit .product-image { background: linear-gradient(135deg, #1a1200, #0a0a0a); }
        .product-card.moxx .product-image { background: linear-gradient(135deg, #1a1a1a, #0a0a0a); }
        .product-card.ketocoal .product-image { background: linear-gradient(135deg, #0d1b2a, #0a0a0a); }
        .product-card.bifen .product-image { background: linear-gradient(135deg, #1a1030, #0a0a0a); }
        .product-card.aurvit .product-image { background: linear-gradient(135deg, #0a1a1a, #0a0a0a); }
        .product-card.moxxil .product-image { background: linear-gradient(135deg, #0a1a30, #0a0a0a); }

        /* Product Detail Modal Styles */
        .modal-content {
            background: var(--black-card); border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px; color: var(--white);
        }
        .modal-header { border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding: 25px; }
        .modal-title { font-size: 1.5rem; color: var(--gold); }
        .btn-close { filter: invert(1); opacity: 0.5; }
        .btn-close:hover { opacity: 1; }
        .modal-body { padding: 25px; }
        .modal-body h6 { color: var(--gold); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin: 20px 0 10px; font-family: 'Poppins', sans-serif; }
        .modal-body h6:first-child { margin-top: 0; }
        .modal-body p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }
        .modal-body ul { color: var(--gray); font-size: 0.9rem; padding-left: 20px; }
        .modal-body ul li { margin-bottom: 6px; }
        .modal-body .price-tag { font-size: 1.8rem; color: var(--gold); font-weight: 700; }
        .modal-body .price-tag span { font-size: 1rem; color: var(--gray); font-weight: 400; }
        .modal-footer { border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 20px 25px; }

        /* Category Banner */
        .category-banner { padding: 60px 0; background: var(--black-light); position: relative; }
        .category-banner::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
        }
        .cat-card {
            background: var(--black-card); border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 15px; padding: 30px 20px; text-align: center;
            transition: all 0.4s ease; cursor: pointer;
        }
        .cat-card:hover {
            border-color: rgba(212, 175, 55, 0.2); transform: translateY(-5px);
        }
        .cat-icon { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
        .cat-card h5 { font-size: 1rem; margin-bottom: 5px; }
        .cat-card p { color: var(--gray); font-size: 0.8rem; margin: 0; }

        /* CTA */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #1a1200 0%, var(--black-light) 50%, #0a0a0a 100%);
            text-align: center; position: relative; overflow: hidden;
        }
        .cta-section::before {
            content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
        }
        .cta-section h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; position: relative; z-index: 1; }
        .cta-section p { color: var(--gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto 30px; position: relative; z-index: 1; }
        .cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

        .btn-gold {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--black) !important; font-weight: 600; padding: 12px 32px;
            border: none; border-radius: 30px; transition: all 0.3s ease;
            text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem;
            display: inline-block; text-decoration: none;
        }
        .btn-gold:hover {
            transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
            color: var(--black) !important;
        }
        .btn-outline-gold {
            border: 2px solid var(--gold); color: var(--gold); background: transparent;
            padding: 12px 32px; border-radius: 30px; font-weight: 600;
            transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px;
            font-size: 0.85rem; display: inline-block; text-decoration: none;
        }
        .btn-outline-gold:hover { background: var(--gold); color: var(--black); }

        @media (max-width: 991px) {
            .page-banner h1 { font-size: 2.8rem; }
            .section-header h2 { font-size: 2.2rem; }
        }
        @media (max-width: 767px) {
            .page-banner { padding: 120px 0 60px; }
            .page-banner h1 { font-size: 2.2rem; }
            .section-header h2 { font-size: 1.8rem; }
            .product-image { height: 250px; }
            .cta-section h2 { font-size: 2rem; }
        }



        /* ============= products single page ============ */


        
        /* --- BANNER SECTION --- */
        .product-banner {
            background: linear-gradient(135deg, var(--black-light) 0%, var(--black-card) 50%, var(--black-light) 100%);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        .product-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse-glow 4s ease-in-out infinite;
        }
        @keyframes pulse-glow {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 1; }
        }
        .breadcrumb-custom {
            background: transparent;
            padding: 0;
            margin-bottom: 20px;
        }
        .breadcrumb-custom a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        .breadcrumb-custom a:hover { color: var(--gold); }
        .breadcrumb-custom .active { color: var(--gold); }
        .breadcrumb-custom .separator {
            color: var(--gold);
            margin: 0 10px;
        }
        .banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(212,175,55,0.15);
            border: 1px solid rgba(212,175,55,0.3);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--gold);
            margin-bottom: 20px;
        }
        .banner-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .banner-subtitle {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 600px;
            line-height: 1.6;
        }

        /* --- PRODUCT HERO (CLEAN IMAGE LEFT) --- */
        .product-hero {
            padding: 80px 0;
            background: var(--black);
        }
        .product-gallery {
            position: relative;
        }
        .main-image-container {
            background: var(--black-card);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(212,175,55,0.1);
        }
        .main-image-container img {
            width: 100%;
            height: auto;
            object-fit: contain;
            transition: transform 0.5s ease;
        }
        .main-image-container:hover img {
            transform: scale(1.05);
        }
        .gallery-actions {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .gallery-action-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(10,10,10,0.8);
            border: 1px solid rgba(212,175,55,0.3);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        .gallery-action-btn:hover {
            background: var(--gold);
            color: var(--black);
        }
        .product-tag-float {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            color: var(--black);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
        }
        .thumbnail-row {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        .thumbnail-item {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s;
            background: var(--black-card);
            padding: 10px;
        }
        .thumbnail-item.active,
        .thumbnail-item:hover {
            border-color: var(--gold);
        }
        .thumbnail-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* --- PRODUCT INFO RIGHT --- */
        .product-info-panel {
            padding-left: 30px;
        }
        .product-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        .product-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--gold);
        }
        .product-reviews-count {
            color: var(--gray);
            font-size: 0.9rem;
        }
        .product-sku {
            color: var(--gray);
            font-size: 0.85rem;
            border-left: 1px solid var(--gray);
            padding-left: 15px;
        }
        .product-price-display {
            margin: 25px 0;
        }
        .price-current {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold);
            font-family: 'Space Grotesk', sans-serif;
        }
        .price-unit {
            font-size: 1rem;
            color: var(--gray);
            font-weight: 400;
        }
        .price-original {
            text-decoration: line-through;
            color: var(--gray);
            margin-left: 15px;
            font-size: 1.2rem;
        }
        .price-save {
            display: inline-block;
            background: rgba(46,204,113,0.2);
            color: #2ecc71;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-left: 10px;
        }

        /* --- VOLUME SELECTOR --- */
        .volume-selector {
            margin: 25px 0;
        }
        .volume-label {
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 12px;
            display: block;
        }
        .volume-options {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .volume-option {
            position: relative;
        }
        .volume-option input {
            position: absolute;
            opacity: 0;
        }
        .volume-option label {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 15px 25px;
            border: 2px solid rgba(212,175,55,0.2);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s;
            background: var(--black-card);
            min-width: 100px;
        }
        .volume-option label:hover {
            border-color: rgba(212,175,55,0.5);
        }
        .volume-option input:checked + label {
            border-color: var(--gold);
            background: rgba(212,175,55,0.1);
        }
        .volume-size {
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--white);
        }
        .volume-price {
            font-size: 0.9rem;
            color: var(--gold);
            margin-top: 5px;
        }
        .volume-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #e74c3c;
            color: white;
            font-size: 0.7rem;
            padding: 2px 8px;
            border-radius: 10px;
        }

        /* --- QUANTITY & BUTTONS --- */
        .quantity-row {
            display: flex;
            align-items: center;
            gap: 20px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        .quantity-selector {
            display: flex;
            align-items: center;
            border: 1px solid rgba(212,175,55,0.3);
            border-radius: 12px;
            overflow: hidden;
        }
        .qty-btn {
            width: 44px;
            height: 44px;
            background: transparent;
            border: none;
            color: var(--gold);
            font-size: 1.2rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .qty-btn:hover { background: rgba(212,175,55,0.1); }
        .qty-input {
            width: 50px;
            height: 44px;
            background: transparent;
            border: none;
            color: var(--white);
            text-align: center;
            font-weight: 600;
            -moz-appearance: textfield;
        }
        .qty-input::-webkit-outer-spin-button,
        .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

        .btn-buy {
            padding: 14px 40px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            color: var(--black);
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-buy:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212,175,55,0.3);
        }
        .btn-wishlist {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: var(--black-card);
            border: 1px solid rgba(212,175,55,0.3);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-wishlist:hover, .btn-wishlist.active {
            background: rgba(231,76,60,0.2);
            border-color: #e74c3c;
            color: #e74c3c;
        }

        /* --- TRUST BADGES --- */
        .trust-row {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(212,175,55,0.1);
            flex-wrap: wrap;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--gray);
            font-size: 0.85rem;
        }
        .trust-item i {
            color: var(--gold);
            font-size: 1.1rem;
        }

        /* --- COMMON SECTIONS (After Product Details) --- */
        /* These sections are shared across all product pages */

        .common-section {
            padding: 80px 0;
            background: var(--black);
        }
        .common-section.alt-bg {
            background: var(--black-light);
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-label {
            display: inline-block;
            color: var(--gold);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 15px;
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .section-desc {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* --- PRODUCT DETAILS ACCORDION --- */
        .details-accordion {
            max-width: 900px;
            margin: 0 auto;
        }
        .accordion-item-custom {
            border-bottom: 1px solid rgba(212,175,55,0.1);
        }
        .accordion-header-custom {
            padding: 25px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s;
        }
        .accordion-header-custom:hover { color: var(--gold); }
        .accordion-header-custom h4 {
            font-size: 1.1rem;
            font-weight: 600;
        }
        .accordion-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1px solid rgba(212,175,55,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            transition: transform 0.3s;
        }
        .accordion-item-custom.active .accordion-icon {
            transform: rotate(45deg);
        }
        .accordion-body-custom {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            color: var(--gray);
            line-height: 1.8;
        }
        .accordion-item-custom.active .accordion-body-custom {
            max-height: 1000px;
            padding-bottom: 25px;
        }

        /* --- INGREDIENT VISUALS --- */
        .ingredient-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .ingredient-card {
            background: var(--black-card);
            border: 1px solid rgba(212,175,55,0.1);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.3s;
        }
        .ingredient-card:hover {
            border-color: rgba(212,175,55,0.3);
            transform: translateY(-5px);
        }
        .ingredient-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .ingredient-name {
            font-weight: 600;
            font-size: 1.1rem;
        }
        .ingredient-percent {
            color: var(--gold);
            font-weight: 700;
            font-size: 1.2rem;
        }
        .ingredient-bar {
            height: 6px;
            background: rgba(212,175,55,0.1);
            border-radius: 3px;
            overflow: hidden;
            margin-bottom: 10px;
        }
        .ingredient-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
            border-radius: 3px;
            transition: width 1s ease;
        }
        .ingredient-desc {
            font-size: 0.85rem;
            color: var(--gray);
        }

       

        /* --- COMPARISON TABLE --- */
        .comparison-table-wrap {
            max-width: 900px;
            margin: 0 auto;
            overflow-x: auto;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
        }
        .comparison-table th,
        .comparison-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid rgba(212,175,55,0.1);
        }
        .comparison-table th {
            color: var(--gold);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .comparison-table td {
            color: var(--gray);
        }
        .comparison-table td:first-child {
            color: var(--white);
            font-weight: 500;
        }
        .check-icon { color: #2ecc71; }
        .cross-icon { color: #e74c3c; }

        /* --- REVIEWS MASONRY --- */
        .reviews-masonry {
            column-count: 3;
            column-gap: 25px;
        }
        @media (max-width: 991px) {
            .reviews-masonry { column-count: 2; }
        }
        @media (max-width: 576px) {
            .reviews-masonry { column-count: 1; }
        }
        .review-card-masonry {
            break-inside: avoid;
            background: var(--black-card);
            border: 1px solid rgba(212,175,55,0.1);
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 25px;
            transition: all 0.3s;
        }
        .review-card-masonry:hover {
            border-color: rgba(212,175,55,0.3);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }
        .review-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--black);
            font-size: 1rem;
        }
        .review-meta h5 {
            font-size: 1rem;
            margin-bottom: 2px;
        }
        .review-meta span {
            font-size: 0.8rem;
            color: var(--gray);
        }
        .review-stars {
            color: var(--gold);
            margin-bottom: 12px;
            font-size: 0.85rem;
        }
        .review-text {
            color: var(--gray);
            line-height: 1.6;
            font-size: 0.9rem;
        }
        .verified-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: #2ecc71;
            font-size: 0.75rem;
            margin-top: 12px;
        }

        /* --- CTA SECTION --- */
        .cta-section {
            padding: 100px 0;
            text-align: center;
            background: linear-gradient(135deg, var(--black-light) 0%, var(--black-card) 100%);
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
        }
        .cta-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
        }
        .cta-desc {
            color: var(--gray);
            max-width: 500px;
            margin: 0 auto 40px;
            position: relative;
        }
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
        }
        .btn-outline-gold {
            padding: 14px 40px;
            background: transparent;
            color: var(--gold);
            border: 2px solid var(--gold);
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }
        .btn-outline-gold:hover {
            background: var(--gold);
            color: var(--black);
        }

        /* --- ANIMATIONS --- */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 991px) {
            .banner-title { font-size: 2.5rem; }
            .product-info-panel { padding-left: 0; margin-top: 40px; }
            .section-title { font-size: 2rem; }
            .cta-title { font-size: 2rem; }
            .timeline::before { left: 25px; }
            .timeline-dot { width: 50px; height: 50px; font-size: 0.9rem; }
        }
        @media (max-width: 576px) {
            .banner-title { font-size: 2rem; }
            .price-current { font-size: 1.8rem; }
            .volume-option label { padding: 12px 18px; min-width: 80px; }
            .trust-row { gap: 15px; }
            .section-title { font-size: 1.5rem; }
        }


        /* ============== cart page css =================== */



        /* ============ PAGE-SPECIFIC STYLES ============ */

        /* Banner */
        .cart-banner {
            background: linear-gradient(135deg, var(--black-light) 0%, var(--black-card) 50%, var(--black-light) 100%);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }
        .cart-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse-glow 4s ease-in-out infinite;
        }
        @keyframes pulse-glow {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 1; }
        }
        .breadcrumb-custom {
            background: transparent;
            padding: 0;
            margin-bottom: 20px;
        }
        .breadcrumb-custom a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        .breadcrumb-custom a:hover { color: var(--gold); }
        .breadcrumb-custom .active { color: var(--gold); }
        .breadcrumb-custom .separator {
            color: var(--gold);
            margin: 0 10px;
        }
        .banner-title {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 10px;
            background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .banner-subtitle {
            font-size: 1rem;
            color: var(--gray);
        }

        /* Cart Section */
        .cart-section {
            padding: 60px 0;
            background: var(--black);
        }

        /* Cart Item */
        .cart-item {
            background: var(--black-card);
            border: 1px solid rgba(212,175,55,0.1);
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 25px;
            transition: all 0.3s;
        }
        .cart-item:hover {
            border-color: rgba(212,175,55,0.3);
        }
        .cart-item-image {
            width: 100px;
            height: 100px;
            border-radius: 12px;
            overflow: hidden;
            background: var(--black-light);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .cart-item-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 10px;
        }
        .cart-item-details {
            flex: 1;
        }
        .cart-item-name {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--white);
        }
        .cart-item-variant {
            color: var(--gray);
            font-size: 0.85rem;
            margin-bottom: 8px;
        }
        .cart-item-price {
            color: var(--gold);
            font-weight: 700;
            font-size: 1.1rem;
        }
        .cart-item-price .original {
            text-decoration: line-through;
            color: var(--gray);
            font-weight: 400;
            font-size: 0.9rem;
            margin-left: 8px;
        }
        .cart-item-total {
            color: var(--gold);
            font-weight: 700;
            font-size: 1.2rem;
            min-width: 80px;
            text-align: right;
        }

        /* Quantity */
        .cart-qty-wrap {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .qty-label {
            color: var(--gray);
            font-size: 0.85rem;
        }
        .qty-selector {
            display: flex;
            align-items: center;
            border: 1px solid rgba(212,175,55,0.3);
            border-radius: 10px;
            overflow: hidden;
        }
        .qty-btn {
            width: 36px;
            height: 36px;
            background: transparent;
            border: none;
            color: var(--gold);
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .qty-btn:hover { background: rgba(212,175,55,0.1); }
        .qty-input {
            width: 40px;
            height: 36px;
            background: transparent;
            border: none;
            color: var(--white);
            text-align: center;
            font-weight: 600;
            -moz-appearance: textfield;
        }
        .qty-input::-webkit-outer-spin-button,
        .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

        /* Remove Button */
        .btn-remove {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(231,76,60,0.1);
            border: 1px solid rgba(231,76,60,0.3);
            color: #e74c3c;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            flex-shrink: 0;
        }
        .btn-remove:hover {
            background: rgba(231,76,60,0.2);
            transform: scale(1.1);
        }

        /* Order Summary */
        .summary-card {
            background: var(--black-card);
            border: 1px solid rgba(212,175,55,0.1);
            border-radius: 16px;
            padding: 30px;
            position: sticky;
            top: 20px;
        }
        .summary-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(212,175,55,0.1);
        }
        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            color: var(--gray);
            font-size: 0.95rem;
        }
        .summary-row.total {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(212,175,55,0.2);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--white);
        }
        .summary-row.total .total-price {
            color: var(--gold);
            font-size: 1.4rem;
        }
        .summary-row.discount {
            color: #2ecc71;
        }

        /* Promo Code */
        .promo-wrap {
            margin: 20px 0;
            display: flex;
            gap: 10px;
        }
        .promo-input {
            flex: 1;
            background: var(--black-light);
            border: 1px solid rgba(212,175,55,0.2);
            border-radius: 10px;
            padding: 12px 15px;
            color: var(--white);
            font-size: 0.9rem;
        }
        .promo-input:focus {
            outline: none;
            border-color: var(--gold);
        }
        .promo-input::placeholder { color: var(--gray); }
        .btn-promo {
            padding: 12px 20px;
            background: rgba(212,175,55,0.1);
            border: 1px solid var(--gold);
            color: var(--gold);
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }
        .btn-promo:hover {
            background: var(--gold);
            color: var(--black);
        }

        /* Checkout Button */
        .btn-checkout {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            color: var(--black);
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
        .btn-checkout:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212,175,55,0.3);
        }

        /* Continue Shopping */
        .continue-link {
            display: block;
            text-align: center;
            color: var(--gray);
            text-decoration: none;
            margin-top: 20px;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        .continue-link:hover { color: var(--gold); }
        .continue-link i { margin-right: 8px; }

        /* Trust Badges */
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 25px;
            flex-wrap: wrap;
        }
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--gray);
            font-size: 0.8rem;
        }
        .trust-badge i { color: var(--gold); }

        /* Empty Cart */
        .empty-cart {
            text-align: center;
            padding: 80px 20px;
        }
        .empty-cart-icon {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: var(--black-card);
            border: 2px solid rgba(212,175,55,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 3rem;
            color: var(--gold);
        }
        .empty-cart h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        .empty-cart p {
            color: var(--gray);
            margin-bottom: 30px;
        }
        .btn-shop {
            padding: 14px 40px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            color: var(--black);
            border: none;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }
        .btn-shop:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212,175,55,0.3);
        }

        /* Saved for Later */
        .saved-section {
            padding: 40px 0 80px;
            background: var(--black-light);
        }
        .saved-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 30px;
        }
        .saved-item {
            background: var(--black-card);
            border: 1px solid rgba(212,175,55,0.1);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 15px;
        }
        .saved-item img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            border-radius: 8px;
            background: var(--black-light);
            padding: 5px;
        }
        .saved-item-info { flex: 1; }
        .saved-item-name {
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 3px;
        }
        .saved-item-price {
            color: var(--gold);
            font-weight: 600;
            font-size: 0.9rem;
        }
        .btn-move-cart {
            padding: 8px 20px;
            background: rgba(212,175,55,0.1);
            border: 1px solid var(--gold);
            color: var(--gold);
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-move-cart:hover {
            background: var(--gold);
            color: var(--black);
        }
        .btn-remove-saved {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: transparent;
            border: 1px solid rgba(231,76,60,0.3);
            color: #e74c3c;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            margin-left: 10px;
            transition: all 0.3s;
        }
        .btn-remove-saved:hover { background: rgba(231,76,60,0.1); }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .banner-title { font-size: 2.2rem; }
            .cart-item {
                flex-wrap: wrap;
            }
            .cart-item-image {
                width: 80px;
                height: 80px;
            }
            .cart-item-total {
                width: 100%;
                text-align: left;
                margin-top: 10px;
            }
            .summary-card {
                margin-top: 30px;
                position: static;
            }
        }
        @media (max-width: 576px) {
            .banner-title { font-size: 1.8rem; }
            .cart-item {
                padding: 15px;
                gap: 15px;
            }
            .cart-item-image {
                width: 70px;
                height: 70px;
            }
            .cart-item-name { font-size: 1rem; }
            .cart-qty-wrap {
                width: 100%;
                justify-content: space-between;
            }
            .promo-wrap { flex-direction: column; }
        }




        /* ============ checkout page css  ================= */



        /* ============ PAGE-SPECIFIC STYLES ============ */

        /* Checkout Section */
        .checkout-section {
            padding: 60px 0;
            background: var(--black);
        }

        /* Section Titles */
        .checkout-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--white);
        }

        /* Form Inputs */
        .form-input {
            width: 100%;
            background: var(--white);
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 12px 15px;
            color: var(--black);
            font-size: 0.95rem;
            margin-bottom: 15px;
            transition: border-color 0.3s;
        }
        .form-input:focus {
            outline: none;
            border-color: var(--gold);
        }
        .form-input::placeholder { color: #999; }

        select.form-input {
            color: var(--black);
            cursor: pointer;
        }

        /* Checkbox */
        .form-check-input {
            width: 16px;
            height: 16px;
            border: 1px solid var(--gray);
            background: var(--black-card);
            cursor: pointer;
        }
        .form-check-input:checked {
            background-color: var(--gold);
            border-color: var(--gold);
        }
        .form-check-label {
            color: var(--gray);
            font-size: 0.85rem;
            margin-left: 8px;
            cursor: pointer;
        }

        /* Shipping Options */
        .shipping-option {
            background: var(--black-card);
            border: 1px solid rgba(212,175,55,0.2);
            border-radius: 8px;
            padding: 15px 20px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: all 0.3s;
        }
        .shipping-option:hover {
            border-color: var(--gold);
        }
        .shipping-option.selected {
            border-color: var(--gold);
            background: rgba(212,175,55,0.05);
        }
        .shipping-option input[type="radio"] {
            width: 18px;
            height: 18px;
            accent-color: var(--gold);
            cursor: pointer;
        }
        .shipping-label {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
            margin-left: 12px;
            cursor: pointer;
        }
        .shipping-label span {
            color: var(--white);
            font-size: 0.95rem;
        }
        .shipping-price {
            color: var(--gold);
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Payment Alert */
        .payment-alert {
            background: rgba(231,76,60,0.1);
            border: 1px solid rgba(231,76,60,0.3);
            border-radius: 8px;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #e74c3c;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .payment-alert i {
            font-size: 1.2rem;
        }

        /* Order Note */
        .note-toggle {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--gray);
            font-size: 0.9rem;
            cursor: pointer;
            margin-bottom: 15px;
        }
        .note-toggle input[type="checkbox"] {
            accent-color: var(--gold);
        }
        .note-textarea {
            width: 100%;
            background: var(--black-card);
            border: 1px solid rgba(212,175,55,0.2);
            border-radius: 8px;
            padding: 12px 15px;
            color: var(--white);
            font-size: 0.9rem;
            min-height: 80px;
            resize: vertical;
            margin-bottom: 20px;
        }
        .note-textarea:focus {
            outline: none;
            border-color: var(--gold);
        }

        /* Terms */
        .terms-text {
            color: var(--gray);
            font-size: 0.85rem;
            margin: 20px 0;
            line-height: 1.6;
        }
        .terms-text a {
            color: var(--gold);
            text-decoration: none;
        }
        .terms-text a:hover {
            text-decoration: underline;
        }

        /* Buttons */
        .btn-return {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--gray);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
            background: none;
            border: none;
            cursor: pointer;
        }
        .btn-return:hover {
            color: var(--gold);
        }

        .btn-place-order {
            padding: 14px 40px;
            background: var(--white);
            color: var(--black);
            border: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-place-order:hover {
            background: var(--gold);
        }
        .btn-place-order:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Order Summary Card */
        .summary-card {
            background: var(--black-card);
            border: 1px solid rgba(212,175,55,0.1);
            border-radius: 12px;
            padding: 25px;
        }
        .summary-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(212,175,55,0.1);
        }

        /* Order Item */
        .order-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(212,175,55,0.1);
        }
        .order-item:last-of-type {
            border-bottom: none;
        }
        .order-item-img {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            background: var(--black-light);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }
        .order-item-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 5px;
        }
        .order-item-qty {
            position: absolute;
            top: -5px;
            right: -5px;
            width: 20px;
            height: 20px;
            background: var(--gold);
            color: var(--black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
        }
        .order-item-info {
            flex: 1;
        }
        .order-item-name {
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 3px;
        }
        .order-item-variant {
            font-size: 0.8rem;
            color: var(--gray);
        }
        .order-item-price {
            text-align: right;
        }
        .order-item-price .current {
            color: var(--white);
            font-weight: 600;
            font-size: 0.9rem;
        }
        .order-item-price .original {
            color: var(--gray);
            font-size: 0.8rem;
            text-decoration: line-through;
            margin-left: 5px;
        }

        /* Coupon */
        .coupon-wrap {
            display: flex;
            gap: 10px;
            margin: 20px 0;
            padding: 20px 0;
            border-top: 1px solid rgba(212,175,55,0.1);
            border-bottom: 1px solid rgba(212,175,55,0.1);
        }
        .coupon-input {
            flex: 1;
            background: var(--black-light);
            border: 1px solid rgba(212,175,55,0.2);
            border-radius: 6px;
            padding: 10px 15px;
            color: var(--white);
            font-size: 0.9rem;
        }
        .coupon-input:focus {
            outline: none;
            border-color: var(--gold);
        }
        .coupon-input::placeholder { color: var(--gray); }
        .btn-coupon {
            padding: 10px 20px;
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-coupon:hover {
            background: var(--gold);
            color: var(--black);
        }

        /* Summary Rows */
        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            color: var(--gray);
            font-size: 0.9rem;
        }
        .summary-row.total {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(212,175,55,0.2);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--white);
        }
        .summary-row.total .total-price {
            color: var(--gold);
            font-size: 1.2rem;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .checkout-section { padding: 40px 0; }
            .summary-card { margin-top: 30px; }
        }
        @media (max-width: 576px) {
            .shipping-option { padding: 12px 15px; }
            .btn-place-order { width: 100%; }
        }