<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    margin-top: 50px;
    right: -400px; 
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease-in-out;
    padding: 20px;
    z-index: 1000;
}

.cart-sidebar.active {
    right: 0;
}


.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 900;
}

/* Show Overlay */
.cart-overlay.active {
    display: block;
}

/* Cart Items */
.cart-items {
    max-height: 45vh;
    overflow-y: auto;
    /* display: flex; */
    /* justify-content: center; */
    /* text-align: center; */
}

.cart-item {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.close {
    border: none;
    position: relative;
    left : 0 ;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
}


.cart-footer {
    position: absolute;
    bottom: 0px;
    top: 70%;
    width: 100%;
    text-align: center;
}

/* Cart Count Badge */
#cart-count {
    font-size: 12px;
    padding: 3px 7px;
}

/* .checkout, .cart {
    background-color: #191818;
}
.checkout , .cart:hover {
    background-color: #ddd;
    color: #191818;
    border: 2px solid #191818;
} */

</pre></body></html>