/* ════════════════════════════════
   Front-end confirm modal — shared styles
   (admin uses .adm-modal-* in admin.css)
════════════════════════════════ */
.confirm-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 25, 40, .45);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.confirm-modal-overlay.open { display: flex; }

.confirm-modal {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 210, 240, .5);
    border-radius: 16px;
    padding: 30px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
}

.confirm-modal-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    background: rgba(255, 90, 120, .12);
}

.confirm-modal-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: var(--red);
    stroke-width: 1.6;
}

.confirm-modal h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0 0 8px;
    color: var(--text);
}

.confirm-modal p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0 0 22px;
}

.confirm-modal-foot {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.confirm-modal-foot button {
    padding: 10px 22px;
    font-size: .85rem;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.confirm-modal-foot .btn-cancel {
    background: rgba(180, 190, 220, .2);
    color: var(--text);
    border: 1px solid rgba(180, 190, 220, .4);
}

.confirm-modal-foot .btn-confirm {
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--pink));
    transition: transform .15s, box-shadow .15s;
}

.confirm-modal-foot .btn-confirm:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 90, 120, .25);
}

.confirm-modal-foot .btn-confirm svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}
