/* Book Consultation — ref-inspired 3-column layout */
.bk-page .pg-cosmic-content {
    z-index: 2;
}

/* Clear fixed site navbar (matches .pg-hero offset in pages.css) */
.bk-hero {
    margin-top: 5.5rem;
    background: linear-gradient(135deg, #f0c96e 0%, #fdeec8 40%, #fff9f0 75%, #fff 100%);
    padding: 1.75rem 0 1.5rem;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
    position: relative;
    z-index: 1;
}

.bk-hero-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 1.5rem;
}

.bk-hero-inner>div:first-child {
    flex: 1 1 220px;
    min-width: 0;
}

.bk-breadcrumb {
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.bk-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.bk-breadcrumb a:hover {
    color: var(--primary, #FF8C00);
}

.bk-hero-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0;
    color: #1a1410;
    line-height: 1.2;
}

.bk-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
}

.bk-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: #555;
    font-weight: 500;
    padding: 0.35rem 0.65rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    border: 1px solid rgba(255, 140, 0, 0.12);
}

.bk-trust-pill svg {
    color: #FF8C00;
    flex-shrink: 0;
}

.bk-main {
    padding: 2rem 0 3rem;
}

.bk-grid {
    display: grid;
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.bk-booking-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

.bk-datetime-row {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 340px);
    gap: 1rem;
    align-items: stretch;
}

/* Profile card */
.bk-profile-card,
.bk-calendar-card,
.bk-slots-card {
    background: #fff;
    border: 1px solid rgba(255, 140, 0, 0.12);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 8px 32px rgba(255, 140, 0, 0.06);
    min-width: 0;
}

.bk-calendar-card,
.bk-slots-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bk-profile-card {
    position: sticky;
    top: 6rem;
}

.bk-profile-top {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.bk-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #FF8C00, #FFC107);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.bk-profile-top h2 {
    font-size: 1rem;
    margin: 0 0 0.15rem;
    line-height: 1.3;
}

.bk-profile-role {
    font-size: 0.78rem;
    color: #888;
    margin: 0 0 0.35rem;
}

.bk-rating {
    font-size: 0.72rem;
    color: #666;
}

.bk-stars {
    color: #FF8C00;
    letter-spacing: -1px;
}

.bk-includes h3 {
    font-size: 0.82rem;
    margin: 0 0 0.5rem;
    color: #333;
}

.bk-includes ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.78rem;
    color: #555;
}

.bk-includes li {
    padding: 0.25rem 0 0.25rem 1.2rem;
    position: relative;
}

.bk-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}

.bk-lang {
    font-size: 0.76rem;
    color: #666;
    margin: 1rem 0 0;
}

.bk-help-box {
    margin-top: 1.25rem;
    padding: 0.85rem;
    background: #f8faf5;
    border-radius: 12px;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.bk-help-box p {
    margin: 0 0 0.5rem;
    font-size: 0.78rem;
    color: #555;
}

.bk-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    background: #25D366;
    color: #fff !important;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
}

.bk-whatsapp:hover {
    opacity: 0.92;
}

.bk-flow-steps {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0.85rem 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid rgba(255, 140, 0, 0.14);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.06);
}

.bk-flow-step {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
}

.bk-flow-step span {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.05);
    color: #666;
}

.bk-flow-step.is-active {
    color: #1a1410;
}

.bk-flow-step.is-active span {
    background: linear-gradient(135deg, #FF8C00, #FFC107);
    color: #fff;
}

@media (max-width: 767.98px) {
    .bk-flow-steps {
        justify-content: flex-start;
    }
}

/* Calendar */
.bk-step-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #FF8C00;
    margin: 0 0 0.75rem;
}

.bk-cal {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bk-cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.65rem;
    gap: 0.5rem;
}

.bk-cal-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    flex: 1;
}

.bk-cal-title-wrap h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.bk-cal-nav {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    background: #fff;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    color: #333;
    line-height: 1;
}

.bk-cal-nav:hover {
    background: #fff8ee;
}

