.osterei-easter-egg-wrapper {
    display: inline-block;
    position: relative;
}

.osterei-egg-image {
    display: block;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

/* Hover scale is now fully handled by Elementor dynamic CSS via the widget selectors */

.osterei-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.osterei-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.osterei-popup-content {
    position: relative;
    background-color: #ffffff;
    padding: 3rem 4rem;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(32, 57, 100, 0.3);
    max-width: 90%;
    text-align: center;
    animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.osterei-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #54595F;
    transition: color 0.3s ease;
}

.osterei-popup-close:hover {
    color: #203964;
}

.osterei-popup-message {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 600;
    color: #203964;
}