.site-main{display:flex;flex-direction:column;row-gap:48px}/*# sourceMappingURL=page-pricing.min.css.map */
/* اضافه کردن این استایلها به فایل CSS سایت */
.plan-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9998;
    display: none;
}

.plan-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    display: none;
}

.plan-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 12px 12px 0 0;
}

.plan-popup-title {
    margin: 0;
    font-size: 1.5em;
    font-weight: bold;
}

.plan-popup-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.plan-popup-close:hover {
    background: #e0e0e0;
    color: #333;
}

.plan-popup-content {
    padding: 20px;
}

/* برای ریسپانسیو بودن */
@media (max-width: 768px) {
    .plan-popup {
        width: 95%;
        max-width: 95%;
    }
    
    .plan-popup-header {
        padding: 15px;
    }
    
    .plan-popup-content {
        padding: 15px;
    }
}