:root {
    --color1: #fff9f0;
    --color2: #f7f2eb;
    --color3: #f2f0de;
    --color4: #edf1f6;
    --color5: #d0e3ff;
    --color6: #bad6eb;
    --color7: #7096d1;
    --color8: #334eac;
    --color9: #081f5c;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background:linear-gradient(-45deg,#d0e3ff,#edf1f6,#f2f0de);
    color: #333;
}
header {
    background-color:var(--color9);
    color: white;
    padding: 1rem;
    text-align: center;
    /* display: flex;
    flex-direction: row; */
}
.cart-logo{
    font-size: 30px;
    color:var(--color1);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}
.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
    padding: 1rem;
    margin: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.cart-item img {
    max-width: 100px;
    height: auto;
    border-radius: 5px;
}
.cart-item-details {
    flex: 1;
    margin-left: 1rem;
}
.cart-item-details h2 {
    font-size: 1.2rem;
    color: var(--color9);
    margin: 0 0 0.5rem;
}
.cart-item-details p {
    margin: 0;
}
.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.quantity-control {
    width: 40px;
    text-align: center;
    padding: 0.2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.remove-item, .checkout {
    background-color: var(--color9);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}
.remove-item:hover, .checkout:hover {
    background-color: var(--color8);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.26),0 3px 6px rgba(0, 0, 0, 0.26);;
}
.total {
    font-size: 39px;
    color: var(--color9);
    font-weight: 600;

}
.checkout {
    margin-top: 1rem;
    display: block;
    width: 100%;
    text-align: center;
    height: 40px;
}
.checkout a{
    text-decoration: none;
    color: var(--color1);
    font-size: large;
}

footer {
    background-color: var(--color9);
    color: white;
    text-align: center;
    padding: 1rem;
    position: fixed;
    width: 100%;
    bottom: 0;
}


