.hhb-wizard {
    --hhb-gold: #D4A034;
    --hhb-gold-light: #F0C868;
    --hhb-gold-dark: #B8871F;
    --hhb-dark: #14161A;
    --hhb-dark-soft: #1C1F25;
    --hhb-border: #E7E5E1;
    --hhb-border-soft: #F0EEEA;
    --hhb-text: #21201D;
    --hhb-text-muted: #7A7670;
    --hhb-purple: #6C63E0;
    --hhb-purple-dark: #5148C9;
    --hhb-green: #3FA66B;
    --hhb-red: #E4574C;
    --hhb-radius: 8px;
    --hhb-font: var(--e-global-typography-primary-font-family), Georgia, serif;

    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    font-family: var(--hhb-font);
    color: var(--hhb-text);
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.hhb-wizard * { box-sizing: border-box; }

/* sidebar */

.hhb-sidebar {
    width: 230px;
    flex-shrink: 0;
    background: var(--hhb-dark);
    color: #fff;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
}
.hhb-logo {
    font-family: var(--e-global-typography-primary-font-family);
    font-style: italic;
    font-size: 20px;
    color: var(--hhb-gold-light);
    text-align: center;
    padding: 18px 10px;
    margin-bottom: 24px;
    border: 1px solid var(--hhb-gold-dark);
    border-radius: 6px;
}
.hhb-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}
.hhb-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 4px;
    font-size: 14.5px;
    color: #8A8D94;
}
.hhb-step-num {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #33363D;
    color: #C7C9CE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}
.hhb-step.is-active {
    color: #fff;
}
.hhb-step.is-active .hhb-step-num {
    background: #F2B545;
    color: #000;
}
.hhb-step.is-done {
    color: #C7C9CE;
}
.hhb-step.is-done .hhb-step-num {
    background: #fff;
    color: #000;
}
.hhb-step.is-done .hhb-step-num::after { content: '✓'; }
.hhb-step.is-done .hhb-step-num { font-size: 0; }
.hhb-step.is-done .hhb-step-num::after { font-size: 12px; }

.hhb-sidebar-footer {
    padding-top: 18px;
    border-top: 1px solid #2B2E34;
    font-size: 12.5px;
    color: #8A8D94;
}
.hhb-sidebar-footer p { margin: 0 0 4px; }
.hhb-sidebar-footer span { color: #D0D2D6; }

/* content */

.hhb-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #F7F7F8;
}
.hhb-content-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid var(--hhb-border);
    background: #fff;
}
.hhb-panel-title {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    color: var(--hhb-text);
}
.hhb-cart-btn {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #E7E5E1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #21201D;
    cursor: pointer;
    padding: 12px;
}
.hhb-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: #F2B545;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hhb-panel-body {
    flex: 1;
    padding: 24px 28px;
    min-height: 340px;
}

.hhb-panel { display: none; }
.hhb-panel.is-visible { display: block; }

.hhb-loading, .hhb-empty {
    color: var(--hhb-text-muted);
    font-size: 14px;
    padding: 20px 0;
}

.hhb-msg {
    margin: 0 28px;
    min-height: 18px;
    font-size: 13.5px;
    font-weight: 600;
}
.hhb-msg:empty { display: none; }
.hhb-msg-error { color: var(--hhb-red); }
.hhb-msg-success { color: var(--hhb-green); }

.hhb-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    border-top: 1px solid var(--hhb-border);
    background: #fff;
}

