   /* cart sidebar */

   .cart-sidebar {
    position: fixed;
    top: 0;

    right: -500px;
    width: 500px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1051;
    display: flex;
    flex-direction: column;

}

@media (max-width:678px) {

    .cart-sidebar {
        right: -90%;
        width: 90%;
        z-index: 1051;
    }
}

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

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    margin: 0 0 5px;
    font-size: 14px;
}

.cart-item-variant {
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
}

.cart-item-price {
    font-weight: bold;
    margin-bottom: 10px;
}

.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-actions i {
    color: #C34A8A;;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-controls button {
    width: 24px;
    height: 24px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
}

.remove-item {
    border: none;
    background: none;
    color: #C34A8A;
    cursor: pointer;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: bold;
}

.cart-buttons {
    display: flex;
    gap: 10px;
}

.view-cart-btn,
.checkout-btn {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
}

.view-cart-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    color: #333;
}

.checkout-btn {
    background: #007bff;
    color: white;
    border: none;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.empty-cart i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #ddd;
}

/* cart sidebar */