/* Reset and Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
    padding: 0 10px;
}

/* Navbar Styling */
.navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: #333;
    padding: 15px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
}

.navbar a:hover {
    background-color: #555;
    border-radius: 5px;
}

/* Category Container */
.category-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

/* Category Card Styling */
.category-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: 200px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.category-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.category-card h2 {
    font-size: 1.1em;
    margin: 10px 0;
}

.category-card a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

.category-card a:hover {
    background-color: #555;
}

.category-card:hover {
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .category-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 categories per line */
        gap: 15px; /* Adjust gap between cards */
        align-items: center;
        padding: 10px;
    }

    .category-card {
        width: 100%; /* Make the category card take full width of its grid cell */
        max-width: 150px; /* Limit the maximum width to ensure cards are smaller */
        font-size: 0.9em; /* Reduce font size for smaller screens */
        padding: 10px; /* Make padding smaller */
        transition: transform 0.2s; /* Slightly quicker hover transition */
    }

    .category-card img {
        width: 100%;
        height: 120px; /* Adjust image height */
    }

    .category-card h2 {
        font-size: 1em; /* Smaller font size for headings */
        margin: 5px 0;
    }

    .category-card a {
        padding: 5px 10px; /* Smaller padding for the links */
        font-size: 0.9em; /* Smaller font size for the links */
    }
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

header nav {
    margin-top: 10px;
}

header nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

main {
    padding: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid #ccc;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #1c2736;
    color: white;
}

.product-card .price {
    font-size: 16px;
    color: #FF5733; /* Orange color for price */
    font-weight: bold;
    margin-top: 10px;
}

footer {
    background-color: #1c2736;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer .footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

footer p {
    margin: 10px 0;
    font-size: 14px;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    font-size: 20px;
}

.social-icons a i {
    color: #fff;
}

.social-icons a:hover i {
    color: #f1c40f;
}


 /* --- WHATSAPP POPUP STYLES --- */
        @keyframes fadeInZoom {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        .whatsapp-popup-overlay {
            display: none; /* Hidden by default */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 2000;
        }
        .whatsapp-popup-content {
            position: relative;
            background: #1c2736;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            width: 90%;
            max-width: 400px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            border: 2px solid #25D366;
            animation: fadeInZoom 0.5s ease-out;
        }
        .whatsapp-popup-close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 28px;
            color: #fff;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .whatsapp-popup-close:hover {
            transform: scale(1.2);
        }
        .whatsapp-popup-content .fab.fa-whatsapp {
            font-size: 60px;
            color: #25D366;
            margin-bottom: 15px;
        }
        .whatsapp-popup-content h2 {
            color: #fff;
            font-size: 24px;
            margin-bottom: 10px;
        }
        .whatsapp-popup-content p {
            color: #ccc;
            font-size: 16px;
            margin-bottom: 25px;
        }
        .whatsapp-join-btn {
            display: inline-block;
            background-color: #25D366;
            color: #fff;
            padding: 12px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            transition: background-color 0.3s, transform 0.3s;
        }
        .whatsapp-join-btn:hover {
            background-color: #128C7E;
            transform: scale(1.05);
        }