.hhb-btn {
    height: 44px;
    padding: 0 26px;
    border-radius: 6px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
}
.hhb-btn-back {
    background: #fff;
    border-color: #E7E5E1;
    color: #21201D;
    border-radius: 0;
    font-family: var(--e-global-typography-primary-font-family);
}
.hhb-btn-back:hover { background: #F2F2F2; }
.hhb-btn-next {
    margin-left: auto;
    background-color: #F2B54500;
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 17px;
    font-weight: 500;
    color: #000;
    border: 1px solid #F2B545;
    border-radius: 0px 0px 0px 0px;
    padding: 11px 25px 11px 25px;
}
.hhb-btn-next:hover:not(:disabled) {
    background: #262b14;
    color: #fff;
    border: 1px solid #262b14;
}
.hhb-btn-next:disabled {
    background: #f2b54514;
    cursor: not-allowed;
}

/* Step 1: list */

.hhb-list-row, .hhb-service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 6px;
    border-bottom: 1px solid var(--hhb-border-soft);
    cursor: pointer;
    color: #000;
    font-weight: 600;
    font-size: 15px;
}
.hhb-list-row:hover {
    color: #F2B545;
}
.hhb-list-row svg {
    color: #262B14;
    flex-shrink: 0;
}
.hhb-category-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 6px 16px;
    color: #262B14;
    font-weight: 700;
    cursor: pointer;
}
.hhb-service-row {
    color: var(--hhb-text);
    font-weight: 400;
    gap: 14px;
}
.hhb-service-row.is-selected {
    background: #262b140a;
    border-radius: 6px;
    padding-left: 10px;
    padding-right: 10px;
    color: #262b14;
}
.hhb-service-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.hhb-service-avatar-placeholder {
    background: linear-gradient(135deg, #E9E7FB, #D6D2F5);
}
.hhb-service-info {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hhb-service-name {
    font-weight: 600;
    color: var(--hhb-text);
}
.hhb-badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--hhb-gold-dark);
    background: #FBF1DC;
    padding: 2px 9px;
    border-radius: 999px;
}
.hhb-service-price {
    font-weight: 700;
    color: #262b14;
    flex-shrink: 0;
}

/* Step 2: date & time */

.hhb-datetime {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.hhb-calendar {
    flex: 1 1 340px;
    min-width: 300px;
}
.hhb-cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    font-weight: 700;
}
.hhb-cal-nav button {
    border-radius: 50%;
    border: 1px solid #E7E5E1;
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hhb-cal-nav button:hover {
    background: #F2F2F2;
}
.hhb-cal-dow, .hhb-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}
.hhb-cal-dow span {
    font-size: 12px;
    color: var(--hhb-text-muted);
    font-weight: 600;
    padding-bottom: 6px;
}
.hhb-cal-cell {
    padding: 10px 0;
    font-size: 14px;
    border-radius: 4px;
    cursor: default;
    color: #C7C5C1;
}
.hhb-cal-cell.is-available {
    color: #21201D;
    cursor: pointer;
    border-bottom: 2px solid #f2b545;
}
.hhb-cal-cell.is-available:hover {
    background: #f2b5451c;
}
.hhb-cal-cell.is-disabled {
    color: #D5D3CF;
    text-decoration: line-through;
}
.hhb-cal-cell.is-selected {
    background: #f2b545;
    color: #000 !important;
    border-bottom-color: #f2b545;
}
.hhb-timecol {
    flex: 1 1 240px;
    min-width: 220px;
}
.hhb-time-label {
    text-align: center;
    color: #262b14;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E7E5E1;
}
.hhb-time-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.hhb-time-slot {
    padding: 12px 6px;
    border-radius: 6px;
    border: 1px solid #E7E5E1;
    background: #fff;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    color: #21201D;
    font-family: var(--e-global-typography-primary-font-family);
}
.hhb-time-slot:hover:not(.is-disabled) {
    border-color: #f2b545;
}
.hhb-time-slot.is-selected {
    background: #f2b545;
    border-color: #f2b545;
    color: #000;
}
.hhb-time-slot.is-disabled {
    color: #C7C5C1;
    text-decoration: line-through;
    cursor: not-allowed;
    background: #F5F5F5;
}

/* Step 3: information */

.hhb-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
}
.hhb-info-grid p { margin: 0; }
.hhb-info-grid label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}
.hhb-req { color: var(--hhb-red); }
.hhb-info-grid input {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid var(--hhb-border);
    border-radius: 6px;
    font-size: 14.5px;
    font-family: inherit;
    outline: none;
}
.hhb-info-grid input:focus {
    border-color: #f2b545;
    box-shadow: 0 0 0 3px rgba(108, 99, 224, 0.15);
}

