/* Premium Popup Notification Styles */

.popup-notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.popup-notification-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-notification {
    background: #FFFFFF;
    border-radius: 32px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    position: relative;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.popup-notification-overlay.active .popup-notification {
    transform: scale(1);
    opacity: 1;
}

/* Close Button */
.popup-notification-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    border: none;
    color: #1a1a1a;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
    line-height: 1;
    padding: 0;
    font-weight: 300;
}

.popup-notification-close:hover {
    background: rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}

.popup-notification-close:active {
    transform: scale(0.95);
}

/* Header with Logo */
.popup-notification-header {
    padding: 16px 24px 8px;
    text-align: center;
    position: relative;
}

.popup-notification-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.popup-notification-logo {
    height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Main Image */
.popup-notification-image-wrapper {
    width: 100%;
    padding: 0 24px;
    margin-bottom: 12px;
}

.popup-notification-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.popup-notification-image:hover {
    transform: scale(1.02);
}

/* Content */
.popup-notification-content {
    padding: 0 32px 24px;
    text-align: center;
}

/* CTA Button */
.popup-notification-button {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #FF9500 0%, #FF8000 100%);
    border: none;
    border-radius: 16px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 149, 0, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-notification-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 149, 0, 0.45);
}

.popup-notification-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255, 149, 0, 0.3);
}

/* Bottom Indicator */
.popup-notification-indicator {
    width: 134px;
    height: 5px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 100px;
    margin: 16px auto 0;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .popup-notification {
        max-width: 380px;
        border-radius: 28px;
    }

    .popup-notification-close {
        width: 32px;
        height: 32px;
        font-size: 18px;
        top: 16px;
        left: 16px;
    }

    .popup-notification-header {
        padding: 12px 20px 8px;
    }

    .popup-notification-logo {
        height: 50px;
    }

    .popup-notification-image-wrapper {
        padding: 0 20px;
        margin-bottom: 16px;
    }

    .popup-notification-image {
        border-radius: 16px;
    }

    .popup-notification-content {
        padding: 0 24px 24px;
    }

    .popup-notification-title {
        font-size: 18px;
    }

    .popup-notification-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .popup-notification-button {
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 14px;
    }

    .popup-notification-indicator {
        margin-top: 12px;
    }
}

/* Animation for closing */
.popup-notification-overlay.closing {
    opacity: 0;
}

.popup-notification-overlay.closing .popup-notification {
    transform: scale(0.8);
    opacity: 0;
}

/* Smooth scroll prevention when popup is open */
body.popup-open {
    overflow: hidden;
}