.urlaub-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.urlaub-popup-overlay.up-hidden {
    display: none;
}

.urlaub-popup-box {
    background: #fff;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: urlaub-popup-in 0.25s ease-out;
}

@keyframes urlaub-popup-in {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.urlaub-popup-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px 10px 0 0;
}

.urlaub-popup-content {
    padding: 24px;
    text-align: center;
}

.urlaub-popup-text {
    font-size: 18px;
    line-height: 1.5;
    color: #222;
    margin-bottom: 20px;
}

.urlaub-popup-text p:last-child {
    margin-bottom: 0;
}

.urlaub-popup-close-btn {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s;
}

.urlaub-popup-close-btn:hover {
    background: #135e96;
}

/* Tablet */
@media (max-width: 768px) {
    .urlaub-popup-box {
        max-width: 90%;
    }

    .urlaub-popup-text {
        font-size: 17px;
    }
}

/* Smartphone */
@media (max-width: 480px) {
    .urlaub-popup-overlay {
        padding: 12px;
    }

    .urlaub-popup-box {
        max-width: 100%;
        border-radius: 8px;
    }

    .urlaub-popup-image img {
        border-radius: 8px 8px 0 0;
    }

    .urlaub-popup-content {
        padding: 18px;
    }

    .urlaub-popup-text {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .urlaub-popup-close-btn {
        width: 100%;
        padding: 14px;
    }
}
