                                        /* PREMIUM FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500&display=swap');

:root {
    --primary-color: #4A5D23; /* Deep Organic Green */
    --accent-color: #D4AF37; /* Luxury Gold */
    --bg-color: #F9F7F2; /* Creamy Milk White */
    --text-color: #333333;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- TOP STICKY HEADER --- */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.top-bar span { margin-right: 15px; }
.top-bar .offer { color: var(--accent-color); font-weight: 600; }

/* --- MAIN NAVIGATION --- */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px 5%;
    position: sticky;
    top: 40px; /* Below top-bar */
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-links { display: flex; gap: 30px; }

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-color);
}

/* --- HERO SECTION --- */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://vipasinternational.com/images/bannerfinal.jpg?v=1714696870&width=2800'); /* Placeholder Luxury Soap Image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 { font-size: 4rem; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; }

.btn-gold {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 40px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
}

.btn-gold:hover { background-color: #b89628; }

/* --- SECTIONS --- */
.section { padding: 80px 10%; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; }

/* --- PRODUCT CARD --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
}

.product-card:hover { transform: translateY(-10px); }
.product-card h3 { margin: 15px 0; font-size: 1.5rem; }
.price { color: var(--accent-color); font-size: 1.2rem; font-weight: 600; margin-bottom: 15px; }

/* --- INGREDIENTS GRID --- */
.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.ingredient-item { background: var(--white); padding: 20px; border: 1px solid #eee; }

/* --- FOOTER --- */
footer {
    background: #222;
    color: #bbb;
    padding: 60px 5% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 { color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { color: var(--accent-color); }

.social-links a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.2rem;
    color: var(--white);
}

.copyright {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* --- FLOATING BUTTONS --- */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp-btn { background-color: #25D366; }
.call-btn { background-color: #007bff; }

/* Responsive */
@media (max-width: 768px) {
    .top-bar { flex-direction: column; text-align: center; gap: 5px; }
    .nav-links { display: none; } /* Simplified for code brevity */
    .hero-content h1 { font-size: 2.5rem; }
}    

/* --- MOBILE RESPONSIVE STYLES --- */

/* 1. Hamburger Icon (Hidden on Desktop) */
.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* 2. Media Query for Mobile Devices */
@media (max-width: 768px) {
    
    /* Stack the Top Bar Information */
    .top-bar {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        font-size: 0.8rem;
    }
    .top-bar .offer { display: none; } /* Hides offer on small phones to save space */

    /* Navigation Menu Adjustments */
    .hamburger { display: block; } /* Show hamburger icon */

    .nav-links {
        display: none; /* Hide menu links by default */
        flex-direction: column;
        position: absolute;
        top: 100%; /* Push below header */
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 20px 0;
        text-align: center;
    }

    /* This class is added by JS when you click the icon */
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }

    /* Hero/Banner Image Adjustment */
    .hero {
        height: 50vh; /* Make banner shorter on mobile */
        background-position: center center;
    }
    
    .hero-content h1 {
        font-size: 2rem; /* Smaller text size */
    }

    /* Product Grid Stacking */
    .product-grid, .footer-content {
        grid-template-columns: 1fr; /* Stack items vertically */
    }

    .floating-btns {
        bottom: 20px;
        right: 20px;
    }
}            