/* Add custom CSS styles below */ 
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFF7F0;
    color: #444;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #FFB6C1;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 2px 2px #FFA6B8;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Product Card */
.product-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.product-card .product-info {
    padding: 15px;
    text-align: center;
}

.product-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #FF69B4;
}

.product-card p {
    color: #666;
    font-size: 1em;
}

.product-card .price {
    font-size: 1.3em;
    color: #FF69B4;
    font-weight: bold;
    margin: 15px 0;
}

.product-card button {
    padding: 10px 20px;
    background-color: #FF69B4;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.product-card button:hover {
    background-color: #FF85C1;
}

/* Cart */
.cart {
    margin-top: 40px;
    background: #FFEBE8;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cart h2 {
    font-size: 2em;
    color: #FF69B4;
    margin-bottom: 20px;
    text-align: center;
}

.cart-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cart-items li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #FF85C1;
}

.cart-items li:last-child {
    border-bottom: none;
}

.cart-total {
    margin-top: 20px;
    font-size: 1.5em;
    color: #FF69B4;
    text-align: right;
}

.cart button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #FFA07A;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    float: right;
    transition: background-color 0.3s ease;
}

.cart button:hover {
    background-color: #FF7F50;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    .cart {
        padding: 15px;
    }
}