/* ═══ BOOKING CARD OVERRIDE ═══ */
.glass-card.card-booking {
    background: rgba(255,255,255,0.85) !important;
    border-top: 3px solid #e8879a;
    padding: 0 !important;
    cursor: default !important;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.glass-card.card-booking:hover {
    background: rgba(255,255,255,0.85) !important;
    transform: none !important;
    box-shadow: none !important;
}
.card-booking .card-preview {
    padding: 0 !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 0;
}
[v-cloak]{display:none!important}

#bk-app {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    font-family: 'Inter',sans-serif;
    color: #2d2d2d;
}

/* ═══ HEADER ═══ */
.bk-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px 10px;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(232,135,154,0.1);
}
.bk-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.bk-back-btn {
    width: 28px; height: 28px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8879a;
    font-size: 14px;
    transition: 0.2s;
}
.bk-back-btn:hover { background: #fff0f3; border-color: #e8879a; }
.bk-icon { font-size: 20px; }
.bk-title { font-size: 13px; font-weight: 700; margin: 0; }
.bk-sub { font-size: 10px; color: #999; margin: 1px 0 0; }
.bk-dots { display: flex; gap: 3px; }
.bk-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #e0e0e0;
    transition: 0.3s;
}
.bk-dot.active {
    background: #e8879a;
    width: 16px;
    border-radius: 3px;
}

/* ═══ BODY ═══ */
.bk-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 14px;
    min-height: 0;
}
.bk-body::-webkit-scrollbar { width: 3px; }
.bk-body::-webkit-scrollbar-thumb { background: rgba(232,135,154,0.2); border-radius: 3px; }

