/* =============================================
   BOOKING — Complete Pixel Perfect CSS
   Matches all Figma screenshots exactly
============================================= */
.bk-page {
    background: linear-gradient(150deg, #fde8f0 0%, #fdf3f0 20%, #f5f0ff 55%, #edfaf5 100%);
    min-height: 100vh;
    padding: 0 0 80px;
    font-family: 'Inter', sans-serif;
}

/* Top nav */
.bk-topnav {
    padding: 18px 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    text-decoration: none;
    background: none;
    border: none;
}

.bk-topnav:hover {
    color: #e879ad;
}

/* Page heading */
.bk-page-heading {
    text-align: center;
    padding: 12px 20px 24px;
    margin-top: 94px;
}

.bk-page-heading h1 {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}

.bk-page-heading p {
    font-size: 15px;
    color: #9ca3af;
    margin: 0;
}

/* ── STEPPER ── */
.bk-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    padding: 0 20px;
}

.bk-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.bk-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s;
}

.bk-step-circle i {
    font-size: 16px;
}

.bk-step-label {
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    white-space: nowrap;
    transition: 0.25s;
    text-align: center;
}

.bk-step-item.active .bk-step-circle {
    background: #22c55e;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, .18);
}

.bk-step-item.active .bk-step-label {
    color: #111;
    font-weight: 700;
}

.bk-step-item.done .bk-step-circle {
    background: #22c55e;
    color: #fff;
}

.bk-step-item.done .bk-step-label {
    color: #6b7280;
}

.bk-step-connector {
    width: 70px;
    height: 2px;
    background: #e5e7eb;
    margin: 0 4px 22px;
    transition: 0.25s;
    flex-shrink: 0;
}

.bk-step-connector.done {
    background: #22c55e;
}

/* ── LAYOUT ── */
.bk-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 20px;
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: start;
    /* critical for sticky to work */
}

/* ── STICKY SIDEBAR (all steps) ── */
.bk-sidebar-sticky {
    position: sticky;
    top: 24px;
    align-self: start;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    scrollbar-width: none;
    z-index: 10;
}

.bk-sidebar-sticky::-webkit-scrollbar {
    display: none;
}

.bk-add-right-sticky {
    position: sticky !important;
    top: 24px !important;
    align-self: start !important;
    z-index: 100;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    scrollbar-width: none;
    transform: translateZ(0);
    will-change: transform;
}

.bk-add-right-sticky::-webkit-scrollbar {
    display: none;
}

/* CRITICAL: parent grid must have align-items: start */
.bk-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 20px;
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: start;
    /* yeh hona chahiye */
}


/* ── CARD ── */
.bk-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    padding: 24px;
    margin-bottom: 14px;
}

/* Step panels */
.bk-step-panel {
    display: none;
}

.bk-step-panel.is-active {
    display: block;
}

/* ── SECTION HEADERS ── */
.bk-sec-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px;
}

.bk-sec-sub {
    font-size: 14px;
    color: #9ca3af;
    margin: 0 0 20px;
}

/* ── BRANCH CARDS ── */
.bk-branch-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.bk-branch-card {
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: 0.2s;
    position: relative;
    background: #fff;
}

.bk-branch-card:hover {
    border-color: #e879ad;
    background: #fff8fc;
}

.bk-branch-card.is-selected {
    border-color: #e879ad;
    background: #fff0f7;
}

.bk-branch-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e879ad;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.bk-branch-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px;
}

.bk-branch-info p {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
    line-height: 1.45;
}

.bk-branch-selected-badge {
    display: inline-block;
    margin-top: 6px;
    background: #e879ad;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 999px;
}

.bk-branch-check {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid #e879ad;
    color: #e879ad;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: 0.2s;
}

.bk-branch-card.is-selected .bk-branch-check {
    opacity: 1;
}

/* ── CONTINUE BUTTON ── */
.bk-continue-btn {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    border: none;
    background: #e879ad;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.2s;
}

.bk-continue-btn:hover:not(:disabled) {
    background: #d366a0;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(232, 121, 173, .35);
}

.bk-continue-btn:disabled {
    background: #f5c6de;
    cursor: not-allowed;
    transform: none;
}

/* ── RIGHT SIDEBAR ── */
.bk-sb-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 16px;
}

.bk-sb-branch-preview {
    background: #fff5f9;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.bk-sb-branch-preview h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bk-sb-branch-preview h4 i {
    color: #e879ad;
}

