
/* Container for Products */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-heading h2 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.section-heading .highlight {
    color: #4CAF50;
}

.product-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Product Card */
.product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    width: calc(33.33% - 20px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.product-card h6 {
    font-size: 1.1rem;
    color: #333;
    margin-top: 10px;
    margin-bottom: 8px;
}

.product-card .price {
    font-size: 1rem;
    color: #4CAF50;
    margin-bottom: 12px;
}

/* Quantity Control in Product Card */
.quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.quantity-control button {
    width: 32px;
    height: 32px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-control input {
    width: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.add-to-cart {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
}


.quantity-control button {
    width: 32px;
    height: 32px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-control input {
    width: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Pay Now Button */
.pay-now-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    margin-top: 15px;
}

/* Adjust styling for "Add to Cart" Button */
.add-to-cart {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
}

/* Pay Now Button */
.pay-now-btn {
    display: block;
    width: 100%;
    padding: 10px;
    color: red;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    margin-top: 15px;
}

/* Add to Cart Button */
.add-to-cart {
    background-color: #4CAF50; /* Green background */
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .product-card {
        width: calc(100% - 20px);
    }

    /* Adjust layout for mobile devices */
    .product-grid {
        flex-direction: column;
    }
}


/* Style for the modal background */

