/* ═══════════════════════════════════════════════════════════
   BOOKING — Modern calendar & mini floor plan
   ═══════════════════════════════════════════════════════════ */

/* ── 2-Column Layout ── */
.un-booking-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 24px;
    margin-top: 48px;
    align-items: start;
}

/* ══════════════════════════════════════
   CALENDAR (glass card)
   ══════════════════════════════════════ */
.un-booking-calendar {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* ── Month Header ── */
.un-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.un-cal-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: #FFF;
    letter-spacing: -0.01em;
}

.un-cal-nav {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--gold-400);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.un-cal-nav:hover {
    background: rgba(90, 122, 78, 0.1);
    border-color: rgba(90, 122, 78, 0.2);
    color: var(--gold-100);
}

.un-cal-nav:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* ── Weekday Headers ── */
.un-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 6px;
}

.un-cal-weekday {
    font-family: var(--font-body);
    font-size: 10px;
    color: #FFFFFF;
    text-align: center;
    padding: 6px 0;
    font-weight: 500;
}

/* ── Day Grid ── */
.un-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.un-cal-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--earth-100);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    border: 1.5px solid transparent;
    gap: 3px;
}

.un-cal-day:hover:not(.un-cal-day-past):not(.un-cal-day-empty):not(.un-cal-day-full) {
    background: rgba(90, 122, 78, 0.08);
    border-color: rgba(90, 122, 78, 0.2);
}

.un-cal-day-empty { cursor: default; }
.un-cal-day-past { color: var(--earth-500); opacity: 0.4; cursor: default; }
.un-cal-day-today { border-color: rgba(90, 122, 78, 0.4); }

.un-cal-day-selected {
    background: var(--gold-500);
    color: #FFF;
    border-color: var(--gold-400);
    box-shadow: 0 4px 16px rgba(90, 122, 78, 0.3);
    font-weight: 600;
}

.un-cal-day-selected:hover {
    background: var(--gold-500);
}

.un-cal-day-full { color: var(--earth-400); opacity: 0.5; cursor: default; }

/* ── Availability Dots ── */
.un-cal-dot { width: 5px; height: 5px; border-radius: 50%; }
.un-cal-dot-partial { background: var(--gold-400); }
.un-cal-dot-full { background: #c0392b; }

/* ── Price Badge ── */
.un-cal-price-badge {
    text-align: center;
    margin-top: 16px;
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-family: var(--font-body);
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 300;
}

.un-cal-price-badge strong {
    color: var(--gold-400);
    font-weight: 600;
}

/* ══════════════════════════════════════
   MINI FLOOR PLAN (glass card)
   ══════════════════════════════════════ */
.un-booking-minimap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.un-booking-date-label {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--earth-300);
    margin-bottom: 16px;
    font-weight: 400;
    text-align: center;
}

.un-booking-date-label strong {
    color: var(--gold-400);
    font-weight: 600;
}

.un-booking-minimap-svg { width: 100%; overflow: visible; }

.un-booking-chair-daily { cursor: pointer; transition: all 0.25s ease; }
.un-booking-chair-daily:hover .un-fp-top { fill: var(--fp-hover) !important; }
.un-booking-chair-daily:hover { filter: url(#fpShadow); transform: translateY(-1px); }
.un-booking-chair-booked { opacity: 0.35; pointer-events: none; }
.un-booking-chair-monthly { opacity: 0.15; pointer-events: none; }
.un-booking-chair-selected { filter: url(#bkGlow); }

/* ── Legend ── */
.un-booking-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.un-booking-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 11px;
    color: #FFFFFF;
    font-weight: 300;
}

.un-booking-legend-dot { width: 10px; height: 10px; border-radius: 3px; }

/* ══════════════════════════════════════
   BOOKING MODAL
   ══════════════════════════════════════ */
.un-booking-confirm-details {
    background: rgba(90, 122, 78, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    margin-bottom: 24px;
}

.un-booking-confirm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.un-booking-confirm-row:last-child { border-bottom: none; }

.un-booking-confirm-label {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--earth-400);
    font-weight: 400;
}

.un-booking-confirm-value {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
}

.un-booking-confirm-price {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-400);
}

.un-booking-modal-card {
    grid-template-columns: 1fr;
    max-width: 520px;
}
