body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background-color: #f4f4f4;
}

.checkout-summary {
    background-color: #fff;
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;

}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-description {
    font-size: 14px;
}

.price {
    color: #333;
    font-weight: bold;
}

.quantity-selector {
    display: flex;
    align-items: center;
}

.minus-btn,
.plus-btn {
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 5px 10px;
    cursor: pointer;
}

.quantity-input {
    text-align: center;
    margin: 0 5px;
    border: 1px solid #ccc;
    padding: 5px;
}

.promotion-banner {
    background-color: #e0f2f1;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.promo-code {
    color: #00897b;
    font-weight: bold;
}

.order-details {
    font-size: 14px;
}

.order-details h3 {
    margin-bottom: 10px;
}

.savings {
    color: #388e3c;
}

.apply-coupon {
    color: #d32f2f;
    cursor: pointer;
    text-decoration: underline;
}

.total-amount {
    font-weight: bold;
}

hr {
    border: none;
    height: 1px;
    background-color: #ccc;
    margin: 10px 0;
}

.checkout-btn {
    width: 100%;
    padding: 10px;
    background-color: #00897b;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
}
.offer-item {
position: relative;
display: flex;
align-items: center;
margin-bottom: 20px;
padding: 10px;
background: #f9f9f9;
border-radius: 10px;
}

.offer-item img {
width: 60px;
height: 60px;
margin-right: 20px;
}

.offer-item .offer-info h3 {
font-size: 18px;
color: #333;
}

.offer-item .offer-info p {
color: #777;
font-size: 14px;
}

.offer-item .price-info {
margin-top: 5px;
}

.offer-item .price-info .price {
font-size: 18px;
font-weight: bold;
color: #333;
}

.offer-item .price-info .discount {
background-color: #009688;
color: white;
padding: 3px 7px;
border-radius: 5px;
font-size: 14px;
margin-left: 10px;
}

.remove-cart-product{
    position: absolute;
    right: 10px;

}
.remove-cart-product:hover{
    cursor: pointer;
    color: red;
}

.cart-empty{
    width: 150px;
    height: 150px;
}
.empty-container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
