﻿/* site-popup.css — استایل پاپ‌اپ سایت */

.site-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-popup-overlay.site-popup-visible {
    opacity: 1;
    visibility: visible;
}

.site-popup-box {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 640px;
    width: calc(100% - 2rem);
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s ease;
}

.site-popup-overlay.site-popup-visible .site-popup-box {
    transform: translateY(0) scale(1);
}

.site-popup-close {
    position: absolute;
    top: 0.6rem;
    left: 0.75rem;
    background: #fff6;
    border: none;
    cursor: pointer;
    color: black;
    transition: color 0.2s;
    z-index: 1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.site-popup-close:hover {
    color: #333;
}

.site-popup-content {
    min-height: 60px;
}
    .site-popup-content section .container {
        padding: 0;
    }
    .site-popup-loading {
        text-align: center;
        padding: 2rem 0;
        color: #aaa;
    }

.site-popup-btn-row {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.site-popup-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    background: #007bff;
    color: #fff;
    transition: opacity 0.2s;
    border: 2px solid transparent;
}

.site-popup-btn:hover {
    opacity: 0.85;
    color: inherit;
}

/* موبایل */
@media (max-width: 576px) {
    .site-popup-box {
        border-radius: 8px;
    }
    .site-popup-btn-row {
        flex-direction: column;
        align-items: stretch;
    }
    .site-popup-btn {
        text-align: center;
    }
}