.bk-sb-branch-preview p {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
    line-height: 1.5;
}

.bk-sb-avail-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
}

.bk-sb-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bk-sb-tag {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 5px 14px;
    font-size: 13px;
    color: #374151;
    background: #fff;
}

.bk-sb-empty {
    text-align: center;
    padding: 32px 16px;
}

.bk-sb-empty i {
    font-size: 36px;
    color: #d1d5db;
    display: block;
    margin-bottom: 10px;
}

.bk-sb-empty p {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
}

/* ── LOC STRIP ── */
.bk-loc-strip {
    background: #fff5f9;
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.bk-loc-strip-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bk-loc-strip-left i {
    color: #e879ad;
    font-size: 16px;
}

.bk-loc-strip-name {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.bk-loc-strip-addr {
    font-size: 12px;
    color: #9ca3af;
}

.bk-edit-btn {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.2s;
}

.bk-edit-btn:hover {
    border-color: #e879ad;
    color: #e879ad;
}

/* ── SEARCH ── */
.bk-search-wrap {
    position: relative;
    margin-bottom: 16px;
}

.bk-search-wrap i {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 14px;
}

.bk-search-input {
    width: 100%;
    height: 44px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    padding: 0 14px 0 38px;
    font-size: 14px;
    color: #374151;
    outline: none;
    transition: 0.2s;
}

.bk-search-input:focus {
    border-color: #e879ad;
    background: #fff;
}

.bk-search-input::placeholder {
    color: #bbb;
}

/* ── CATEGORY ACCORDION ── */
.bk-cat-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bk-cat-item {
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.bk-cat-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.bk-cat-header:hover {
    background: #fafafa;
}

.bk-cat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ci-pink {
    background: #fde8f0;
    color: #e879ad;
}

.ci-blue {
    background: #dbeafe;
    color: #3b82f6;
}

.ci-green {
    background: #dcfce7;
    color: #16a34a;
}

.ci-purple {
    background: #f3e8ff;
    color: #9333ea;
}

.bk-cat-info {
    flex: 1;
}

.bk-cat-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0 0 2px;
}

.bk-cat-info p {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.bk-cat-count {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
}

.bk-cat-chev {
    font-size: 13px;
    color: #9ca3af;
    transition: transform 0.25s;
    margin-left: 6px;
}

.bk-cat-item.is-open .bk-cat-chev {
    transform: rotate(180deg);
}

.bk-sub-list {
    display: none;
    padding: 0 12px 12px;
    flex-direction: column;
    gap: 8px;
}

.bk-cat-item.is-open .bk-sub-list {
    display: flex;
}

.bk-svc-row {
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: 0.2s;
    background: #fff;
    position: relative;
}

.bk-svc-row:hover {
    border-color: #e879ad;
    background: #fff8fc;
}

.bk-svc-row.is-selected {
    border-color: #e879ad;
    background: #fff3f8;
}

.bk-svc-chk {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid #e879ad;
    color: #e879ad;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0;
    transition: 0.15s;
}

.bk-svc-row.is-selected .bk-svc-chk {
    opacity: 1;
}

.bk-svc-row h5 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0 0 3px;
    padding-right: 28px;
}

.bk-svc-row p {
    font-size: 12px;
    color: #9ca3af;
    margin: 0 0 10px;
}

.bk-svc-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f3f4f6;
    padding-top: 8px;
}

.bk-svc-tags {
    display: flex;
    gap: 8px;
}

.bk-svc-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #6b7280;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 2px 8px;
}

.bk-svc-tag i {
    font-size: 11px;
}

.bk-svc-price {
    font-size: 15px;
    font-weight: 700;
    color: #e879ad;
}

/* ── DOCTOR PANEL ── */
.bk-doc-sub {
    font-size: 13px;
    color: #9ca3af;
    margin: 0 0 14px;
}

.bk-doctor-card {
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.2s;
    background: #fff;
    margin-bottom: 10px;
    position: relative;
}

.bk-doctor-card:hover {
    border-color: #e879ad;
    background: #fff8fc;
}

.bk-doctor-card.is-selected {
    border-color: #e879ad;
    background: #fff3f8;
}

.bk-doctor-card.is-unavailable {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.bk-doc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: #f3f4f6;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #9ca3af;
    overflow: hidden;
}

.bk-doc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.bk-doc-info h5 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0 0 2px;
}