.bk-cal-today {
    border: none;
    background: none;
    font-size: 0.68rem;
    font-weight: 600;
    color: #FF8C00;
    cursor: pointer;
    padding: 0;
}

.bk-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    text-align: center;
    font-size: 0.68rem;
    font-weight: 600;
    color: #999;
    margin-bottom: 0.35rem;
    width: 100%;
}

.bk-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
    flex: 1;
}

.bk-cal-day {
    width: 100%;
    min-height: 38px;
    aspect-ratio: 1;
    max-height: 52px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 0;
    justify-self: stretch;
}

.bk-cal-day:hover:not(:disabled) {
    background: rgba(255, 140, 0, 0.1);
}

.bk-cal-day.is-selected {
    background: #FF8C00 !important;
    color: #fff;
}

.bk-cal-day.is-today:not(.is-selected) {
    border: 2px solid #FF8C00;
    background: rgba(255, 140, 0, 0.06);
}

.bk-cal-day.is-muted {
    color: #ccc;
}

.bk-cal-day:disabled {
    color: #ddd;
    cursor: not-allowed;
}

.bk-cal-day .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: block;
}

.dot-available {
    background: #22c55e;
}

.dot-partial {
    background: #FF8C00;
}

.dot-full {
    background: #ef4444;
}

.dot-off {
    background: #cbd5e1;
}

.bk-cal-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    margin-top: 0.85rem;
    font-size: 0.68rem;
    color: #777;
}

.bk-cal-legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.bk-cal-legend .dot {
    width: 6px;
    height: 6px;
}

/* Session types — above calendar */
.bk-form-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #888;
    margin-bottom: 0.45rem;
}

.bk-session-types {
    margin: 0;
    padding: 1.1rem 1.25rem;
    background: #fff;
    border: 1px solid rgba(255, 140, 0, 0.12);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(255, 140, 0, 0.06);
}

.bk-type-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.6rem;
}

.bk-type-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: 10px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.bk-type-btn strong {
    font-size: 0.85rem;
    color: #222;
}

.bk-type-btn span {
    font-size: 0.72rem;
    color: #888;
}

.bk-type-btn.is-active {
    border-color: #FF8C00;
    background: rgba(255, 140, 0, 0.06);
    box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.12);
}

.bk-type-btn.is-active strong {
    color: #FF8C00;
}

/* Info strip */
.bk-info-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    background: #fff;
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 14px;
}

.bk-info-strip .bk-info-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
}

.bk-info-strip .bk-info-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #fff3e0, #ffe8cc);
    border-radius: 10px;
    font-size: 0.95rem;
    margin: 0;
    flex-shrink: 0;
}

.bk-info-strip .bk-info-label {
    display: block;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #999;
    margin-bottom: 0.1rem;
}

.bk-info-strip .bk-info-item strong {
    font-size: 0.82rem;
    color: #222;
}

/* Legacy info grid (unused) */
.bk-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.bk-info-item {
    background: linear-gradient(180deg, #fffbf5 0%, #fff8ee 100%);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 12px;
    padding: 0.65rem 0.5rem;
    text-align: center;
}

.bk-info-icon {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.bk-info-label {
    display: block;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #999;
    margin-bottom: 0.2rem;
}

.bk-info-item strong {
    font-size: 0.78rem;
    color: #222;
}

.bk-privacy-note {
    font-size: 0.72rem;
    color: #888;
    margin: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

/* Slots */
.bk-slots-date {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1rem;
}

.bk-slots-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
    min-height: 200px;
    max-height: 380px;
    overflow-y: auto;
    margin-bottom: 0;
    padding-right: 0.25rem;
}

.bk-slot-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
    margin-bottom: 0.65rem;
    font-size: 0.68rem;
    color: #666;
}

.bk-slot {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    margin: 0;
}

.bk-slot.is-available {
    border-color: rgba(34, 197, 94, 0.35);
    background: rgba(34, 197, 94, 0.04);
}

.bk-slot.is-booked {
    border-color: rgba(239, 68, 68, 0.35);
    background: rgba(239, 68, 68, 0.06);
    color: #991b1b;
}

.bk-slot.is-blocked,
.bk-slot.is-past {
    border-color: rgba(156, 163, 175, 0.45);
    background: rgba(156, 163, 175, 0.08);
    color: #6b7280;
}

.bk-slot.is-disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.85;
}

