/* ibizz Popup */

.ibizz-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.ibizz-popup-overlay.is-visible {
    display: flex;
}

.ibizz-popup-panel {
    position: relative;
    background: #fff;
    border-radius: 0.25rem;
    max-width: 46.6875rem; /* 747px */
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3.125rem; /* 50px */
    color: inherit;
    box-sizing: border-box;
}

/* ── Close button ─────────────────────────────────────────────────────────── */

.ibizz-popup-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
    font-size: 1.25rem;
    line-height: 1;
}

.ibizz-popup-close:hover {
    background: rgba(0, 0, 0, 0.06);
}

.ibizz-popup-close .icon svg {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
}

/* ── Image ────────────────────────────────────────────────────────────────── */

.ibizz-popup-image {
    margin: 0 0 1.5rem;
}

.ibizz-popup-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.25rem;
}

/* ── Body ─────────────────────────────────────────────────────────────────── */

.ibizz-popup-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ibizz-popup-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.ibizz-popup-content {
    line-height: 1.6;
}

.ibizz-popup-content p:first-child { margin-top: 0; }
.ibizz-popup-content p:last-child  { margin-bottom: 0; }

/* ── Navigation / links ───────────────────────────────────────────────────── */

.ibizz-popup-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.ibizz-popup-link {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.ibizz-popup-link:hover {
    opacity: 0.85;
}

.ibizz-popup-link--primary {
    background: currentColor;
    color: #fff;
}

.ibizz-popup-link--secondary {
    background: transparent;
    color: inherit;
    border: 1.5px solid currentColor;
}

/* ── Form ─────────────────────────────────────────────────────────────────── */

.ibizz-popup-form {
    margin-top: 0.25rem;
}

/* ── Mobile ───────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .ibizz-popup-panel {
        padding: 1.875rem;
    }

    .ibizz-popup-title {
        font-size: 1.375rem;
    }

    .ibizz-popup-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .ibizz-popup-link {
        justify-content: center;
    }
}