.bk-doc-info p {
    font-size: 12px;
    color: #9ca3af;
    margin: 0 0 3px;
}

.bk-doc-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #111;
}

.bk-doc-rating i {
    color: #f59e0b;
}

.bk-same-doc-badge {
    background: #22c55e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    position: absolute;
    top: 10px;
    right: 10px;
}

/* ── DATE / TIME ── */
.bk-appt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.bk-appt-card {
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.2s;
    background: #fff;
}

.bk-appt-card.is-selected {
    border-color: #22c55e;
    background: #f0fdf4;
}

.bk-appt-card.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.bk-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.2s;
}

.bk-appt-card.is-selected .bk-radio {
    border-color: #22c55e;
    background: #22c55e;
}

.bk-radio-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
}

.bk-appt-card.is-selected .bk-radio-dot {
    opacity: 1;
}

.bk-appt-card h5 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0 0 2px;
}

.bk-appt-card p {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.bk-queue-num {
    background: #e879ad;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    margin-left: auto;
    white-space: nowrap;
}

.bk-cal-lbl {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.bk-date-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 20px;
}

.bk-date-cell {
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 4px 8px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    background: #fff;
}

.bk-date-cell:hover:not(.is-disabled) {
    border-color: #e879ad;
    background: #fff8fc;
}

.bk-date-cell.is-selected {
    border-color: #e879ad;
    background: #fff0f7;
}

.bk-date-cell.is-disabled {
    opacity: 0.38;
    cursor: not-allowed;
}

.bk-date-dow {
    font-size: 11px;
    color: #9ca3af;
    margin-bottom: 3px;
}

.bk-date-num {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.bk-date-cell.is-selected .bk-date-dow,
.bk-date-cell.is-selected .bk-date-num {
    color: #e879ad;
}

.bk-time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.bk-time-cell {
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: 0.2s;
    background: #fff;
}

.bk-time-cell:hover:not(.is-blocked) {
    border-color: #e879ad;
    background: #fff8fc;
}

.bk-time-cell.is-selected {
    border-color: #e879ad;
    background: #fff0f7;
    color: #e879ad;
    font-weight: 700;
}

.bk-time-cell.is-blocked {
    opacity: 0.38;
    cursor: not-allowed;
    background: #f9fafb;
}

.bk-blocked-note {
    font-size: 13px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
}

/* Queue info */
.bk-queue-info {
    background: #fff7ed;
    border: 1.5px solid #fed7aa;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.bk-queue-info h5 {
    font-size: 14px;
    font-weight: 700;
    color: #c2410c;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bk-queue-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #92400e;
    margin-bottom: 6px;
}

.bk-queue-row:last-child {
    margin-bottom: 0;
}

.bk-q-badge {
    background: #e879ad;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 999px;
}

/* Merged info */
.bk-merged-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #22c55e;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.bk-merged-box {
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 18px;
}

.bk-merged-box h5 {
    font-size: 14px;
    font-weight: 700;
    color: #15803d;
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bk-merged-box p {
    font-size: 13px;
    color: #166534;
    margin: 0;
    line-height: 1.55;
}

.bk-merged-time {
    display: inline-block;
    border: 1.5px solid #e879ad;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #e879ad;
    background: #fff;
    margin-top: 12px;
}

/* ── STEP 3 YOUR INFO ── */
.bk-info-strip {
    background: #e0f9ff;
    border: 1px solid #a5e8f5;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 18px;
    font-size: 13px;
    color: #1e5f6e;
}

.bk-info-strip a {
    color: #0891b2;
    font-weight: 600;
    text-decoration: none;
}

.bk-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.bk-input {
    width: 100%;
    height: 44px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    padding: 0 14px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #111;
    outline: none;
    transition: 0.2s;
}

.bk-input:focus {
    border-color: #e879ad;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(232, 121, 173, .1);
}

.bk-input::placeholder {
    color: #bbb;
}

.bk-chk-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    margin-top: 16px;
}

.bk-chk-label input {
    width: 16px;
    height: 16px;
    accent-color: #e879ad;
}

.bk-pwd-wrap {
    position: relative;
}

.bk-pwd-wrap .bk-input {
    padding-right: 40px;
}

.bk-pwd-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #9ca3af;
    font-size: 16px;
    cursor: pointer;
}

.bk-acc-box {
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    border-radius: 10px;
    padding: 16px;
    margin-top: 12px;
}

