
html.innova-popup-open,
body.innova-popup-open {
    overflow: hidden !important;
    height: 100vh !important;
    max-height: 100vh !important;
    touch-action: none !important;
    overscroll-behavior: none !important;
}

.innova-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden !important;
    touch-action: none !important;
    overscroll-behavior: none !important;
}

/* Animated Ambient Glow */
.innova-popup-overlay::before,
.innova-popup-overlay::after {
    content: '';
    position: absolute;
    width: 60vh;
    height: 60vh;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0;
    transition: opacity 1.5s ease 0.5s;
    animation: innova-orb-float 15s ease-in-out infinite alternate;
}

.innova-popup-overlay::before {
    background: rgba(146, 211, 79, 0.25);
    top: -10%;
    left: -10%;
}

.innova-popup-overlay::after {
    background: rgba(43, 108, 176, 0.2);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.innova-popup-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.innova-popup-overlay.is-visible::before,
.innova-popup-overlay.is-visible::after {
    opacity: 1;
}

@keyframes innova-orb-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(15%, 15%) scale(1.2); }
}

.innova-popup-content {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 16px;
    max-width: 90%;
    width: 450px;
    overflow: hidden !important;
    touch-action: none !important;
    /* Dramatic Entrance */
    transform: translateY(60px) scale(0.9);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.innova-popup-overlay.is-visible .innova-popup-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.innova-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    padding: 0;
    outline: none;
}

.innova-popup-close svg {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.35s ease;
}

.innova-popup-close:hover {
    background: rgba(30, 30, 30, 0.95);
    border-color: rgba(146, 211, 79, 0.6);
    color: #92d34f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(146, 211, 79, 0.25);
    transform: scale(1.1);
}

.innova-popup-close:hover svg {
    transform: rotate(90deg);
}

.innova-popup-image-container {
    width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.6), 
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    margin-bottom: 15px;
}

.innova-popup-image {
    width: 100%;
    height: auto;
    display: block;
}

.innova-popup-text-details {
    width: 100%;
    text-align: center;
    color: #ffffff;
    padding: 15px 10px 5px !important;
}

.innova-popup-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    line-height: 1.3;
}

.innova-popup-meta-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    flex-wrap: nowrap !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    width: 100% !important;
}

.innova-popup-meta-item {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    width: auto !important;
    white-space: nowrap !important;
}

.innova-popup-meta-item .dashicons {
    color: #92d34f !important;
    font-size: 15px !important;
    width: 15px !important;
    height: 15px !important;
    line-height: 1 !important;
}

.innova-popup-actions {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 25px;
}

.innova-popup-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #A5DB5C;
    color: #111111 !important;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 48px;
    border-radius: 12px;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
}

.innova-popup-cta:hover {
    background: #111111;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}