  /* === FOOTER SECTION STYLES === */

        /* === GLOBAL STYLES === */
        :root {
            --primary-gold: #B8860B;
            --secondary-beige: #E8D8C5;
            --cream-bg: #FDF8F3;
            --dark-text: #2C1810;
            --light-text: #7A6C5D;
            --white: #FFFFFF;
            --light-gold: #D4AF37;
            --shadow: rgba(184, 134, 11, 0.15);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--light-text);
            background-color: var(--cream-bg);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            color: var(--dark-text);
            font-weight: 600;
        }

        a {
            text-decoration: none;
            transition: var(--transition);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .btn-gold {
            background: var(--primary-gold);
            color: var(--white);
        }

        .btn-gold:hover {
            background: var(--light-gold);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px var(--shadow);
        }

        .btn-outline-gold {
            background: transparent;
            color: var(--primary-gold);
            border: 2px solid var(--primary-gold);
        }

        .btn-outline-gold:hover {
            background: var(--primary-gold);
            color: var(--white);
        }

        .text-gold {
            color: var(--primary-gold) !important;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .section-header p {
            max-width: 600px;
            margin: 0 auto;
        }

        /* === HEADER TOP SECTION STYLES === */
        .header-top-section {
            background: var(--dark-text);
            color: var(--secondary-beige);
            padding: 8px 0;
            font-size: 0.9rem;
        }

        .header-top-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-contact ul {
            display: flex;
            gap: 20px;
            list-style: none;
        }

        .header-contact li {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .header-contact a {
            color: var(--secondary-beige);
        }

        .header-contact a:hover {
            color: var(--primary-gold);
        }

        .header-social {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .header-social a {
            width: 30px;
            height: 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(212, 197, 162, 0.1);
            border-radius: 50%;
            color: var(--secondary-beige);
        }

        .header-social a:hover {
            background: var(--primary-gold);
            transform: translateY(-2px);
        }

        /* === MAIN NAVIGATION STYLES === */
        .main-navigation {
            background: var(--white);
            box-shadow: 0 2px 15px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .nav-logo img {
            height: 50px;
            width: auto;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark-text);
            cursor: pointer;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-menu ul {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-menu a {
            color: var(--dark-text);
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--primary-gold);
        }

        .nav-menu a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-gold);
        }

        .cart-btn {
            position: relative;
            background: none;
            border: none;
            font-size: 1.2rem;
            color: var(--dark-text);
            cursor: pointer;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--primary-gold);
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* === HERO SECTION STYLES === */
        .hero-section {
            background: linear-gradient(135deg, var(--cream-bg) 0%, var(--secondary-beige) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .hero-content {
           
        }

        .hero-content h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-content h1 span {
            color: var(--primary-gold);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
        }

        .stat-item h4 {
            font-size: 1.8rem;
            margin-bottom: 5px;
        }

        /* === ANNOUNCEMENT BAR STYLES === */
        .announcement-bar {
            background: var(--primary-gold);
            color: var(--white);
            text-align: center;
            padding: 12px 0;
            font-weight: 500;
            letter-spacing: 1px;
        }

        /* === FEATURES SECTION STYLES === */
        .features-section {
            padding: 80px 0;
            background: var(--white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-card {
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            background: var(--cream-bg);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px var(--shadow);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--secondary-beige);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
            color: var(--primary-gold);
        }

        .feature-card h4 {
            margin-bottom: 10px;
        }

        .feature-card p {
            flex-grow: 1;
        }

        /* === PRODUCTS SECTION STYLES === */
        .products-section {
            padding: 80px 0;
            background: var(--cream-bg);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px var(--shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px var(--shadow);
        }

        .product-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary-gold);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .product-info {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-category {
            color: var(--primary-gold);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .product-info h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .product-info p {
            margin-bottom: 15px;
            flex-grow: 1;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .current-price {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-gold);
        }

        .original-price {
            text-decoration: line-through;
        }

        .product-info .btn {
            margin-top: auto;
            width: 100%;
        }

        /* === ABOUT SECTION STYLES === */
        .about-section {
            padding: 80px 0;
            background: var(--white);
        }

        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-image {
            flex: 1;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px var(--shadow);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-badge {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: var(--primary-gold);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 500;
        }

        .about-content {
            flex: 1;
        }

        .about-features {
            margin: 25px 0 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .feature-item i {
            color: var(--primary-gold);
        }

        /* === TESTIMONIALS SECTION STYLES === */
        .testimonials-section {
            padding: 80px 0;
            background: var(--cream-bg);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px var(--shadow);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .testimonial-text {
            flex-grow: 1;
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
        }

        .testimonial-text:before {
            content: '"';
            font-size: 3rem;
            color: var(--secondary-beige);
            position: absolute;
            left: 0;
            top: -15px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: auto;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .stars {
            color: var(--primary-gold);
        }

        /* === CONTACT SECTION STYLES === */
        .contact-section {
            padding: 80px 0;
            background: var(--white);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 20px;
            border: 1px solid var(--secondary-beige);
            border-radius: 10px;
            background: var(--cream-bg);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
        }

        .form-group textarea {
            resize: vertical;
        }

        .contact-form button {
            width: 100%;
        }

        .contact-info h4 {
            margin-bottom: 30px;
        }

        .info-item {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .info-item i {
            color: var(--primary-gold);
            font-size: 1.2rem;
            margin-top: 3px;
        }

        .info-item h6 {
            margin-bottom: 5px;
        }

        /* === FOOTER SECTION STYLES === */
        .footer-section {
            background: var(--dark-text);
            color: var(--secondary-beige);
            padding: 60px 0 20px;
					
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            height: 130px;
            margin-bottom: 20px;
        }

        .footer-column h5 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.2rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: var(--secondary-beige);
        }

        .footer-column a:hover {
            color: var(--primary-gold);
            padding-left: 5px;
        }

        .contact-list li {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(212, 197, 162, 0.1);
            border-radius: 50%;
            color: var(--secondary-beige);
        }

        .footer-social a:hover {
            background: var(--primary-gold);
            transform: translateY(-2px);
					color: var(--secondary-beige) !important;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(212, 197, 162, 0.2);
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: var(--primary-gold);
            margin: 0 10px;
        }

        /* === WHATSAPP BUTTON === */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
            z-index: 1000;
            transition: var(--transition);
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
        }

        
        /* === RESPONSIVE DESIGN === */
        @media (max-width: 992px) {
            .hero-container {
                flex-direction: column;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 280px;
                height: 100vh;
                background: var(--white);
                padding: 80px 30px 30px;
                transition: var(--transition);
                box-shadow: 0 0 20px rgba(0,0,0,0.1);
                flex-direction: column;
                z-index: 1001;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu ul {
                flex-direction: column;
                gap: 20px;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .about-container {
                flex-direction: column;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .header-top-content {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .hero-section {
                padding: 60px 0;
            }

            .features-section,
            .products-section,
            .about-section,
            .testimonials-section,
            .contact-section {
                padding: 60px 0;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .hero-stats {
                
                gap: 7px !important;
            }

            .contact-form .form-row {
                grid-template-columns: 1fr;
            }

            .hero-shape {
                width: 280px;
                height: 280px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .products-grid,
            .features-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 1.8rem;
            }

            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
    

/* Contact Section Container */
.contact-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Contact Form Column */
.contact-form-col {
    padding-right: 30px;
}

.section-header h2 {
    color: #2C1810;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: #7A6C5D;
    margin-bottom: 30px;
}

/* Style Contact Form 7 to match your design */
.wpcf7-form {
    margin-top: 20px;
}

.wpcf7-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.wpcf7-form p {
    margin: 0 0 20px 0 !important;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 8px;
    color: #2C1810;
    font-weight: 500;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100% !important;
    padding: 12px 20px !important;
    border: 1px solid #E8D8C5 !important;
    border-radius: 8px !important;
    background: #FDF8F3 !important;
    color: #2C1810 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    border-color: #B8860B !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.1) !important;
}

.wpcf7-form textarea {
    resize: vertical !important;
    min-height: 120px !important;
}

/* Submit Button Styling */
.wpcf7-form .wpcf7-submit {
    background: #B8860B !important;
    color: white !important;
    padding: 12px 35px !important;
    border-radius: 30px !important;
    border: none !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

.wpcf7-form .wpcf7-submit:hover {
    background: #D4AF37 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.2) !important;
}

/* Contact Info Column */
.contact-info-col {
    padding-left: 30px;
}

.contact-info h4 {
    color: #2C1810;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item i {
    color: #B8860B;
    font-size: 1.2rem;
    margin-top: 5px;
    min-width: 20px;
}

.info-item h6 {
    color: #2C1810;
    margin-bottom: 5px;
    font-size: 1rem;
}

.info-item p {
    color: #7A6C5D;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-col,
    .contact-info-col {
        padding: 0;
    }
    
    .wpcf7-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}




        .footer-section {
            background: var(--dark-text);
            color: var(--secondary-beige);
            padding: 60px 0 20px;
					
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            height: 130px;
            margin-bottom: 20px;
        }

        .footer-column h5 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.2rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: var(--secondary-beige);
        }

        .footer-column a:hover {
            color: var(--primary-gold);
            padding-left: 5px;
        }

        .contact-list li {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(212, 197, 162, 0.1);
            border-radius: 50%;
            color: var(--secondary-beige);
        }

        .footer-social a:hover {
            background: var(--primary-gold);
            transform: translateY(-2px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(212, 197, 162, 0.2);
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: var(--primary-gold);
            margin: 0 10px;
        }
