/* ==========================================================================
   Hibachi Booking — Public Frontend Stylesheet
   Matches Screenshots 1, 2, 3, 4, 5
   ========================================================================== */

:root {
    --hb-primary: #B71C1C;
    --hb-primary-dark: #8E1616;
    --hb-primary-light: #FFEBEE;
    --hb-navy: #1A1A2E;
    --hb-dark: #1E293B;
    --hb-gray-bg: #F8FAFC;
    --hb-gray-border: #E2E8F0;
    --hb-gray-muted: #64748B;
    --hb-gray-light: #F1F5F9;
    --hb-text: #0F172A;
    --hb-success: #10B981;
    --hb-radius: 12px;
    --hb-radius-sm: 8px;
    --hb-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
    --hb-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hibachi-widget {
    font-family: var(--hb-font);
    color: var(--hb-text);
    box-sizing: border-box;
    line-height: 1.5;
    max-width: 960px;
    margin: 0 auto;
    padding: 24px 16px;
}

.hibachi-widget *,
.hibachi-widget *::before,
.hibachi-widget *::after {
    box-sizing: inherit;
    font-family: inherit;
}

/* ─── Common Buttons ─────────────────────────────────────────────── */

.hibachi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--hb-primary);
    color: #FFFFFF !important;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--hb-radius-sm);
    cursor: pointer;
    text-decoration: none !important;
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.25);
}

.hibachi-btn:hover {
    background: var(--hb-primary-dark);
    box-shadow: 0 6px 16px rgba(229, 57, 53, 0.35);
}

.hibachi-btn:active {
    transform: scale(0.98);
}

.hibachi-btn:disabled {
    background: #CBD5E1;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.hibachi-card {
    background: #FFFFFF;
    border: 1px solid var(--hb-gray-border);
    border-radius: var(--hb-radius);
    box-shadow: var(--hb-shadow);
    overflow: hidden;
}

/* ─── Screenshot 1: Interactive US Map ────────────────────────────── */

.hibachi-map-container {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.hibachi-map-heading {
    font-size: 28px;
    font-weight: 800;
    color: var(--hb-text);
    margin: 0 0 24px 0;
    letter-spacing: -0.5px;
}

.hibachi-map-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid var(--hb-gray-border);
    border-radius: var(--hb-radius);
    padding: 24px;
    box-shadow: var(--hb-shadow);
    margin-bottom: 24px;
}

.hibachi-svg-wrapper {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hibachi-map-svg {
    width: 100%;
    height: auto;
    max-height: 520px;
    display: block;
}

/* Map state fills */
.hb-state {
    fill: #E2E8F0;
    stroke: #FFFFFF;
    stroke-width: 1.2px;
    transition: fill 0.2s ease, filter 0.2s ease;
    cursor: default;
}

.hb-state[data-status="available"] {
    fill: #B71C1C !important;
    cursor: pointer;
}

.hb-state[data-status="available"]:hover {
    fill: #8E1616 !important;
    filter: brightness(0.92);
}

.hb-state.selected,
.hb-state[data-status="available"].selected {
    fill: #B71C1C !important;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}

.hb-state[data-status="coming_soon"] {
    fill: #1A1A2E !important;
    cursor: default;
}

.hb-state[data-status="unavailable"] {
    fill: #E2E8F0;
}

/* Floating Tooltip */
.hibachi-map-tooltip {
    position: absolute;
    transform: translate(-50%, -100%);
    background: #FFFFFF;
    border-radius: var(--hb-radius-sm);
    padding: 10px 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    pointer-events: none;
    z-index: 100;
    text-align: center;
    white-space: nowrap;
    border: 1px solid var(--hb-gray-border);
}

.hibachi-map-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: #FFFFFF transparent;
    display: block;
    width: 0;
}

.hb-tt-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--hb-text);
    margin-bottom: 2px;
}

.hb-tt-action {
    display: block;
    font-size: 12px;
    font-weight: 600;
}

.hb-tt-available {
    color: #B71C1C !important;
}

.hb-tt-coming {
    color: #1A1A2E !important;
}

.hb-tt-unavailable {
    color: var(--hb-gray-muted);
}

/* Legend & State Chips */
.hibachi-legend-chips {
    background: #FFFFFF;
    border: 1px solid var(--hb-gray-border);
    border-radius: var(--hb-radius);
    padding: 20px;
    box-shadow: var(--hb-shadow);
    margin-bottom: 24px;
    text-align: left;
}

