/* ==========================================
   CLEAR CART CONFIRMATION MODAL
   ========================================== */
.clear-cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.clear-cart-modal.show {
    opacity: 1;
}

.clear-cart-modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.clear-cart-modal .modal-header {
    background: var(--color-marsala);
    color: #fff;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clear-cart-modal .modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.clear-cart-modal .modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.clear-cart-modal .modal-close:hover {
    transform: rotate(90deg);
}

.clear-cart-modal .modal-body {
    padding: 2.5rem 2rem;
    text-align: center;
}

.clear-cart-modal .modal-body i {
    display: block;
    font-size: 4rem;
    color: var(--color-marsala);
    margin-bottom: 1rem;
}

.clear-cart-modal .modal-body p {
    font-size: 1.1rem;
    color: #333;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.clear-cart-modal .modal-actions {
    display: flex;
    gap: 1rem;
    padding: 0 2rem 2rem;
}

.clear-cart-modal .modal-actions .btn {
    flex: 1;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 6px;
}
