/* ════════════════════════════════
   BOOKING PAGE STYLES
   ════════════════════════════════ */
.booking {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px 120px;
}
.booking__header { text-align: center; margin-bottom: 64px; }
.booking__title {
    font-family: var(--font-heading); font-weight: 300;
    font-size: clamp(32px, 5vw, 56px); text-transform: uppercase;
    letter-spacing: 0.15em; margin-bottom: 48px;
}
.booking__steps {
    display: flex; align-items: center; justify-content: center; gap: 0;
}
.booking__step {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-body); font-weight: 300; font-size: 12px;
    text-transform: uppercase; letter-spacing: 0.2em;
    opacity: 0.3; transition: opacity 0.4s ease;
}
.booking__step.active { opacity: 1; }
.booking__step.done { opacity: 0.6; }
.booking__step span {
    width: 36px; height: 36px;
    border: 1px solid var(--black);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 16px;
    transition: all 0.4s ease;
}
.booking__step.active span { background: var(--black); color: var(--white); }
.booking__step.done span { background: var(--black); color: var(--white); }
.booking__step-line {
    width: 60px; height: 1px; background: var(--black);
    opacity: 0.2; margin: 0 16px;
}

/* Panels */
.booking__panel { display: none; }
.booking__panel.active { display: block; }

/* Form grid */
.booking__form-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px;
}
.booking__group--full { grid-column: 1 / -1; }
.booking__label {
    display: block; font-family: var(--font-body); font-weight: 300;
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.3em;
    margin-bottom: 12px; opacity: 0.5;
}
.booking__input {
    width: 100%; font-family: var(--font-body); font-weight: 300;
    font-size: 15px; padding: 14px 0; border: none;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    background: transparent; color: var(--black);
    transition: border-color 0.3s ease; outline: none;
    border-radius: 0 !important; -webkit-appearance: none;
}
.booking__input:focus { border-bottom-color: var(--black); }
.booking__select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}
.booking__textarea {
    resize: vertical; min-height: 100px; line-height: 1.7;
}

/* Actions */
.booking__actions {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 48px; padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

/* Calendar */
.booking__calendar-wrap {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.booking__cal { }
.booking__cal-nav {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px;
}
.booking__cal-arrow {
    background: none; border: 1px solid var(--black); color: var(--black);
    width: 36px; height: 36px; cursor: pointer;
    font-size: 16px; transition: var(--ease);
    display: flex; align-items: center; justify-content: center;
    border-radius: 0 !important;
}
.booking__cal-arrow:hover { background: var(--black); color: var(--white); }
.booking__cal-month {
    font-family: var(--font-heading); font-weight: 300;
    font-size: 22px; text-transform: uppercase; letter-spacing: 0.15em;
}
.booking__cal-header {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
    margin-bottom: 8px;
}
.booking__cal-header span {
    text-align: center; font-family: var(--font-body); font-weight: 300;
    font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em;
    opacity: 0.4; padding: 8px 0;
}
.booking__cal-grid {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.booking__cal-day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body); font-weight: 300; font-size: 14px;
    cursor: pointer; transition: all 0.3s ease; border: 1px solid transparent;
}
.booking__cal-day:hover { border-color: var(--black); }
.booking__cal-day.empty { cursor: default; }
.booking__cal-day.empty:hover { border-color: transparent; }
.booking__cal-day.past { opacity: 0.2; cursor: default; pointer-events: none; }
.booking__cal-day.selected { background: var(--black); color: var(--white); }
.booking__cal-day.has-bookings { position: relative; }
.booking__cal-day.has-bookings::after {
    content: ''; position: absolute; bottom: 4px; left: 50%;
    transform: translateX(-50%); width: 4px; height: 4px;
    background: rgba(0,0,0,0.3);
}

/* Time slots */
.booking__time-wrap { }
.booking__time-title {
    font-family: var(--font-heading); font-weight: 300;
    font-size: 22px; text-transform: uppercase; letter-spacing: 0.15em;
    margin-bottom: 8px;
}
.booking__time-date {
    font-family: var(--font-body); font-weight: 300;
    font-size: 13px; opacity: 0.5; margin-bottom: 24px;
    text-transform: uppercase; letter-spacing: 0.2em;
}
.booking__time-slots {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.booking__time-slot {
    padding: 14px; text-align: center; border: 1px solid rgba(0,0,0,0.15);
    font-family: var(--font-body); font-weight: 300; font-size: 13px;
    cursor: pointer; transition: all 0.3s ease;
    letter-spacing: 0.1em;
}
.booking__time-slot:hover { border-color: var(--black); }
.booking__time-slot.selected { background: var(--black); color: var(--white); border-color: var(--black); }
.booking__time-slot.booked {
    opacity: 0.25; cursor: default; pointer-events: none;
    text-decoration: line-through;
}

/* Review */
.booking__review { margin-bottom: 32px; }
.booking__review-title {
    font-family: var(--font-heading); font-weight: 300;
    font-size: 28px; text-transform: uppercase; letter-spacing: 0.15em;
    margin-bottom: 32px;
}
.booking__review-grid { }
.booking__review-row {
    display: flex; padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.booking__review-label {
    width: 180px; flex-shrink: 0;
    font-family: var(--font-body); font-weight: 300; font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.3em; opacity: 0.5;
    padding-top: 2px;
}
.booking__review-value {
    font-family: var(--font-body); font-weight: 300; font-size: 15px;
}

/* Success */
.booking__success { text-align: center; padding: 80px 0; }
.booking__success-icon {
    width: 80px; height: 80px; margin: 0 auto 32px;
    border: 2px solid var(--black); display: flex;
    align-items: center; justify-content: center;
    font-size: 32px;
}
.booking__success-title {
    font-family: var(--font-heading); font-weight: 300;
    font-size: 36px; text-transform: uppercase; letter-spacing: 0.15em;
    margin-bottom: 16px;
}
.booking__success-desc {
    font-family: var(--font-body); font-weight: 300;
    font-size: 15px; opacity: 0.6; line-height: 1.8;
    max-width: 450px; margin: 0 auto 48px;
}

/* Error message */
.booking__error {
    background: #f5f5f5; padding: 12px 16px; margin-bottom: 24px;
    font-family: var(--font-body); font-weight: 300; font-size: 13px;
    color: #c00; display: none;
}
.booking__error.show { display: block; }

/* Responsive */
@media (max-width: 768px) {
    .booking__form-grid { grid-template-columns: 1fr; }
    .booking__calendar-wrap { grid-template-columns: 1fr; gap: 32px; }
    .booking__steps { gap: 0; }
    .booking__step { font-size: 10px; gap: 6px; }
    .booking__step span { width: 28px; height: 28px; font-size: 13px; }
    .booking__step-line { width: 30px; margin: 0 8px; }
    .booking__review-row { flex-direction: column; gap: 4px; }
    .booking__review-label { width: auto; }
}