.hb-legend-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.hb-legend-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--hb-text);
    min-width: 110px;
    padding-top: 4px;
}

.hb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.hb-dot-available {
    background: #B71C1C !important;
}

.hb-dot-coming {
    background: #1A1A2E !important;
}

.hb-chips-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex: 1;
}

.hb-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #B71C1C;
    background: #FFFFFF;
    border: 1px solid rgba(183, 28, 28, 0.4);
    border-radius: 6px;
    padding: 4px 8px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.hb-chip:hover,
.hb-chip.active {
    background: #B71C1C !important;
    color: #FFFFFF !important;
    border-color: #B71C1C !important;
}

.hb-chip-coming {
    color: #1A1A2E !important;
    background: #F8FAFC !important;
    border: 1px solid rgba(26, 26, 46, 0.45) !important;
    cursor: default;
}

.hb-chip-coming:hover {
    background: #1A1A2E !important;
    color: #FFFFFF !important;
}

.hb-chip-toggle {
    background: transparent;
    border: none;
    color: var(--hb-text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    text-decoration: underline;
}

.hibachi-map-cta-box {
    margin: 28px 0 10px;
}

.hibachi-map-cta-btn {
    font-size: 17px;
    padding: 16px 36px;
    border-radius: var(--hb-radius-sm);
}

.hibachi-cta-subtext {
    font-size: 13px;
    color: var(--hb-gray-muted);
    margin-top: 8px;
}

/* ─── Wizard Wrapper & Header (Screenshots 2, 3, 4, 5) ───────────── */

.hibachi-wizard-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.hibachi-brand-header {
    text-align: center;
    margin-bottom: 24px;
}

.hb-brand-logo {
    max-height: 48px;
    margin-bottom: 12px;
}

.hibachi-main-heading {
    font-size: 38px;
    font-weight: 800;
    color: var(--hb-primary);
    margin: 0;
    letter-spacing: -0.5px;
}

.hibachi-wizard-card {
    border-radius: var(--hb-radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Solid Red Stepper Banner */
.hibachi-stepper-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hb-primary);
    padding: 18px 24px;
    gap: 12px;
}

.hb-step-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
}

.hb-step-item.active {
    color: #FFFFFF;
}

.hb-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
}

.hb-step-item.active .hb-step-num {
    background: #FFFFFF;
    color: var(--hb-primary);
    border-color: #FFFFFF;
}

.hb-step-item.completed .hb-step-num {
    background: rgba(255, 255, 255, 0.2);
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.hb-step-line {
    width: 32px;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
}

/* ─── Step 1: Calendar & Time Slots (Screenshots 2 & 3) ──────────── */

.hibachi-calendar-widget {
    padding: 28px;
}

.hb-cal-header-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.hb-cal-title-icon {
    font-size: 20px;
}

.hb-cal-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--hb-text);
}

.hb-cal-box {
    border: 1px solid var(--hb-gray-border);
    border-radius: var(--hb-radius);
    padding: 20px;
    background: #FFFFFF;
}

.hb-cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.hb-cal-nav-btn {
    background: transparent;
    border: none;
    font-size: 22px;
    font-weight: 700;
    color: var(--hb-text);
    cursor: pointer;
    padding: 4px 12px;
    border-radius: 6px;
    transition: background 0.15s ease;
}

.hb-cal-nav-btn:hover {
    background: var(--hb-gray-light);
}

.hb-cal-month-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--hb-text);
}

.hb-cal-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--hb-gray-muted);
    margin-bottom: 12px;
}

.hb-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.hb-cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: var(--hb-radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--hb-text);
    cursor: pointer;
    transition: all 0.15s ease;
}

.hb-cal-day.available:hover {
    background: var(--hb-primary-light);
    color: var(--hb-primary);
}

.hb-cal-day.selected {
    background: var(--hb-primary) !important;
    color: #FFFFFF !important;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(229, 57, 53, 0.3);
}

.hb-cal-day.disabled {
    color: #CBD5E1;
    cursor: not-allowed;
}

.hb-cal-day-muted {
    color: #CBD5E1;
    background: #F8FAFC;
    cursor: not-allowed;
}

.hb-cal-loading {
    grid-column: span 7;
    padding: 40px;
    color: var(--hb-gray-muted);
    font-size: 14px;
}

/* Time Slot Picker Grid */
.hb-timeslot-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--hb-gray-border);
    animation: fadeIn 0.3s ease-in-out;
}

.hb-ts-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--hb-text);
    margin-bottom: 16px;
}

