/* ===== Site Popup ===== */
.popupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes popupSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popupContainer {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    max-width: 680px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideUp 0.4s ease;
}

.popupCloseBtn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}

.popupCloseBtn:hover {
    background: rgba(0, 0, 0, 0.75);
    transform: scale(1.1);
}

.popupImageArea {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.popupImageArea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.popupContentArea {
    padding: 28px 32px 32px;
}

.popupTitle {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.popupDescription {
    font-size: 15px;
    line-height: 1.65;
    color: #555;
    margin: 0;
}

.popupDescription p {
    margin: 0 0 8px 0;
}

.popupDescription p:last-child {
    margin-bottom: 0;
}

.popupFooter {
    padding: 0 32px 24px;
    text-align: center;
}

.popupDontShowBtn {
    background: none;
    border: 1px solid #FF4A17;
    padding: 16px 36px;
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: #14212B;
    cursor: pointer;
    transition: .4s;
    width: max-content;
}

.popupDontShowBtn:hover {
    background: #FF4A17;
    color: #fff;
}

.popupDontShowBtn i {
    margin-right: 6px;
}

/* ===== Responsive ===== */
@media (max-width: 576px) {
    .popupContainer {
        max-width: 100%;
        border-radius: 12px;
    }

    .popupImageArea {
        max-height: 200px;
    }

    .popupContentArea {
        padding: 20px 20px 24px;
    }

    .popupTitle {
        font-size: 18px;
    }

    .popupDescription {
        font-size: 14px;
    }

    .popupCloseBtn {
        width: 32px;
        height: 32px;
        font-size: 14px;
        top: 8px;
        right: 8px;
    }
}
