body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

#cart-container {
   
    border: 3px solid #74871e;
    background-color: #dadfc5;
    padding: 20px;
    max-width: 50%;
    width: 100%;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

#coupon-section {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

#coupon-section label {
    margin-right: 10px;
}

#total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

#checkout-btn {
    padding: 5px 10px;
}

.product-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.product {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.product img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.product-price {
    color: #888;
}