body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
header {
    background: linear-gradient(to right, #4CAF50, #66bb6a);
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
}
nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}
nav ul li {
    display: inline;
    margin: 0 15px;
}
nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #ffeb3b;
}


nav ul li img{
    width: 26px;
    height: 26px;
    color: #fff; 
    border-radius: 50%; 
}


.cart-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}
.cart-container h2 {
    text-align: center;
    color: #4CAF50;
    margin-bottom: 20px;
}
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}
.cart-item img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}
.cart-item span {
    font-size: 1.1em;
    flex-grow: 1;
    text-align: center;
}
.cart-item button {
    background-color: #ff4d4d;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.3s;
}
.cart-item button:hover {
    background-color: #cc0000;
}
.quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}
.quantity button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.quantity button:hover {
    background: #388e3c;
}
.total {
    text-align: right;
    font-size: 1.3em;
    font-weight: bold;
    margin-top: 15px;
}
.checkout-btn {
    display: block;
    text-align: center;
    margin: 25px auto;
    padding: 12px 18px;
    background: #ff9800;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    transition: background 0.3s;
    width: 180px;
}
.checkout-btn:hover {
    background: #e68900;
}