/* ==========================================
   CONFIRMATION MODAL
   ========================================== */

#confirm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000; /* Above everything */
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#confirm-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.confirm-modal-box {
    background: #fff;
    width: 90%;
    max-width: 400px;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#confirm-modal-overlay.active .confirm-modal-box {
    transform: translateY(0) scale(1);
}

.confirm-icon {
    font-size: 3rem;
    color: var(--color-marsala);
    margin-bottom: 1rem;
    background: rgba(100, 36, 46, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.confirm-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-marsala);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.confirm-message {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.confirm-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-confirm {
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    text-transform: uppercase;
}

.btn-confirm-cancel {
    background: #f0f0f0;
    color: #555;
}

.btn-confirm-cancel:hover {
    background: #e0e0e0;
    color: #333;
}

.btn-confirm-yes {
    background: var(--color-marsala);
    color: #fff;
}

.btn-confirm-yes:hover {
    background: var(--color-cabernet);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(100, 36, 46, 0.2);
}
