/* =========================================================
   Glore Aesthetic — Booking Modal Styles
   ========================================================= */

/* ── Floating Button ───────────────────────────────────── */
.bm-float-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1C1C1C;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 22px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
}
.bm-float-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.28);
}
.bm-float-btn i { font-size: 18px; }

@media (max-width: 600px) {
    .bm-float-btn { padding: 14px 16px; }
    .bm-float-text { display: none; }
}

/* ── Overlay ───────────────────────────────────────────── */
.bm-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.bm-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* ── Card ──────────────────────────────────────────────── */
.bm-card {
    background: #F8F4EF;
    border-radius: 4px;
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 64px rgba(0,0,0,0.18);
    transform: translateY(12px) scale(0.98);
    transition: transform 0.28s cubic-bezier(0.34, 1.36, 0.64, 1);
    overflow: hidden;
}
.bm-overlay.open .bm-card {
    transform: translateY(0) scale(1);
}

@media (max-width: 600px) {
    .bm-overlay { padding: 0; align-items: flex-end; }
    .bm-card {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 16px 16px 0 0;
    }
}

/* ── Header ────────────────────────────────────────────── */
.bm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px 16px;
    border-bottom: 1px solid #E8E0D8;
    flex-shrink: 0;
}
.bm-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bm-logo-glore {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: #1C1C1C;
    letter-spacing: 3px;
}
.bm-logo-sep {
    width: 1px;
    height: 18px;
    background: #C9A882;
}
.bm-logo-aesthetic {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 13px;
    color: #C9A882;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.bm-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    font-size: 20px;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
    line-height: 1;
}
.bm-close:hover { color: #1C1C1C; background: #EDE8E2; }

/* ── Step Indicator ────────────────────────────────────── */
.bm-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-bottom: 1px solid #E8E0D8;
    gap: 0;
    flex-shrink: 0;
}
.bm-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 60px;
}
.bm-step-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #D8CFCA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #B0A9A3;
    background: #fff;
    transition: all 0.25s ease;
    font-family: 'Manrope', sans-serif;
}
.bm-step-label {
    font-size: 10px;
    color: #B0A9A3;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}
.bm-step.active .bm-step-dot {
    border-color: #C9A882;
    background: #C9A882;
    color: #fff;
}
.bm-step.active .bm-step-label { color: #C9A882; }
.bm-step.done .bm-step-dot {
    border-color: #1C1C1C;
    background: #1C1C1C;
    color: #fff;
}
.bm-step.done .bm-step-label { color: #1C1C1C; }
.bm-step-line {
    flex: 1;
    height: 2px;
    background: #E8E0D8;
    margin-bottom: 14px;
    min-width: 20px;
}

@media (max-width: 600px) {
    .bm-step-label { display: none; }
    .bm-step-line { min-width: 16px; }
}

/* ── Body ──────────────────────────────────────────────── */
.bm-body {
    flex: 1;
    overflow-y: auto;
    position: relative;
}

/* ── Step Panels ───────────────────────────────────────── */
.bm-step-panel {
    display: none;
    padding: 24px 28px;
    animation: bmFadeIn 0.25s ease;
}
.bm-step-panel.active { display: block; }

@keyframes bmFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Step 1: Services ──────────────────────────────────── */
.bm-step-intro {
    margin: 0 0 16px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
.bm-cat-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.bm-cat-tab {
    background: #fff;
    border: 1px solid #E8E0D8;
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #666;
    cursor: pointer;
    transition: all 0.15s;
    font-family: 'Manrope', sans-serif;
}
.bm-cat-tab:hover { border-color: #C9A882; color: #C9A882; }
.bm-cat-tab.active { background: #1C1C1C; border-color: #1C1C1C; color: #fff; }

.bm-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 4px;
}
@media (max-width: 600px) { .bm-services-grid { grid-template-columns: 1fr; } }

.bm-service-card {
    background: #fff;
    border: 2px solid #E8E0D8;
    border-radius: 4px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.18s;
    position: relative;
}
.bm-service-card:hover { border-color: #C9A882; }
.bm-service-card.selected {
    border-color: #C9A882;
    background: #FBF8F5;
}
.bm-service-card.selected::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    background: #C9A882 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
    border-radius: 50%;
}
.bm-svc-name {
    font-size: 13px;
    font-weight: 700;
    color: #1C1C1C;
    margin: 0 0 4px;
    padding-right: 20px;
    font-family: 'Manrope', sans-serif;
}
.bm-svc-meta {
    font-size: 12px;
    color: #888;
}
.bm-svc-price { color: #C9A882; font-weight: 600; }

.bm-loading {
    grid-column: 1/-1;
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 14px;
}
.bm-loading i { margin-right: 6px; }

.bm-footer-note {
    margin: 14px 0 0;
    font-size: 12px;
    color: #999;
    text-align: center;
}
.bm-footer-note a { color: #C9A882; }
.bm-footer-note i { margin-right: 4px; }

/* ── Step 2: Calendar ──────────────────────────────────── */
.bm-dt-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 700px) { .bm-dt-layout { grid-template-columns: 1fr; } }

.bm-cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.bm-cal-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    color: #1C1C1C;
    letter-spacing: 0.5px;
}
.bm-cal-prev, .bm-cal-next {
    background: none;
    border: 1px solid #E8E0D8;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    transition: all 0.15s;
}
.bm-cal-prev:hover, .bm-cal-next:hover { border-color: #C9A882; color: #C9A882; }

.bm-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}
.bm-cal-dow {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.5px;
    padding: 4px 0;
    text-transform: uppercase;
}
.bm-cal-day {
    text-align: center;
    padding: 7px 2px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.15s;
    position: relative;
    color: #1C1C1C;
    font-family: 'Manrope', sans-serif;
}
.bm-cal-day:hover:not(.disabled):not(.past):not(.off):not(.full):not(.empty) {
    background: #EDE8E2;
}
.bm-cal-day.today { outline: 2px solid #C9A882; outline-offset: -2px; }
.bm-cal-day.selected { background: #C9A882; color: #fff; }
.bm-cal-day.selected.today { outline-color: #fff; }
.bm-cal-day.past, .bm-cal-day.disabled {
    color: #CCC;
    cursor: default;
    pointer-events: none;
}
.bm-cal-day.off {
    color: #CCC;
    cursor: default;
    pointer-events: none;
    text-decoration: line-through;
}
.bm-cal-day.full {
    background: #FDE8E8;
    color: #C08080;
    cursor: default;
    pointer-events: none;
}
.bm-cal-day.empty { cursor: default; pointer-events: none; }

/* ── Slots ─────────────────────────────────────────────── */
.bm-slots-wrap { display: flex; flex-direction: column; }
.bm-slots-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 160px;
    color: #C5BCB6;
    gap: 8px;
    font-size: 13px;
    text-align: center;
}
.bm-slots-placeholder i { font-size: 32px; }
.bm-slots-date-label {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.bm-slots-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 2px;
}
.bm-slot {
    padding: 10px 14px;
    border: 1px solid #E8E0D8;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    font-family: 'Manrope', sans-serif;
    color: #1C1C1C;
    background: #fff;
}
.bm-slot:hover:not(.unavailable) { border-color: #C9A882; background: #FBF8F5; }
.bm-slot.selected { background: #C9A882; border-color: #C9A882; color: #fff; }
.bm-slot.unavailable {
    color: #C5BCB6;
    background: #F5F2EF;
    cursor: default;
    pointer-events: none;
    text-decoration: line-through;
}

/* ── Step 3: Customer Details ──────────────────────────── */
.bm-customer-type {
    display: flex;
    border: 1px solid #E8E0D8;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}
.bm-type-btn {
    flex: 1;
    padding: 10px 12px;
    background: #fff;
    border: none;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: all 0.15s;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0.3px;
}
.bm-type-btn:first-child { border-right: 1px solid #E8E0D8; }
.bm-type-btn.active { background: #1C1C1C; color: #fff; }

.bm-field { margin-bottom: 14px; }
.bm-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 6px;
}
.bm-req { color: #C9A882; }
.bm-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #E8E0D8;
    border-radius: 4px;
    background: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #1C1C1C;
    transition: border-color 0.15s;
    box-sizing: border-box;
}
.bm-input:focus {
    outline: none;
    border-color: #C9A882;
    box-shadow: 0 0 0 3px rgba(201, 168, 130, 0.12);
}
.bm-input.error { border-color: #e57373; }
.bm-textarea { resize: vertical; min-height: 80px; }

.bm-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 500px) { .bm-row-2 { grid-template-columns: 1fr; } }

.bm-phone-wrap { display: flex; }
.bm-phone-prefix {
    padding: 10px 12px;
    background: #F5F2EF;
    border: 1px solid #E8E0D8;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 13px;
    color: #666;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}
.bm-phone-input { border-radius: 0 4px 4px 0 !important; }

.bm-email-wrap { position: relative; }
.bm-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #C9A882;
    font-size: 16px;
    pointer-events: none;
}
.bm-has-icon { padding-left: 36px !important; }

.bm-otp-wrap { margin: 12px 0 0; }
.bm-otp-input {
    letter-spacing: 8px;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    font-family: monospace;
}
.bm-otp-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}
.bm-resend {
    background: none;
    border: none;
    font-size: 12px;
    color: #888;
    cursor: pointer;
    padding: 0;
    transition: color 0.15s;
    font-family: 'Manrope', sans-serif;
}
.bm-resend:not(:disabled) { color: #C9A882; cursor: pointer; }
.bm-resend:disabled { opacity: 0.6; cursor: default; }
.bm-otp-status {
    margin-top: 8px;
    font-size: 12px;
    min-height: 18px;
    font-weight: 600;
}
.bm-otp-status.success { color: #5a9e6e; }
.bm-otp-status.error   { color: #e57373; }
.bm-mt { margin-top: 8px; }

/* ── Step 4: Summary ───────────────────────────────────── */
.bm-confirm-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.bm-confirm-icon { font-size: 24px; color: #C9A882; }
.bm-confirm-title { margin: 0; font-size: 15px; color: #1C1C1C; font-weight: 600; }

.bm-summary {
    background: #fff;
    border: 1px solid #E8E0D8;
    border-radius: 4px;
    overflow: hidden;
}
.bm-summary-row {
    display: flex;
    padding: 12px 16px;
    border-bottom: 1px solid #F0EBE4;
    gap: 12px;
}
.bm-summary-row:last-child { border-bottom: none; }
.bm-summary-key {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #999;
    min-width: 70px;
    padding-top: 2px;
}
.bm-summary-val {
    font-size: 14px;
    color: #1C1C1C;
    font-weight: 500;
}

/* ── Success Screen ────────────────────────────────────── */
.bm-success-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 0 8px;
}
.bm-success-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #C9A882, #b5906a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(201,168,130,0.3);
}
.bm-success-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: #1C1C1C;
    margin: 0 0 12px;
    letter-spacing: 0.5px;
}
.bm-success-msg {
    font-size: 15px;
    color: #555;
    margin: 0 0 16px;
    line-height: 1.6;
}
.bm-success-note {
    font-size: 13px;
    color: #999;
    margin: 0 0 24px;
    line-height: 1.6;
}
.bm-success-note a { color: #C9A882; }
.bm-success-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.bm-receipt-btn {
    border: 1.5px solid #C9A882;
    color: #C9A882;
}
.bm-receipt-btn:hover { background: #C9A882; color: #fff; }

@media (max-width: 480px) {
    .bm-success-actions { flex-direction: column; width: 100%; }
    .bm-success-actions .bm-btn { width: 100%; justify-content: center; }
    .bm-success-wrap { padding: 8px 0 4px; }
    .bm-success-title { font-size: 22px; }
}

/* ── Footer Nav ────────────────────────────────────────── */
.bm-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    border-top: 1px solid #E8E0D8;
    flex-shrink: 0;
    background: #F8F4EF;
}
.bm-footer-status {
    font-size: 12px;
    color: #999;
    flex: 1;
    text-align: center;
}

/* ── Buttons ───────────────────────────────────────────── */
.bm-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: all 0.18s;
    white-space: nowrap;
}
.bm-btn:disabled { opacity: 0.45; cursor: not-allowed; }

.bm-btn-primary { background: #1C1C1C; color: #fff; }
.bm-btn-primary:not(:disabled):hover { background: #333; }

.bm-btn-outline { background: transparent; color: #1C1C1C; border: 1.5px solid #1C1C1C; }
.bm-btn-outline:not(:disabled):hover { background: #1C1C1C; color: #fff; }

.bm-btn-ghost { background: transparent; color: #888; border: 1px solid transparent; }
.bm-btn-ghost:not(:disabled):hover { color: #1C1C1C; background: #EDE8E2; }

.bm-btn-full { width: 100%; justify-content: center; margin-top: 4px; }
.bm-btn-sm { padding: 8px 16px; font-size: 12px; }

/* Confirm (step 4) specific footer */
#bmNext[data-action="confirm"] { background: #C9A882; }
#bmNext[data-action="confirm"]:not(:disabled):hover { background: #b5906a; }

/* ph-spin animation */
.ph-spin { animation: phSpin 1s linear infinite; }
@keyframes phSpin { to { transform: rotate(360deg); } }

/* Scrollbar styling */
.bm-services-grid::-webkit-scrollbar,
.bm-slots-list::-webkit-scrollbar,
.bm-body::-webkit-scrollbar { width: 4px; }
.bm-services-grid::-webkit-scrollbar-track,
.bm-slots-list::-webkit-scrollbar-track,
.bm-body::-webkit-scrollbar-track { background: transparent; }
.bm-services-grid::-webkit-scrollbar-thumb,
.bm-slots-list::-webkit-scrollbar-thumb,
.bm-body::-webkit-scrollbar-thumb { background: #D8CFCA; border-radius: 4px; }

/* =================================================================
   V2 Additions
   ================================================================= */

/* ── Modal wrap (card + sidebar side-by-side on desktop) ───── */
.bm-modal-wrap {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 920px;
    width: 100%;
}
@media (max-width: 700px) {
    .bm-modal-wrap { flex-direction: column; align-items: stretch; gap: 0; }
}

/* Card max-width when sidebar is present */
.bm-card {
    flex: 1;
    min-width: 0;
}

/* ── Mobile welcome pill ────────────────────────────────────── */
.bm-mobile-pill {
    display: none;
    background: #1C1C1C;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 18px;
    text-align: center;
    letter-spacing: 0.3px;
}
@media (max-width: 700px) {
    .bm-mobile-pill { display: block; }
}

/* ── Category filter dropdown ───────────────────────────────── */
.bm-cat-filter { margin-bottom: 14px; }
.bm-cat-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #E8E0D8;
    border-radius: 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1C1C1C;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.15s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}
.bm-cat-select:focus { outline: none; border-color: #C9A882; box-shadow: 0 0 0 3px rgba(201,168,130,0.12); }

/* ── Pre-select banner ──────────────────────────────────────── */
.bm-preselect-banner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #F0FAF4;
    border: 1px solid #B8DFC6;
    border-radius: 4px;
    padding: 12px 14px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #2d6a4f;
    flex-wrap: wrap;
}
.bm-preselect-banner > i { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.bm-preselect-banner > span { flex: 1; min-width: 0; }
.bm-banner-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; width: 100%; }
.bm-banner-btn {
    background: none;
    border: 1px solid #2d6a4f;
    color: #2d6a4f;
    border-radius: 4px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    transition: all 0.15s;
}
.bm-banner-btn:hover { background: #2d6a4f; color: #fff; }
.bm-banner-btn-primary { background: #2d6a4f; color: #fff; }
.bm-banner-btn-primary:hover { background: #1a4a34; }

/* ── Selection strip ────────────────────────────────────────── */
.bm-selection-strip {
    background: #F8F4EF;
    border: 1px solid #E8E0D8;
    border-radius: 4px;
    padding: 10px 14px;
    margin-top: 12px;
    font-size: 12px;
}
.bm-strip-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.bm-strip-count { font-weight: 700; color: #1C1C1C; white-space: nowrap; }
.bm-strip-count.bm-strip-max { color: #C0392B; }
.bm-max-notice { display:flex; align-items:center; gap:8px; background:#FFF3CD; border:1px solid #F0C040; color:#7A5000; border-radius:8px; padding:10px 14px; font-size:0.85rem; margin-bottom:12px; }
.bm-max-notice i { font-size:1.1rem; flex-shrink:0; }
.bm-strip-names { color: #555; flex: 1; min-width: 0; }
.bm-strip-duration {
    font-weight: 700;
    color: #C9A882;
    white-space: nowrap;
    margin-left: auto;
}

/* ── Service card — no price (V2 hides it; keep .bm-svc-price hidden in modal) */
.bm-service-card .bm-svc-price { display: none; }

/* ── Calendar — new status classes ─────────────────────────── */
.bm-cal-day.partial { position: relative; }
.bm-cal-day.partial::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #C9A882;
}
.bm-cal-day.recurring-off .bm-cal-recur {
    font-size: 8px;
    position: absolute;
    top: 3px;
    right: 3px;
    opacity: 0.55;
}
/* Skeleton shimmer */
@keyframes bmShimmer {
    0%   { background-position: -200% 0; }
    100% { background-position:  200% 0; }
}
.bm-cal-day.bm-skeleton {
    background: linear-gradient(90deg, #f0ebe4 25%, #e5ddd5 50%, #f0ebe4 75%);
    background-size: 200% 100%;
    animation: bmShimmer 1.4s infinite;
    color: transparent;
    cursor: default;
    pointer-events: none;
    border-radius: 4px;
}

/* ── Calendar legend ────────────────────────────────────────── */
.bm-cal-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #E8E0D8;
}
.bm-legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    color: #888;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.bm-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.bm-legend-available { background: #E8E0D8; border: 1.5px solid #C5BCB6; }
.bm-legend-partial   { background: #C9A882; }
.bm-legend-full      { background: #FDE8E8; border: 1.5px solid #C08080; }
.bm-legend-off       { background: #CCC; }
.bm-legend-sel       { background: #C9A882; border: 2px solid #b5906a; }

/* ── Booked slot tag ────────────────────────────────────────── */
.bm-slot-tag {
    font-weight: 400;
    font-size: 11px;
    color: #C5BCB6;
}

/* ── OTP warn status ────────────────────────────────────────── */
.bm-otp-status.warn {
    color: #a06000;
    background: #fffbe6;
    border: 1px solid #ffe58f;
    border-radius: 4px;
    padding: 6px 10px;
}

/* ── Customer Sidebar ───────────────────────────────────────── */
.bm-customer-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: #F8F4EF;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 90vh;
    overflow-y: auto;
    align-self: flex-start;
    position: sticky;
    top: 20px;
}
@media (max-width: 700px) {
    .bm-customer-sidebar { display: none !important; }
}
.bm-sidebar-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #1C1C1C;
    padding-bottom: 12px;
    border-bottom: 1px solid #E8E0D8;
}
.bm-sidebar-header i { font-size: 20px; color: #C9A882; }
.bm-sidebar-section-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #B0A9A3;
    text-transform: uppercase;
}
.bm-sidebar-bookings { display: flex; flex-direction: column; gap: 10px; }
.bm-sidebar-booking {
    background: #fff;
    border: 1px solid #E8E0D8;
    border-radius: 4px;
    padding: 10px 12px;
}
.bm-sidebar-svc  { font-size: 12px; font-weight: 700; color: #1C1C1C; margin-bottom: 3px; }
.bm-sidebar-meta { font-size: 11px; color: #888; margin-bottom: 6px; }
.bm-sidebar-status {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 50px;
    background: #F5F2EF;
    color: #888;
}
.bm-status-confirmed { background: #EDFAF3; color: #2d6a4f; }
.bm-status-pending   { background: #FFF8EE; color: #a06000; }
.bm-status-cancelled { background: #FDE8E8; color: #c0392b; }
.bm-sidebar-empty {
    font-size: 12px;
    color: #B0A9A3;
    text-align: center;
    padding: 16px 0;
}
