.cart-sidebar {
    position: fixed;
    top: 0;
    right: -500px;
    width: 500px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
}

@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

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

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background-color: #F3F3F3;
    padding: 20px;
}

.cart-sidebar-header span {
    font-size: 20px;
}

.cart-subtotal {
    font-weight: bold;
    font-size: 15px;
    padding: 15px;
    margin-right: 33%;
}

.cart-close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.cart-view-btn,
.cart-checkout-btn {
    width: 49%;
    padding: 10px;
    margin-top: 15px;
    border: none;
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
    margin-left: 15px;
    font-size: 16px;
    border: 2px solid #FFBF00;
    border-radius: 5px;
}

.cart-checkout-btn {
    background-color: #FFBF00;
}

.cart-items {
    max-height: 65vh;
    overflow-y: auto;
    margin-top: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    margin-right: 15px;

}

.cart-item-details {
    flex-grow: 1;
    font-size: 20px;
}

.cart-item-quantity-controls {
    display: flex;
    align-items: center;
    max-width: 80px;
    background-color: #eee;
    padding: 5px;
    justify-content: center;
    border-radius: 5px;
}

.quantity-decrement,
.quantity-increment {
    width: 20px;
    height: 20px;
    border: 0px solid #ccc;
    background: none;
    cursor: pointer;
    font-size: 12px;
    padding: 0px;

}

.quantity-value {
    margin: 0 10px;
}

.cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cart-empty {
    text-align: center;
    color: #666;
}

.cart-item-total{
    color: #000;
}

.cart-item-details a {
   color: #666;
}

.cart-item-details div {
   margin-top: 10px;
}