body {
    font-family: 'Literata', serif;
    background-color: #2d2d2d;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.cart-header{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}
.cart-container {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    width: 900px;
}

.cart-title {
    text-align: center;
    font-size: 22px;
    margin: 0;
}

.cart-items {
    border-bottom: 1px solid #555;
    padding-bottom: 15px;
}

.cart-item {
    display: flex;
    align-items: center;
    background-color: #444;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.cart-item img {
    width: 110px;
    height: 75px;
    border-radius: 10px;
    margin-right: 15px;
}

.item-info {
    flex-grow: 1;
}

.item-name {
    font-size: 16px;
    font-weight: bold;
}

.price {
    margin-top: 4px;
}

.current-price {
    font-size: 16px;
    font-weight: bold;
}

.old-price {
    text-decoration: line-through;
    color: gray;
    margin-left: 5px;
    font-size: 14px;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.delete-btn {
    background: none;
    border: none;
    color: red;
    font-size: 18px;
    cursor: pointer;
}

.cart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.clear-cart {
    font-family: 'Literata', serif;
    background-color: red;
    color: black;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-end;
}

.summary {
    text-align: right;
    font-size: 14px;
}

.total {
    font-size: 16px;
}

.checkout {
    font-family: 'Literata', serif;
    background-color: #4CAF50;
    color: black;
    border: none;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}

.footer-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.back {
    position: absolute;
    right: 0;
    color: white;
    text-decoration: none;
    font: 12px;
}




