﻿/* ================================
   🔥 OFFER POPUP OVERLAY
================================ */
.offer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    backdrop-filter: blur(2px);
}

/* ================================
   🔥 POPUP BOX
================================ */
.offer-popup {
    background: #ffffff;
    width: 95%;
    max-width: 800px;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    position: relative;
    text-align: center;
    animation: popupScale 0.25s ease-out;
}

/* ================================
   🔥 SCALE-IN ANIMATION
================================ */
@keyframes popupScale {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ================================
   🔥 CLOSE BUTTON
================================ */
.offer-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 9999 !important;
    background: rgba(0,0,0,0.55);
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: none;
    cursor: pointer;
}


/* ================================
   🔥 POPUP IMAGE
================================ */
.offer-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* ================================
   🔥 TITLE & MESSAGE
================================ */
.offer-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.offer-msg {
    font-size: 1rem;
    margin-bottom: 20px;
}

/* ================================
   🔥 CTA BUTTON
================================ */
.offer-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 6px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
}

/* ================================
   🔥 COUNTDOWN
================================ */
.offer-countdown {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}