.bk-slot.is-selected,
.bk-slot:has(input:checked) {
    border-color: #FF8C00;
    background: rgba(255, 140, 0, 0.1);
    box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.15);
}

.bk-slot input {
    accent-color: #FF8C00;
}

.bk-slot-time {
    flex: 1;
    font-size: 0.85rem;
    font-weight: 600;
    color: inherit;
}

.bk-slot-status {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.bk-slot.is-available .bk-slot-status {
    color: #15803d;
}

.bk-slot.is-booked .bk-slot-status {
    color: #b91c1c;
}

.bk-slot.is-blocked .bk-slot-status,
.bk-slot.is-past .bk-slot-status {
    color: #6b7280;
}

.bk-slot.is-selected .bk-slot-status {
    color: #c2410c;
}

.bk-slot-price {
    font-size: 0.82rem;
    font-weight: 700;
    color: #FF8C00;
}

.bk-status-swatch {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.25rem;
    vertical-align: middle;
}

.bk-status-swatch.is-available {
    background: #22c55e;
}

.bk-status-swatch.is-booked {
    background: #ef4444;
}

.bk-status-swatch.is-blocked {
    background: #9ca3af;
}

.bk-status-swatch.is-selected {
    background: #FF8C00;
}

.bk-reschedule-banner {
    background: rgba(255, 140, 0, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.25);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    font-size: 0.85rem;
    color: #7c4a00;
    margin-bottom: 1rem;
}

.bk-booking-error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #991b1b;
    border-radius: 10px;
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.bk-cal-day.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.bk-cal-day.is-advance-blocked {
    color: #aaa;
    background: #f3f3f3;
}

.bk-cal-day .dot.dot-advance {
    background: #ccc;
}

.bk-break-label {
    text-align: center;
    font-size: 0.72rem;
    color: #999;
    padding: 0.35rem 0;
    font-style: italic;
}

.bk-slots-empty {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    padding: 2rem 0.5rem;
    margin: 0;
}

.bk-notes {
    margin-bottom: 1rem;
}

.bk-notes .pg-input {
    font-size: 0.85rem;
    resize: vertical;
}

.bk-proceed-btn {
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.9rem 1rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #FF7000, #FF8C00);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.bk-proceed-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.35);
}

.bk-proceed-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* Trust row */
.bk-trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 140, 0, 0.1);
}

.bk-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.04);
}

.bk-trust-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.bk-trust-icon--green {
    background: rgba(34, 197, 94, 0.15);
}

.bk-trust-icon--blue {
    background: rgba(59, 130, 246, 0.15);
}

.bk-trust-icon--orange {
    background: rgba(255, 140, 0, 0.15);
}

.bk-trust-icon--purple {
    background: rgba(139, 92, 246, 0.15);
}

.bk-trust-item strong {
    display: block;
    font-size: 0.82rem;
    margin-bottom: 0.15rem;
    color: #222;
}

.bk-trust-item span {
    font-size: 0.72rem;
    color: #888;
    line-height: 1.4;
}

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

    .bk-profile-card {
        position: static;
    }

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

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

@media (max-width: 991.98px) {
    .bk-hero {
        margin-top: 5rem;
        padding: 1.25rem 0 1.25rem;
    }
}