/* Step 4: cart */

.hhb-cart-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}
.hhb-cart-card {
    border: 1px solid #F2B545;
    border-radius: 6px;
    padding: 16px 18px;
    max-width: 420px;
    background: #fff;
}
.hhb-cart-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.hhb-cart-card-head strong {
    font-size: 16px;
}
.hhb-cart-remove {
    border: none;
    background: none;
    font-size: 20px;
    line-height: 1;
    color: var(--hhb-text-muted);
    cursor: pointer;
    padding: 0 4px;
}
.hhb-cart-remove:hover {
    color: #F2B545;
}
.hhb-cart-card-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    color: var(--hhb-text-muted);
    padding: 4px 0;
}
.hhb-cart-card-row .hhb-amount {
    color: #F2B545;
    font-weight: 600;
}
.hhb-add-booking {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f2b54536;
    color: #262b14;
    border: none;
    border-radius: 04px;
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--e-global-typography-primary-font-family);
}
.hhb-add-booking:hover {
    background: #f2b54559;
}

/* Step 5: confirm */

.hhb-confirm-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
}
.hhb-confirm-card {
    border: 1px solid var(--hhb-border);
    border-radius: 8px;
    padding: 20px;
    background: #fff;
}
.hhb-confirm-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14.5px;
    border-bottom: 1px dashed var(--hhb-border-soft);
}
.hhb-confirm-discount {
    color: #F2B545;
}
.hhb-confirm-total {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    padding: 12px 14px;
    background: #262b1414;
    border-radius: 6px;
    font-weight: 700;
    color: #262b14;
}
.hhb-confirm-payment {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hhb-payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 22px 10px;
    border: 1px solid #f2b545;
    border-radius: 6px;
    color: #000;
    font-weight: 600;
}
.hhb-confirm-deposit {
    display: flex;
    justify-content: space-between;
    padding: 12px 14px;
    background: #f2b54529;
    color: #000;
    border-radius: 6px;
    font-weight: 700;
}
.hhb-panel.is-visible .hhb-confirm-remaining {
    display: none;
}
.hhb-confirm-remaining {
    display: flex;
    justify-content: space-between;
    padding: 10px 14px;
    background: #26262614;
    color: #262626;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
}

/* Thank you (deposit) */

.hhb-deposit-thankyou {
    margin: 20px 0;
    padding: 18px 20px;
    background: #f2b54529;
    border: 1px solid #f2b545;
    border-radius: 8px;
    color: #262626;
}
.hhb-deposit-thankyou p {
    margin: 0 0 8px;
}
.hhb-deposit-thankyou p:last-child {
    margin-bottom: 0;
}

/* Book Now */

.hhb-book-now-btn {
    display: inline-block;
    padding: 10px 22px;
    background: var(--hhb-purple, #6C63E0);
    color: #fff !important;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}
.hhb-book-now-btn:hover {
    background: var(--hhb-purple-dark, #5148C9);
}

/* responsive */

@media (max-width: 820px) {
    .hhb-wizard { flex-direction: column; }
    .hhb-sidebar {
        width: 100%;
        flex-direction: row;
        align-items: center;
        padding: 14px 16px;
        overflow-x: auto;
    }
    .hhb-logo { display: none; }
    .hhb-steps {
        display: flex;
        gap: 18px;
        flex: none;
    }
    .hhb-step span:last-child { display: none; }
    .hhb-sidebar-footer { display: none; }
    .hhb-confirm-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .hhb-content-header, .hhb-panel-body, .hhb-nav { padding-left: 16px; padding-right: 16px; }
    .hhb-msg { margin-left: 16px; margin-right: 16px; }
    .hhb-info-grid { grid-template-columns: 1fr; }
    .hhb-datetime { flex-direction: column; }
    .hhb-time-grid { grid-template-columns: repeat(3, 1fr); }
    .hhb-btn { padding: 0 18px; }
}