body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f6f6f6;
}

header {
    background: #ffb6c1;
    padding: 20px;
    text-align: center;
    color: #fff;
}

header h1 {
    margin: 0;
    font-size: 35px;
}

.products-section {
    padding: 40px 20px;
    text-align: center;
}

.products-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.product-card {
    background: #fff;
    width: 250px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    width: 100%;
    border-radius: 10px;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #ff4d6d;
}

.order-btn, .delivery-btn {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.order-btn {
    background: #ff4d6d;
    color: #fff;
}

.delivery-btn {
    background: #4CAF50;
    color: #fff;
}

.order-btn:hover {
    background: #e6004c;
}

order-btn {
    padding: 12px 25px;
    background: #ff9900;
    color: black;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
}
   
.delivery-btn:hover {
    background: #3d8b40;
}

footer {
    margin-top: 40px;
    text-align: center;
    padding: 15px;
    background: #ffb6c1;
    color: white;
}