/* ═══ HOME (Step 0) ═══ */
.bk-home {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 14px;
}
.bk-home-cards {
    display: flex;
    gap: 8px;
    flex: 1;
    min-height: 0;
}
.bk-home-card {
    flex: 1;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    min-height: 140px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.bk-home-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,135,154,0.2);
}
.bk-hc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}
.bk-home-card:hover .bk-hc-bg { transform: scale(1.05); }
.bk-hc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.05) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px;
}
.bk-hc-label {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    letter-spacing: 0.3px;
    line-height: 1.3;
}
.bk-hc-arrow {
    color: #fff;
    font-size: 18px;
    margin-top: 4px;
    opacity: 0.8;
}
/* ═══ HOT SLOT ═══ */
.bk-hot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: linear-gradient(135deg, #fff5f7, #fff0f3);
    border: 1.5px solid rgba(232,135,154,0.25);
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
    flex-shrink: 0;
}
.bk-hot:hover {
    border-color: #e8879a;
    box-shadow: 0 4px 14px rgba(232,135,154,0.15);
    transform: translateY(-1px);
}
.bk-hot-fire { font-size: 22px; flex-shrink: 0; }
.bk-hot-info { flex: 1; min-width: 0; }
.bk-hot-badge {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    color: #e8879a;
    letter-spacing: 0.5px;
}
.bk-hot-detail { font-size: 12px; font-weight: 600; color: #2d2d2d; margin-top: 2px; }
.bk-hot-time { font-size: 10px; color: #999; margin-top: 1px; }
.bk-hot-price { text-align: right; flex-shrink: 0; }
.bk-hot-amount { font-size: 16px; font-weight: 700; color: #e8879a; display: block; }
.bk-hot-go { font-size: 12px; color: #ccc; }

/* ═══ MASTERS ═══ */
.bk-masters { display: flex; flex-direction: column; gap: 6px; }
.bk-master {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.5);
    border: 1.5px solid rgba(232,135,154,0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
}
.bk-master:hover { background: rgba(255,255,255,0.8); border-color: rgba(232,135,154,0.25); }
.bk-master.active {
    background: rgba(232,135,154,0.08);
    border-color: #e8879a;
    box-shadow: 0 2px 10px rgba(232,135,154,0.12);
}
.bk-m-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border: 2px solid rgba(232,135,154,0.15);
}
.bk-master.active .bk-m-avatar { border-color: #e8879a; }
.bk-m-info { flex: 1; min-width: 0; }
.bk-m-name { font-size: 13px; font-weight: 600; }
.bk-m-meta { font-size: 10px; color: #999; margin-top: 1px; }
.bk-m-check {
    width: 24px; height: 24px;
    background: #e8879a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ═══ SERVICES ═══ */
.bk-services { display: flex; flex-direction: column; gap: 6px; }
.bk-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: rgba(255,255,255,0.5);
    border: 1.5px solid rgba(232,135,154,0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
}
.bk-service:hover { background: rgba(255,255,255,0.8); border-color: rgba(232,135,154,0.25); }
.bk-service.active {
    background: rgba(232,135,154,0.08);
    border-color: #e8879a;
    box-shadow: 0 2px 10px rgba(232,135,154,0.12);
}
.bk-srv-left { min-width: 0; }
.bk-srv-name { font-size: 13px; font-weight: 600; }
.bk-srv-dur { font-size: 10px; color: #999; margin-top: 2px; }
.bk-srv-price { font-size: 14px; font-weight: 700; color: #e8879a; flex-shrink: 0; margin-left: 8px; }
/* ═══ CALENDAR ═══ */
.bk-calendar { display: flex; flex-direction: column; gap: 8px; }
.bk-dates {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    padding-bottom: 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.bk-dates::-webkit-scrollbar { display: none; }
.bk-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 42px;
    padding: 8px 4px;
    border-radius: 10px;
    border: 1.5px solid #e8e8e8;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: 0.2s;
    flex-shrink: 0;
}
.bk-date:hover { border-color: rgba(232,135,154,0.4); }
.bk-date.active {
    background: #e8879a;
    border-color: #e8879a;
    color: #fff;
    box-shadow: 0 3px 10px rgba(232,135,154,0.3);
}
.bk-date-wd { font-size: 9px; font-weight: 600; text-transform: uppercase; opacity: 0.65; }
.bk-date-day { font-size: 16px; font-weight: 700; line-height: 1.3; }

/* ═══ SLOTS ═══ */
.bk-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}
.bk-slot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 10px;
    background: rgba(255,255,255,0.6);
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}
.bk-slot:hover { border-color: rgba(232,135,154,0.3); }
.bk-slot.active {
    border-color: #e8879a;
    background: rgba(232,135,154,0.08);
    box-shadow: 0 2px 8px rgba(232,135,154,0.12);
}
.bk-slot-time { font-size: 14px; font-weight: 700; color: #2d2d2d; }
.bk-slot-master { font-size: 9px; color: #999; }
.bk-empty { text-align: center; padding: 24px; font-size: 12px; color: #999; }

/* ═══ SUMMARY ═══ */
.bk-summary {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 12px;
    background: rgba(232,135,154,0.04);
    border: 1px solid rgba(232,135,154,0.1);
    border-radius: 10px;
    margin-bottom: 8px;
}
.bk-sum-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #444;
}
.bk-sum-row span:first-child { font-size: 13px; flex-shrink: 0; }
.bk-sum-val { margin-left: auto; font-weight: 700; color: #e8879a; }

/* ═══ FORM ═══ */
.bk-form-step { display: flex; flex-direction: column; gap: 8px; }
.bk-form { display: flex; flex-direction: column; gap: 6px; }
.bk-input {
    width: 100%;
    padding: 11px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 13px;
    font-family: 'Inter',sans-serif;
    outline: none;
    transition: 0.2s;
    box-sizing: border-box;
    background: rgba(255,255,255,0.8);
    color: #2d2d2d;
}
.bk-input:focus { border-color: #e8879a; box-shadow: 0 0 0 3px rgba(232,135,154,0.08); background: #fff; }
.bk-input::placeholder { color: #bbb; }
.bk-textarea { min-height: 60px; resize: vertical; }

/* ═══ PREPAY ═══ */
.bk-prepay-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}
.bk-prepay-icon { font-size: 36px; }
.bk-prepay-title { font-size: 16px; font-weight: 700; color: #2d2d2d; }
.bk-prepay-step .bk-summary { width: 100%; }

/* ═══ FOOTER ═══ */
.bk-footer {
    padding: 10px 14px 14px;
    flex-shrink: 0;
    border-top: 1px solid rgba(0,0,0,0.04);
}
.bk-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #e8879a, #d4a574);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s;
    font-family: 'Inter',sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-sizing: border-box;
}
.bk-btn:hover:not(.disabled) { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,135,154,0.3); }
.bk-btn.disabled { opacity: 0.35; cursor: not-allowed; }
.bk-btn-outline { background: transparent !important; border: 1.5px solid #e8879a; color: #e8879a; }
.bk-btn-outline:hover { background: rgba(232,135,154,0.05) !important; }

/* ═══ SUCCESS ═══ */
.bk-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding-top: 10px;
}
.bk-success-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}
.bk-success-title { font-size: 16px; font-weight: 700; }
.bk-success-text { font-size: 11px; color: #888; }
.bk-success .bk-summary { width: 100%; text-align: left; }

/* ═══ VIDEO FIX ═══ */
.bk-home-card {
    position: relative;
    overflow: hidden;
}
.bk-hc-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* ═══ SERVICE CARDS (3 horizontal) ═══ */
.bk-srv-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 12px 0;
}
.bk-srv-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 16px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.bk-srv-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}
.bk-srv-card-icon {
    font-size: 24px;
    margin-bottom: 2px;
}
.bk-srv-card-name {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.bk-srv-card-dur {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
}
.bk-srv-card-price {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-top: 4px;
}

/* ═══ HOME: 3 SERVICE MINI-CARDS (vertical) ═══ */
.bk-home-services {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.bk-home-srv {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    height: 33%;
    min-height: 60px;
    flex: 1;
    transition: transform 0.25s;
}
.bk-home-srv:hover {
    transform: translateY(-3px);
}
.bk-home-srv .bk-hc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.bk-home-srv .bk-hc-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 8px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.bk-home-srv .bk-hc-label {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.bk-hc-srv-price {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
}

/* Adjust home layout: master card + 3 service cards */
.bk-home-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* ═══ SERVICE VIDEO CARDS ═══ */
.bk-srv-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Consent checkbox */
.bk-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
    cursor: pointer;
    font-size: 12.5px;
    color: #888;
    line-height: 1.4;
}
.bk-consent input[type="checkbox"] {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: #9b59b6;
    cursor: pointer;
    flex-shrink: 0;
}
.bk-consent a {
    color: #9b59b6;
    text-decoration: underline;
    text-decoration-style: dotted;
}
.bk-consent a:hover {
    color: #8e44ad;
    text-decoration-style: solid;
}