@media (max-width: 700px) {
    .bk-datetime-row {
        grid-template-columns: 1fr;
    }

    .bk-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .bk-hero-trust {
        flex-direction: column;
        gap: 0.35rem;
    }

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

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

.bk-summary {
    margin-top: 1.25rem;
    padding-top: 1rem;
    padding-bottom: 0.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.bk-summary+.bk-proceed-btn {
    margin-top: 1rem;
}

.bk-summary-lines {
    margin-bottom: 1rem;
}

.bk-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0;
}

.bk-summary-row--discount strong {
    color: #0f766e;
}

.bk-summary-row--total {
    font-size: 1.05rem;
    font-weight: 700;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 0.35rem;
    padding-top: 0.55rem;
}

.bk-coupon {
    margin-top: 0.25rem;
}

.bk-coupon-row {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.bk-coupon-row .pg-input {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    font-size: 0.875rem;
    line-height: 1.25;
}

.bk-coupon-apply,
.bk-coupon-remove {
    flex-shrink: 0;
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border: 0;
    border-radius: 10px;
    padding: 0 1rem;
    min-height: 2.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.25;
    cursor: pointer;
}

.bk-coupon-apply {
    background: var(--primary, #c45c00);
    color: #fff;
}

.bk-coupon-remove {
    background: #f3f4f6;
    color: #374151;
}

.bk-coupon-msg {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
}

.bk-coupon-msg.is-error {
    color: #b91c1c;
}

.bk-coupon-msg.is-success {
    color: #0f766e;
}

.bk-consultation {
    margin-top: 0;
    padding: 1.35rem;
    background: linear-gradient(160deg, #fffaf5 0%, #fff 55%);
    border: 1px solid rgba(255, 140, 0, 0.14);
    border-radius: 18px;
    box-shadow: 0 10px 36px rgba(255, 140, 0, 0.08);
    animation: bkConsultFade 0.45s ease both;
}

@keyframes bkConsultFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bk-consultation-head {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
}

.bk-consultation-head-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #FF8C00, #FFC107);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 140, 0, 0.3);
}

.bk-consultation-step {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #FF8C00;
    margin-bottom: 0.15rem;
}

.bk-consultation-title {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1410;
    line-height: 1.2;
}

.bk-consultation-lead {
    margin: 0;
    font-size: 0.85rem;
    color: #6b6560;
    line-height: 1.5;
}

.bk-consultation-question {
    margin-bottom: 1.1rem;
}

.bk-questions-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.bk-questions-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a1410;
}

.bk-questions-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: #FF8C00;
    background: rgba(255, 140, 0, 0.1);
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.bk-questions-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.bk-question-item {
    position: relative;
    padding: 0.85rem;
    background: #fff;
    border: 1px solid rgba(255, 140, 0, 0.12);
    border-radius: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.bk-question-item:focus-within {
    border-color: rgba(255, 140, 0, 0.35);
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.08);
}

.bk-question-item .bk-field {
    margin-bottom: 0;
}

.bk-question-remove {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    padding: 0.35rem 0.65rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #9ca3af;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.bk-question-remove:hover {
    color: #e53935;
    border-color: rgba(229, 57, 53, 0.3);
    background: #fff5f5;
}

.bk-add-question {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.75rem;
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FF8C00;
    background: #fff;
    border: 1.5px dashed rgba(255, 140, 0, 0.45);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.bk-add-question:hover:not(:disabled) {
    background: #fffaf3;
    border-color: #FF8C00;
    transform: translateY(-1px);
}

.bk-add-question:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.bk-required {
    color: #e53935;
    font-weight: 700;
}

.bk-optional {
    font-weight: 500;
    color: #9ca3af;
    font-size: 0.85em;
}

/* Floating label fields */
.bk-field {
    position: relative;
    margin-bottom: 0.65rem;
}

.bk-field--full {
    grid-column: 1 / -1;
}

.bk-input {
    width: 100%;
    padding: 1.05rem 0.9rem 0.5rem;
    font-size: 0.9rem;
    border: 1.5px solid rgba(0, 0, 0, 0.09);
    border-radius: 14px;
    background: #fff;
    color: #1a1410;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.bk-input--area {
    min-height: 110px;
    padding-top: 1.35rem;
    resize: vertical;
    line-height: 1.5;
}

.bk-input:focus {
    outline: none;
    border-color: #FF8C00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.12);
    background: #fffdf9;
}

.bk-field label {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.88rem;
    font-weight: 500;
    color: #8a8580;
    pointer-events: none;
    transition: all 0.2s ease;
}

.bk-field--float textarea+label {
    top: 1rem;
    transform: none;
}

.bk-field--float .bk-input:focus+label,
.bk-field--float .bk-input:not(:placeholder-shown)+label,
.bk-field--float.has-value label,
.bk-field--float textarea:focus+label,
.bk-field--float textarea:not(:placeholder-shown)+label {
    top: 0.5rem;
    transform: translateY(0);
    font-size: 0.68rem;
    font-weight: 600;
    color: #FF8C00;
    letter-spacing: 0.02em;
}

.bk-field--float textarea:focus+label,
.bk-field--float textarea:not(:placeholder-shown)+label {
    top: 0.55rem;
}

.bk-field--float input[type="date"].bk-input,
.bk-field--float input[type="time"].bk-input {
    padding-top: 1.2rem;
    padding-bottom: 0.5rem;
    min-height: 48px;
    color-scheme: light;
}

.bk-field--float input[type="date"]+label,
.bk-field--float input[type="time"]+label {
    top: 0.5rem;
    transform: translateY(0);
    font-size: 0.68rem;
    font-weight: 600;
    color: #FF8C00;
}

.bk-date-input::-webkit-calendar-picker-indicator,
.bk-time-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.65;
    filter: hue-rotate(-10deg);
}

.bk-field-hint {
    margin: 0.35rem 0 0;
    font-size: 0.78rem;
    color: #9ca3af;
    line-height: 1.45;
}

.bk-field-hint--inline {
    margin-top: 0.15rem;
    padding-left: 0.15rem;
}

/* Birth details card */
.bk-birth-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 140, 0, 0.12);
    border-radius: 16px;
    padding: 1.1rem 1.15rem 1rem;
    margin-bottom: 1.1rem;
    backdrop-filter: blur(6px);
}

