/* --- Marketing Popup Styles --- */
.marketing-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2147483648; /* Higher than cookie popup */
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.marketing-popup-overlay.active {
    display: flex;
    animation: fadeIn 0.4s ease-out;
}

.marketing-popup-content {
    position: relative;
    max-width: 600px;
    width: 100%;
    background: transparent;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease-out;
}

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

.marketing-popup-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 80vh;
    object-fit: contain;
}

.marketing-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.marketing-close-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 600px) {
    .marketing-popup-content {
        max-width: 100%;
    }
}