.bk-acc-box h5 {
    font-size: 13px;
    font-weight: 700;
    color: #15803d;
    margin: 0 0 8px;
}

.bk-acc-box ul {
    margin: 0 0 14px;
    padding-left: 18px;
}

.bk-acc-box li {
    font-size: 12px;
    color: #166534;
    line-height: 1.6;
}

/* ── STEP 4 REVIEW ── */
.bk-sum-svc-card {
    background: #fff5f9;
    border: 1px solid #fde8f0;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
}

.bk-sum-svc-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin: 0 0 16px;
}

.bk-sum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin-bottom: 16px;
}

.bk-sum-field label {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
    display: block;
    margin-bottom: 3px;
}

.bk-sum-field span {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.bk-fixed-pill {
    display: inline-block;
    background: #22c55e;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.bk-queue-pill {
    display: inline-block;
    background: #e879ad;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.bk-sum-price {
    font-size: 22px;
    font-weight: 800;
    color: #e879ad;
}

.bk-additional-block {
    background: #f5f0e8;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
    display: none;
}

.bk-additional-block.is-visible {
    display: block;
}

.bk-additional-block h4 {
    font-size: 16px;
    font-weight: 700;
    color: #6b4226;
    margin: 0 0 12px;
}

.bk-added-item {
    background: #fff;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.bk-added-item:last-child {
    margin-bottom: 0;
}

.bk-added-item-left h5 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0 0 3px;
}

.bk-added-item-left p {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.bk-added-item-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bk-added-price {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.bk-remove-x {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: 0.2s;
    flex-shrink: 0;
}

.bk-remove-x:hover {
    border-color: #e879ad;
    color: #e879ad;
}

.bk-contact-card {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 16px;
}

.bk-contact-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 14px;
}

.bk-contact-row {
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
}

.bk-contact-row:last-child {
    margin-bottom: 0;
}

.bk-contact-row strong {
    font-weight: 700;
}

.bk-add-svc-outline {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    border: 1.5px solid #e879ad;
    background: #fff;
    color: #374151;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.2s;
    margin-bottom: 16px;
}

.bk-add-svc-outline:hover {
    background: #fff8fc;
}

/* Payment sidebar */
.bk-pay-box {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    padding: 24px;
}

.bk-pay-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 16px;
}

.bk-promo-row {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.bk-promo-input {
    flex: 1;
    height: 42px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 13px;
    outline: none;
    background: #f9fafb;
    color: #111;
    width: 100%;
}

.bk-promo-input::placeholder {
    color: #bbb;
}

.bk-apply-btn {
    height: 42px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: 0.2s;
}

.bk-apply-btn:hover {
    border-color: #e879ad;
    color: #e879ad;
}

.bk-pay-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #374151;
    margin-bottom: 10px;
}

.bk-pay-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 12px 0;
}

.bk-pay-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin-bottom: 18px;
}

.bk-pay-total-amt {
    color: #e879ad;
}

.bk-confirm-btn {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    border: none;
    background: #22c55e;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.2s;
    margin-bottom: 10px;
}

.bk-confirm-btn:hover {
    background: #16a34a;
}

.bk-back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    transition: 0.2s;
}

.bk-back-link:hover {
    color: #e879ad;
}

/* Footer nav */
.bk-footer-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    margin-top: 8px;
}

.bk-back-btn {
    background: transparent;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bk-back-btn:hover {
    border-color: #e879ad;
    color: #e879ad;
}

.bk-next-btn {
    background: #e879ad;
    border: none;
    border-radius: 10px;
    padding: 11px 28px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.bk-next-btn:hover:not(:disabled) {
    background: #d366a0;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(232, 121, 173, .35);
}

.bk-next-btn:disabled {
    background: #f5c6de;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ── ADD ADDITIONAL SERVICE ── */
.bk-add-header {
    padding: 20px 24px 16px;
    max-width: 860px;
    margin: 0 auto;
}

.bk-add-header .bk-back-link-top {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    margin-bottom: 12px;
    border: none;
    background: none;
}

.bk-add-header .bk-back-link-top:hover {
    color: #e879ad;
}

.bk-add-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin: 0 0 4px;
}

.bk-add-header p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

.bk-add-layout {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px 40px;
    align-items: start;
    /* critical for sticky */
}

.bk-sum-sb-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #f0f0f0;
    padding: 20px;
}

.bk-sum-sb-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 14px;
}