.bk-birth-card-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.bk-birth-card-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #fff3e0, #ffe8cc);
    color: #FF8C00;
    flex-shrink: 0;
}

.bk-birth-card-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1410;
}

.bk-birth-card-sub {
    margin: 0.1rem 0 0;
    font-size: 0.75rem;
    color: #9ca3af;
}

.bk-birth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 0.85rem;
}

/* Upload zone */
.bk-upload-block {
    margin-top: 0.25rem;
}

.bk-upload-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 1.5rem 1rem;
    border: 2px dashed rgba(255, 140, 0, 0.3);
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.bk-upload-zone:hover,
.bk-upload-zone.is-dragover {
    border-color: #FF8C00;
    background: #fffaf3;
    transform: translateY(-1px);
}

.bk-upload-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.bk-upload-icon {
    color: #FF8C00;
    animation: bkUploadFloat 3s ease-in-out infinite;
}

@keyframes bkUploadFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.bk-upload-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1410;
}

.bk-upload-hint {
    font-size: 0.75rem;
    color: #9ca3af;
    max-width: 260px;
    line-height: 1.4;
}

.bk-upload-list {
    list-style: none;
    padding: 0;
    margin: 0.65rem 0 0;
    font-size: 0.8rem;
    color: #6b6560;
}

.bk-upload-list li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

.bk-upload-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FF8C00;
    flex-shrink: 0;
}

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

    .bk-consultation {
        padding: 1.1rem;
    }
}

/* Full-width checkout (consultation + summary) */
.bk-checkout {
    margin-top: 1.5rem;
    animation: bkConsultFade 0.45s ease both;
}

.bk-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1.25rem;
    align-items: start;
}

.bk-checkout .bk-summary {
    position: sticky;
    top: 6rem;
    background: #fff;
    border: 1px solid rgba(255, 140, 0, 0.14);
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 10px 36px rgba(255, 140, 0, 0.08);
}

.bk-checkout .bk-proceed-btn {
    margin-top: 1rem;
}

.bk-proceed-btn--inline {
    margin-top: 1rem;
    width: 100%;
}

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

    .bk-checkout .bk-summary {
        position: static;
    }

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