﻿/* پس‌زمینه بلور هنگام نمایش تصویر */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 128, 128, 0.5);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* استایل مودال */
.modal {
    position: relative;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* استایل عکس داخل مودال */
.promo-img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
}

/* دکمه بستن (ضربدر) */
.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* پنهان کردن مودال به صورت پیش‌فرض */
#overlay.hidden {
    display: none;
}

