/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

header .nav-links li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

header .nav-links li a:hover {
    color: #ffcc00;
}

section {
    padding: 20px;
    text-align: center;
}

#home {
    background: url('background.jpg') no-repeat center center/cover;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#home h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

#home p {
    font-size: 20px;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.filters input, .filters select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
}

.product-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

#load-more {
    background-color: #ffcc00;
    color: #333;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

#load-more:hover {
    background-color: #e6b800;
}

#cart {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#cart button {
    background-color: #ffcc00;
    color: #333;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#cart button:hover {
    background-color: #e6b800;

}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}
 #contact {
            background: #fff8f0;
            
            padding: 20px;
            text-align: center;
        }

 .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns for larger screens */
    gap: 20px; /* Space between map and form */
    margin-top: 20px;
}

.contact-form {
    background: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


        .contact-info {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

       .contact-details {
    margin-top: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff9933;
    min-width: 24px;
    margin-top: 4px;
}

.contact-item div {
    flex: 1;
}

.contact-item h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 2.1rem;
}

.contact-item p {
    margin: 0;
    color: #666;
    line-height: 1.9;
}

        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #25D366;
            color: white;
            padding: 1rem;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            z-index: 1000;
        }

        /* Enhanced Checkout Form */
       /* #checkout {
            background: rgba(0,0,0,0.5);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: none;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }*/

        #checkout-form {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            position: relative;
            transform: translateY(-20px);
            animation: slideUp 0.3s ease;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #4a2c0a;
        }
.banner {
    text-align: center; /* Center the image horizontally */
    margin: 20px 0; /* Add spacing above and below the banner */
}

.banner img {
    max-width: 100%; /* Ensure the image doesn't exceed its container's width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for better aesthetics */
}

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #eee;
            border-radius: 8px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #ff9933;
            outline: none;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { transform: translateY(20px); }
            to { transform: translateY(0); }
        }


       /* Hide the navigation menu on mobile */
@media (max-width: 768px) {
    header .nav-links {
        display: none; /* Hide the menu */
    }
 .contact-container {
        grid-template-columns: 1fr; /* Single column layout for mobile */
    }

    .contact-form {
        order: 1; /* Place the contact form first */
    }
 .banner img {
        width: 90%; /* Reduce image width for mobile devices */
        margin: 0 auto; /* Center the image */
    }

    .contact-info {
        order: 2; /* Place the contact info (including the map) second */
    }

    .google-map iframe {
        height: 200px; /* Reduce height for mobile */
    }
        }
#get-in-touch {
    padding: 20px;
    text-align: center;
}



.map iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

.contact-form {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}


.contact-form button {
    background-color: #ffcc00;
    color: #333;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}
#cart, #checkout {
    display: none !important;
}
