/* --- Cart Sidebar Styles --- */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-overlay.active {
    display: block;
    opacity: 1;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 1050;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cart-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.cart-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-check {
    padding-top: 25px;
    margin-right: 15px;
}

.cart-check .form-check-input {
    border-color: #ff4e00;
    background-color: #ff4e00;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    flex-shrink: 0;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #f0f0f0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cart-item-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.cart-item-price-row {
    display: flex;
    align-items: center;
    font-size: 13px;
}

.cart-item-price {
    font-weight: 600;
    margin-right: 5px;
}

.cart-item-qty {
    width: 50px;
    padding: 2px 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-right: auto;
    font-size: 13px;
}

.cart-item-delete {
    background: none;
    border: none;
    color: #999;
    font-size: 12px;
    padding: 0;
    cursor: pointer;
}

.cart-item-delete:hover {
    color: #666;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fff;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.cart-total-price {
    font-size: 15px;
}

@media (max-width: 576px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}