:root {
    --bg: #f7f3ef;
    --text: #6a6a6a;
    --accent: #c46a45;
    --accent-dark: #9a4f32;
    --font: "Inter", sans-serif;
    --header-height: 110px;

}

/* Overlay */
.booking-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

/* Popup */
.booking-popup {
    top: var(--header-height);
    background: var(--bg);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    width: 480px;
    max-width: 95%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: popupFade 0.25s ease-out;
}

@keyframes popupFade {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Header */
.booking-header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e5ddd7;
}

.booking-header h2 {
    margin: 0;
    font-size: 20px;
    color: var(--accent-dark);
    font-weight: 500;
}

.booking-header button {
    margin-left: auto;
    border: none;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
    color: var(--text);
}

/* Content */
.booking-content {
    padding: 18px 20px 20px;
    overflow-y: auto;
    flex: 1;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
}

/* Buttons / choices */
.booking-choices {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
}

.booking-choice {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #e0d4cc;
    background: #fff;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-choice span.label {
    font-weight: 500;
}

.booking-choice span.meta {
    font-size: 13px;
    opacity: 0.7;
}

.booking-choice:hover {
    border-color: var(--accent);
}

/* Times */
.booking-times {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.booking-time {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid #e0d4cc;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
}

.booking-time:hover {
    border-color: var(--accent);
}

/* Date list */
.booking-days {
    margin-top: 10px;
}

.booking-day {
    margin-bottom: 12px;
}

.booking-day-date {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

/* Form */
.booking-form label {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 4px;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #d6c9c0;
    font-size: 14px;
    font-family: var(--font);
    box-sizing: border-box;
}

.booking-form textarea {
    min-height: 70px;
    resize: vertical;
}

.booking-form button {
    margin-top: 16px;
    width: 100%;
    padding: 12px;
    border-radius: 999px;
    border: none;
    background: var(--accent);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.booking-form button:hover {
    background: var(--accent-dark);
}

/* Footer nav */
.booking-footer-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    font-size: 13px;
}

.booking-footer-nav button {
    border: none;
    background: transparent;
    color: var(--accent);
    cursor: pointer;
}

/* Mobile fullscreen */
@media (max-width: 768px) {
    .booking-popup {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
    }
}
/* --- Blur + Fade + Zoom animation --- */

.booking-overlay {
    animation: bookingFadeIn 0.35s ease forwards;
    backdrop-filter: blur(0px);
}

.booking-popup {
    animation: bookingPopupIn 0.35s ease forwards;
    transform: scale(0.92);
    opacity: 0;
}

@keyframes bookingFadeIn {
    from {
        background: rgba(0,0,0,0);
        backdrop-filter: blur(0px);
    }
    to {
        background: rgba(0,0,0,0.45);
        backdrop-filter: blur(6px);
    }
}

@keyframes bookingPopupIn {
    from {
        transform: scale(0.92);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.staff-thumb {
    width: 96px;          /* från 28px → lite större men inte klumpigt */
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;

    box-shadow: 0 2px 6px rgba(0,0,0,0.18);  /* pop-effekt */
    border: 2px solid #fff;                  /* ren, crisp kant */
}

.booking-choice {
    display: flex;
    align-items: center;
    gap: 8px;
}