.hb-ts-icon {
    color: var(--hb-primary);
}

.hb-ts-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

@media (max-width: 600px) {
    .hb-ts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hb-ts-btn {
    background: #FFFFFF;
    border: 1px solid var(--hb-gray-border);
    border-radius: var(--hb-radius-sm);
    padding: 12px 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hb-text);
    cursor: pointer;
    text-align: center;
    transition: all 0.15s ease;
}

.hb-ts-btn:hover {
    border-color: var(--hb-primary);
    color: var(--hb-primary);
    background: var(--hb-primary-light);
}

.hb-ts-btn.selected {
    background: var(--hb-primary);
    color: #FFFFFF;
    border-color: var(--hb-primary);
}

/* ─── Step 2: Guest Information (Screenshot 4) ───────────────────── */

.hb-step2-subnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.hb-back-link {
    background: transparent;
    border: none;
    color: var(--hb-gray-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.hb-back-link:hover {
    color: var(--hb-primary);
}

.hb-selected-pill {
    font-size: 13px;
    color: var(--hb-text);
    text-align: right;
}

.hb-sel-label {
    color: var(--hb-gray-muted);
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
}

.hb-guest-form {
    padding: 20px 28px 28px;
}

.hb-form-section {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--hb-gray-light);
}

.hb-sec-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.hb-sec-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--hb-text);
    margin-bottom: 14px;
}

.hb-sec-icon {
    font-size: 16px;
}

.hb-tbd-toggle-btn {
    background: #FFFFFF;
    border: 1px solid var(--hb-gray-border);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--hb-gray-muted);
    cursor: pointer;
    transition: all 0.15s ease;
}

.hb-tbd-toggle-btn:hover,
.hb-tbd-toggle-btn.active {
    background: var(--hb-primary-light);
    color: var(--hb-primary);
    border-color: var(--hb-primary);
}

.hb-form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hb-form-grid-3 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 14px;
}

@media (max-width: 540px) {
    .hb-form-grid-2,
    .hb-form-grid-3 {
        grid-template-columns: 1fr;
    }
}

.hb-input-group label,
.hb-sub-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--hb-text);
    margin-bottom: 6px;
}

.hibachi-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--hb-gray-border);
    border-radius: var(--hb-radius-sm);
    font-size: 14px;
    color: var(--hb-text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hibachi-input:focus {
    border-color: var(--hb-primary);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.12);
}

.hibachi-input::placeholder {
    color: #94A3B8;
}

.hb-textarea {
    resize: vertical;
}

.hb-tbd-notice {
    background: var(--hb-gray-light);
    border: 1px solid var(--hb-gray-border);
    border-radius: var(--hb-radius-sm);
    padding: 12px 16px;
    font-size: 13px;
    color: var(--hb-gray-muted);
}

/* Stepper Control [-] [1 adults] [+] */
.hb-stepper-control {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--hb-gray-border);
    border-radius: var(--hb-radius-sm);
    overflow: hidden;
    height: 44px;
}

.hb-step-btn {
    width: 44px;
    height: 100%;
    background: #FFFFFF;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--hb-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}

.hb-step-btn:hover {
    background: var(--hb-primary-light);
}

.hb-step-val {
    flex: 1;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--hb-text);
    border-left: 1px solid var(--hb-gray-border);
    border-right: 1px solid var(--hb-gray-border);
    padding: 0 8px;
    line-height: 42px;
}

/* Occasion Pills */
.hb-occasion-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hb-occ-pill {
    background: #FFFFFF;
    border: 1.5px solid var(--hb-gray-border);
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hb-text);
    cursor: pointer;
    transition: all 0.15s ease;
}

.hb-occ-pill:hover {
    border-color: var(--hb-primary);
}

.hb-occ-pill.active {
    background: var(--hb-primary-light);
    border-color: var(--hb-primary);
    color: var(--hb-primary);
}

/* Terms Box */
.hb-terms-box {
    background: #FAFAFA;
    border: 1px solid var(--hb-gray-border);
    border-radius: var(--hb-radius-sm);
    padding: 16px;
    margin-bottom: 24px;
}

.hb-terms-header {
    font-size: 13px;
    font-weight: 700;
    color: var(--hb-text);
    margin-bottom: 8px;
}

.hb-terms-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
    font-size: 12px;
    color: var(--hb-primary);
    line-height: 1.6;
}

.hb-terms-check-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--hb-text);
    cursor: pointer;
}