.bk-sum-svc-mini {
    background: #fff5f9;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
}

.bk-sum-svc-mini label {
    font-size: 11px;
    color: #9ca3af;
    display: block;
    margin-bottom: 3px;
}

.bk-sum-svc-mini h5 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0 0 2px;
}

.bk-sum-svc-mini span {
    font-size: 15px;
    font-weight: 700;
    color: #e879ad;
}

.bk-sum-doc-mini {
    background: #eff8ff;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
}

.bk-sum-doc-mini label {
    font-size: 11px;
    color: #9ca3af;
    display: block;
    margin-bottom: 6px;
}

.bk-sum-doc-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bk-sum-doc-row img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.bk-sum-doc-row div h6 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0 0 2px;
}

.bk-sum-doc-row div p {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.bk-sum-date-mini {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid #f3f4f6;
    font-size: 13px;
    color: #374151;
}

.bk-sum-date-mini span:first-child {
    color: #9ca3af;
}

.bk-add-confirm-btn {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    border: none;
    background: #f5c6de;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    transition: 0.2s;
}

.bk-add-confirm-btn.active {
    background: #e879ad;
    cursor: pointer;
}

.bk-add-confirm-btn.active:hover {
    background: #d366a0;
}

/* Merge Modal */
.bk-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bk-modal-overlay.is-open {
    display: flex;
}

.bk-modal {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

.bk-modal-icon {
    font-size: 28px;
    color: #f59e0b;
    margin-bottom: 10px;
}

.bk-modal h3 {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin: 0 0 8px;
}

.bk-modal>p {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 14px;
    line-height: 1.55;
}

.bk-modal ul {
    padding-left: 18px;
    margin: 0 0 22px;
}

.bk-modal li {
    font-size: 13px;
    color: #374151;
    line-height: 1.65;
}

.bk-modal li strong {
    font-weight: 700;
    color: #111;
}

.bk-modal-btns {
    display: flex;
    gap: 10px;
}

.bk-modal-btn-outline {
    flex: 1;
    height: 44px;
    border-radius: 10px;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: 0.2s;
}

.bk-modal-btn-outline:hover {
    border-color: #e879ad;
    color: #e879ad;
}

.bk-modal-btn-green {
    flex: 1;
    height: 44px;
    border-radius: 10px;
    border: none;
    background: #22c55e;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.bk-modal-btn-green:hover {
    background: #16a34a;
}

/* Sidebar summary cards (step 2 date/time) */
.bk-sb-svc-card {
    background: #fff5f9;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
}

.bk-sb-svc-card label {
    font-size: 11px;
    color: #e879ad;
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

.bk-sb-svc-card h5 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.bk-sb-doc-card {
    background: #eff8ff;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
}

.bk-sb-doc-card label {
    font-size: 11px;
    color: #3b82f6;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.bk-sb-doc-card h5 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0 0 2px;
}

.bk-sb-doc-card p {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.bk-sb-date-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid #f3f4f6;
    font-size: 13px;
}

.bk-sb-date-row span:first-child {
    color: #9ca3af;
}

.bk-sb-date-row span:last-child {
    font-weight: 600;
    color: #111;
}

.d-none {
    display: none !important;
}

@media (max-width: 900px) {
    .bk-layout {
        grid-template-columns: 1fr;
    }

    .bk-add-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .bk-date-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .bk-time-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bk-appt-grid {
        grid-template-columns: 1fr;
    }

    .bk-sum-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════
   MONTH NAVIGATOR
══════════════════════════════════ */
.bk-month-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 8px 14px;
}

.bk-month-label {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.bk-month-prev,
.bk-month-next {
    background: #fde8f0;
    border: none;
    cursor: pointer;
    color: #e879ad;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 6px;
    transition: 0.15s;
    display: flex;
    align-items: center;
}

.bk-month-prev:hover,
.bk-month-next:hover {
    background: #fde8f0;
    color: #e879ad;
}

.bk-month-prev:disabled,
.bk-month-next:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* ══════════════════════════════════
   PHONE INPUT WITH FLAG
══════════════════════════════════ */
.bk-phone-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    overflow: hidden;
    transition: 0.2s;
}

.bk-phone-wrap:focus-within {
    border-color: #e879ad;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(232, 121, 173, .1);
}

.bk-phone-flag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    border-right: 1.5px solid #e5e7eb;
    height: 44px;
    flex-shrink: 0;
    background: #fff;
}

.bk-flag-emoji {
    font-size: 18px;
    line-height: 1;
}

.bk-phone-code {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
}

.bk-phone-input {
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-left: 12px !important;
    flex: 1;
}

.bk-phone-input:focus {
    box-shadow: none !important;
}

/* ══════════════════════════════════
   ADD SERVICE RIGHT SIDEBAR STICKY
══════════════════════════════════ */

.bk-add-right-sticky {
    position: sticky;
    top: 24px;
    align-self: start;
    z-index: 10;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    scrollbar-width: none;
}

.bk-add-right-sticky::-webkit-scrollbar {
    display: none;
}

/* ══════════════════════════════════
   OTP MODAL
══════════════════════════════════ */
.bk-otp-inputs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
}

.bk-otp-digit {
    width: 48px;
    height: 54px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    outline: none;
    transition: 0.2s;
    background: #f9fafb;
}

.bk-otp-digit:focus {
    border-color: #e879ad;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(232, 121, 173, .15);
}

.bk-otp-digit.is-filled {
    border-color: #e879ad;
    background: #fff0f7;
}

/* ══════════════════════════════════
   THANK YOU MODAL
══════════════════════════════════ */
.bk-thankyou-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(34, 197, 94, .35);
    animation: bk-pop 0.4s cubic-bezier(.34, 1.56, .64, 1) both;
}

