/* =============================================
   SUCCESS MODAL
   ============================================= */

.success-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    place-items: center;
    background: rgba(34, 34, 34, 0.5);
    backdrop-filter: blur(6px);
    padding: 1.25rem;
}

.success-modal.open {
    display: grid;
}

.success-modal-inner {
    background: var(--bg-card);
    padding: 3rem;
    max-width: 440px;
    width: 100%;
    text-align: center;
    animation: popIn 0.35s ease both;
    border: 1px solid var(--border);
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.95) translateY(16px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.success-modal-icon {
    width: 64px;
    height: 64px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #4a7c59;
}

.success-modal-icon svg { width: 28px; height: 28px; }

.success-modal h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.success-modal p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.success-modal-close {
    padding: 0.85rem 2rem;
    background: var(--text-dark);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s ease;
}

.success-modal-close:hover {
    background: var(--accent-dark);
}

