* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: #3c2f2f;
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.nav-links a i {
    margin-right: 0.5rem;
}

.nav-links a:hover {
    color: #e6b800;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    height: 100vh;
    background: url('images/hero-background.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-image {
    max-width: 600px;
    width: 100%;
    margin: 0 auto 1rem;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    background: #e6b800;
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
}

.btn:hover {
    background: #c79a00;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
}

.whatsapp-btn:hover {
    background: #1DA851;
}

.buy-btn {
    margin-right: 0.5rem;
}

.button-group {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem 1rem;
}

.product-image {
    cursor: pointer;
}

.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.image-modal.active {
    display: flex;
}

#modal-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.close-modal:hover {
    color: #e6b800;
}

.about, .products, .contact {
    padding: 5rem 0;
    text-align: center;
}

.about h2, .products h2, .contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #3c2f2f;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
    color: #3c2f2f;
}

.product-card p {
    padding: 0 1rem 1rem;
}

.contact form {
    max-width: 600px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact input, .contact textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact textarea {
    resize: vertical;
    min-height: 150px;
}

.contact .hidden {
    display: none;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #e6b800;
}

footer {
    background: #3c2f2f;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
    margin-bottom: 60px; /* Prevent footer from overlapping bottom nav on mobile */
}

.social-links a {
    color: #fff;
    margin: 0 1rem;
    font-size: 1.5rem;
}

.social-links a:hover {
    color: #e6b800;
}

@media (max-width: 768px) {
    .navbar {
        top: auto;
        bottom: 0;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
        padding: 0.5rem 0;
    }

    .navbar .container {
        justify-content: center;
    }

    .logo {
        display: none; /* Hide logo on mobile for compact nav */
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
        background: #3c2f2f;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        padding: 0.5rem;
        position: relative;
    }

    .nav-links .nav-text {
        display: none; /* Hide text labels on mobile */
    }

    .nav-links a:hover::after {
        content: attr(title);
        position: absolute;
        bottom: 2.5rem;
        left: 50%;
        transform: translateX(-50%);
        background: #e6b800;
        color: #fff;
        padding: 0.2rem 0.5rem;
        border-radius: 3px;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .menu-toggle {
        display: none; /* No toggle needed as icons are always visible */
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-image {
        max-width: 80%;
    }

    body {
        padding-bottom: 60px; /* Prevent content from being hidden under bottom nav */
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* Force two-column layout on mobile */
        gap: 1rem;
    }

    .button-group {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .buy-btn {
        margin-right: 0;
        flex: 1;
        text-align: center;
    }

    .whatsapp-btn {
        flex: 0 0 auto;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}