body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f8f8f8;
}

header {
    background: #0f5132;
    color: white;
    padding: 15px;
    text-align: center;
}

nav a {
    color: white;
    margin: 10px;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: #198754;
    color: white;
    text-align: center;
    padding: 40px;
}

.btn {
    background: white;
    color: #198754;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.products {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    flex-wrap: wrap;
}

.product {
    background: white;
    padding: 15px;
    width: 200px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
}

.product:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.img-box {
    background: #ddd;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.order-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 5px;
}

.order-btn:hover {
    background: #1ebe5d;
}

footer {
    background: #0f5132;
    color: white;
    text-align: center;
    padding: 20px;
}

footer a {
    color: white;
margin: 5px;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .hero {
        padding: 25px 15px;
    }

    .products {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .product {
        width: 90%;
        max-width: 320px;
    }

    header h1 {
        font-size: 22px;
    }

    .hero h2 {
        font-size: 20px;
    }
}

.product-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}
    margin: 5px;
    text-decoration: none;
}