@keyframes bk-pop {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.bk-thankyou-details {
    background: #f9fafb;
    border-radius: 12px;
    padding: 16px;
    text-align: left;
}

.bk-thankyou-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #374151;
    padding: 6px 0;
    border-bottom: 1px solid #f3f4f6;
}

.bk-thankyou-row:last-child {
    border-bottom: none;
}

.bk-thankyou-row span:first-child {
    color: #9ca3af;
}

.bk-thankyou-row span:last-child {
    font-weight: 600;
    color: #111;
}

/* ══════════════════════════════════
   THANK YOU MODAL — wider for promo
══════════════════════════════════ */
.bk-thankyou-modal {
    max-width: 520px !important;
    text-align: center;
}

/* ══════════════════════════════════
   APP PROMOTION SECTION
══════════════════════════════════ */
.bk-app-promo {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, #fff0f7 0%, #f0f9ff 100%);
    border: 1.5px solid #fce7f3;
    border-radius: 16px;
    padding: 18px 20px;
    margin-top: 18px;
    text-align: left;
}

.bk-app-promo-left {
    flex: 1;
}

.bk-app-promo-badge {
    display: inline-block;
    background: #e879ad;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.bk-app-promo-left h4 {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin: 0 0 6px;
}

.bk-app-promo-left p {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 14px;
    line-height: 1.5;
}

.bk-app-store-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bk-store-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.2s;
    flex-shrink: 0;
}

.bk-store-apple {
    background: #111;
    color: #fff;
}

.bk-store-google {
    background: #fff;
    color: #111;
    border: 1.5px solid #e5e7eb;
}

.bk-store-apple:hover {
    background: #333;
    color: #fff;
    transform: translateY(-1px);
}

.bk-store-google:hover {
    background: #f9fafb;
    border-color: #e879ad;
    transform: translateY(-1px);
}

.bk-store-btn i {
    font-size: 20px;
    flex-shrink: 0;
}

.bk-store-btn div span {
    display: block;
    font-size: 9px;
    opacity: 0.75;
    line-height: 1;
    margin-bottom: 1px;
}

.bk-store-btn div strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.bk-app-promo-right {
    flex-shrink: 0;
}

.bk-qr-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.bk-qr-img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(232, 121, 173, 0.25);
    object-fit: cover;
}

.bk-qr-wrap p {
    font-size: 10px;
    color: #9ca3af;
    margin: 0;
    font-weight: 500;
    text-align: center;
}

/* Responsive app promo */
@media (max-width: 480px) {
    .bk-app-promo {
        flex-direction: column;
        text-align: center;
    }

    .bk-app-promo-left {
        width: 100%;
    }

    .bk-app-store-btns {
        justify-content: center;
    }

    .bk-app-promo-right {
        display: none;
    }

    .bk-thankyou-modal {
        max-width: 95vw !important;
    }
}

.bk-add-right-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    /* position: relative — JS margin-top se control hogi */
}

@media (max-width: 900px) {
    .bk-add-right-col {
        gap: 10px;
    }
}
