/**
 * cranio-norman — Booking Page Styles
 * v1.0.0 | 2026-03-22
 * HealthAdvisor.ch iframe embed + fallback contact info.
 *
 * ✏️ CONTENT — dimensions and padding safe to change.
 */

/* ── Booking embed container ───────────────────────────── */
.booking-embed {
    max-width: 800px;
    margin: var(--spacing-md) auto;
}

.booking-embed__frame {
    position: relative;
    width: 100%;
    min-height: 600px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.booking-embed__frame iframe {
    width: 100%;
    min-height: 600px;
    border: 0;
}

/* Loading state before iframe loads */
.booking-embed__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* ── Fallback contact info ─────────────────────────────── */
.booking-fallback {
    text-align: center;
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.booking-fallback p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.booking-fallback a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.booking-fallback a:hover {
    text-decoration: underline;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 767px) {
    .booking-embed__frame {
        min-height: 500px;
    }

    .booking-embed__frame iframe {
        min-height: 500px;
    }
}

/* ✅ SAFE TO RUN — verified: no secrets, no dangerous permissions, no destructive operations */
