/* Cart Bar 
.cart-bar {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: none;
}

.cart-bar.active {
    transform: translateX(0);
    display: block;
}

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

.close-cart {
    cursor: pointer;
    font-size: 1.5rem;
}

.product-area {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.product-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.product-detail {
    display: flex;
    gap: 15px;
}

.product-thumb img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.quantity-edit {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity-edit .input {
    width: 40px;
    text-align: center;
}

.cart-bottom-area {
    padding: 20px;
    border-top: 1px solid #eee;
}

.spend-shipping {
    display: block;
    margin-bottom: 15px;
    color: #666;
}

.cart-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 4px;
}

.checkout-btn {
    background: #000;
    color: #fff;
}

.view-btn {
    border: 1px solid #000;
    color: #000;
}

 Responsive 
@media (max-width: 480px) {
    .cart-bar {
        width: 100%;
    }
}*/