.hb-terms-check-row a {
    color: var(--hb-primary);
    text-decoration: underline;
}

.hb-complete-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

/* ─── Step 3: Confirmation (Screenshot 5) ────────────────────────── */

.hb-step3-toplink {
    padding: 18px 28px 0;
}

.hb-success-card {
    text-align: center;
    padding: 24px 28px;
}

.hb-success-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #D1FAE5;
    color: #059669;
    font-size: 30px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.hb-success-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--hb-text);
    margin: 0 0 8px;
}

.hb-success-desc {
    font-size: 14px;
    color: var(--hb-gray-muted);
    max-width: 480px;
    margin: 0 auto 24px;
    line-height: 1.5;
}

.hb-confirmation-details-box {
    background: #F8FAFC;
    border: 1px solid var(--hb-gray-border);
    border-radius: var(--hb-radius-sm);
    padding: 16px 20px;
    text-align: left;
    margin-bottom: 24px;
    font-size: 14px;
}

.hb-cd-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.hb-cd-row:last-child {
    margin-bottom: 0;
}

.hb-cd-label {
    color: var(--hb-gray-muted);
}

.hb-cd-val {
    color: var(--hb-text);
    text-align: right;
}

.hb-cd-ref {
    font-family: monospace;
    font-weight: 700;
    color: var(--hb-primary);
}

.hb-success-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hb-outline-btn {
    background: #FFFFFF;
    border: 1.5px solid var(--hb-primary);
    color: var(--hb-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.hb-outline-btn:hover {
    background: var(--hb-primary);
    color: #FFFFFF;
}

/* What's Next Card */
.hb-whats-next-card {
    border-top: 1px solid var(--hb-gray-border);
    padding: 28px;
    background: #FFFFFF;
    text-align: left;
}

.hb-wn-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--hb-text);
    margin: 0 0 20px;
}

.hb-wn-step {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.hb-wn-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #FFF1F2;
    color: var(--hb-primary);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hb-wn-body {
    flex: 1;
}

.hb-wn-body strong {
    font-size: 14px;
    color: var(--hb-text);
    display: block;
    margin-bottom: 2px;
}

.hb-wn-body p {
    font-size: 13px;
    color: var(--hb-gray-muted);
    margin: 0 0 10px;
    line-height: 1.4;
}

.hb-select-menu-btn {
    padding: 8px 18px;
    font-size: 13px;
}

.hb-wn-footer {
    border-top: 1px solid var(--hb-gray-border);
    padding-top: 18px;
    margin-top: 24px;
    font-size: 13px;
    color: var(--hb-gray-muted);
}

.hb-wn-footer a {
    color: var(--hb-primary);
    text-decoration: underline;
    font-weight: 600;
}

/* ─── Menu Builder Component Styles ──────────────────────────────── */

.hibachi-menu-builder-card {
    padding: 28px;
}

.hb-mb-header {
    border-bottom: 1px solid var(--hb-gray-border);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.hb-protein-allowance-badge {
    display: inline-block;
    background: var(--hb-primary-light);
    color: var(--hb-primary-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-top: 8px;
}

.hb-menu-section {
    margin-bottom: 24px;
}

.hb-menu-section h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--hb-text);
}

.hb-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}

.hb-item-card {
    border: 1px solid var(--hb-gray-border);
    border-radius: var(--hb-radius-sm);
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
}

.hb-item-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--hb-text);
}

.hb-item-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--hb-primary);
}

.hb-item-desc {
    font-size: 11px;
    color: var(--hb-gray-muted);
    margin: 2px 0 0;
}

.hb-item-stepper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hb-item-stepper button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--hb-gray-border);
    background: #FFFFFF;
    cursor: pointer;
    font-weight: 700;
}

.hb-item-stepper button:hover {
    background: var(--hb-primary-light);
    color: var(--hb-primary);
}

.hb-item-qty {
    font-size: 14px;
    font-weight: 700;
    min-width: 18px;
    text-align: center;
}

.hb-menu-summary-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid var(--hb-gray-border);
    padding-top: 18px;
    margin-top: 24px;
}

.hb-ms-line strong {
    font-size: 20px;
    color: var(--hb-primary);
}

/* ─── Utilities & Animation ───────────────────────────────────────── */

.hb-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #E2E8F0;
    border-top-color: var(--hb-primary);
    border-radius: 50%;
    animation: hbSpin 0.8s linear infinite;
    margin: 0 auto 10px;
}

@keyframes hbSpin {
    to { transform: rotate(360deg); }
}

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