/* Booking Wizard Styles - Scoped */
.booking-embed {
    --pb-surface: #1a1a2e;
    --pb-surface-light: #25253d;
    --pb-border: #3a3a5c;
    --pb-primary: #1d31d2;
    --pb-primary-light: #3d4fe6;
    --pb-text: #e2e8f0;
    --pb-text-muted: #94a3b8;
    --pb-success: #22c55e;
    --pb-warning: #f59e0b;
    max-width: 900px;
    margin: 0 auto;
}

.booking-embed * {
    box-sizing: border-box;
}

/* Wizard Stepper */
.booking-embed .wizard-stepper {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    position: relative;
}

.booking-embed .wizard-stepper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 2px;
    background: var(--pb-border);
    z-index: 0;
}

.booking-embed .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
    cursor: pointer;
}

.booking-embed .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pb-surface);
    border: 2px solid var(--pb-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--pb-text-muted);
    transition: all 0.3s ease;
}

.booking-embed .step-item.active .step-number {
    background: var(--pb-primary);
    border-color: var(--pb-primary);
    color: #fff;
}

.booking-embed .step-item.completed .step-number {
    background: var(--pb-success);
    border-color: var(--pb-success);
    color: #fff;
}

.booking-embed .step-label {
    font-size: 0.75rem;
    color: var(--pb-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.booking-embed .step-item.active .step-label {
    color: var(--pb-primary-light);
}

/* Step Content */
.booking-embed .step-content {
    display: none;
}

.booking-embed .step-content.active {
    display: block;
    animation: bookingFadeIn 0.3s ease;
}

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

/* Main Grid Layout */
.booking-embed .booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.booking-embed .booking-grid-60-40 {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 1.5rem;
}

/* Calendar */
.booking-embed .calendar-wrapper {
    background: var(--pb-surface);
    border: 1px solid var(--pb-border);
    border-radius: 12px;
    padding: 1.25rem;
}

.booking-embed .calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.booking-embed .calendar-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pb-text);
}

.booking-embed .calendar-nav {
    display: flex;
    gap: 0.4rem;
}

.booking-embed .calendar-nav-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--pb-surface-light);
    border: 1px solid var(--pb-border);
    color: var(--pb-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.booking-embed .calendar-nav-btn:hover {
    background: var(--pb-primary);
    border-color: var(--pb-primary);
    color: white;
}

.booking-embed .calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 0.25rem;
}

.booking-embed .calendar-weekday {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--pb-text-muted);
    text-transform: uppercase;
    padding: 0.35rem 0;
}

.booking-embed .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.booking-embed .calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.15s ease;
    background: transparent;
    color: var(--pb-text);
    border: 1px solid transparent;
}

.booking-embed .calendar-day:hover:not(.disabled):not(.other-month) {
    background: var(--pb-surface-light);
    border-color: var(--pb-border);
}

.booking-embed .calendar-day.today {
    border-color: var(--pb-primary);
    color: var(--pb-primary-light);
}

.booking-embed .calendar-day.same-day {
    border-color: var(--pb-warning);
    color: var(--pb-warning);
    cursor: pointer;
}

.booking-embed .calendar-day.same-day:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--pb-warning);
}

.booking-embed .calendar-day.selected {
    background: var(--pb-primary);
    color: white;
    font-weight: 600;
}

.booking-embed .calendar-day.disabled {
    color: var(--pb-text-muted);
    opacity: 0.4;
    cursor: not-allowed;
}

.booking-embed .calendar-day.other-month {
    color: var(--pb-text-muted);
    opacity: 0.3;
    cursor: default;
}

/* Time Panel */
.booking-embed .time-panel {
    background: var(--pb-surface);
    border: 1px solid var(--pb-border);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}

.booking-embed .time-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.booking-embed .time-panel-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pb-text);
}

.booking-embed .selected-date-badge {
    background: var(--pb-surface-light);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--pb-text-muted);
    border: 1px solid var(--pb-border);
}

.booking-embed .selected-date-badge.has-date {
    background: rgba(29, 49, 210, 0.15);
    border-color: var(--pb-primary);
    color: var(--pb-primary-light);
}

/* Hours Selector */
.booking-embed .hours-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--pb-surface-light);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.booking-embed .hours-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.booking-embed .hours-label {
    font-size: 0.8rem;
    color: var(--pb-text-muted);
}

.booking-embed .hours-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pb-primary-light);
}

.booking-embed .hours-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-embed .hours-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--pb-surface);
    border: 1px solid var(--pb-border);
    color: var(--pb-text);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-embed .hours-btn:hover {
    background: var(--pb-primary);
    border-color: var(--pb-primary);
    color: white;
}

.booking-embed .hours-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--pb-text);
    min-width: 2rem;
    text-align: center;
}

.booking-embed .hours-suffix {
    font-size: 0.85rem;
    color: var(--pb-text-muted);
}

.booking-embed .price-note {
    font-size: 0.75rem;
    color: var(--pb-text-muted);
    margin-bottom: 1rem;
    text-align: center;
}

/* Time Slots */
.booking-embed .time-slots-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pb-text);
    margin-bottom: 0.5rem;
}

.booking-embed .time-slots-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.booking-embed .time-slot {
    padding: 0.5rem 0.25rem;
    text-align: center;
    border-radius: 6px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.15s ease;
    background: var(--pb-surface-light);
    color: var(--pb-text);
    border: 1px solid var(--pb-border);
}

.booking-embed .time-slot:hover:not(.disabled) {
    border-color: var(--pb-primary);
}

.booking-embed .time-slot.selected {
    background: var(--pb-primary);
    border-color: var(--pb-primary);
    color: white;
    font-weight: 600;
}

.booking-embed .time-slot.in-range {
    background: rgba(29, 49, 210, 0.25);
    border-color: var(--pb-primary);
    color: var(--pb-text);
}

.booking-embed .time-slot.disabled {
    background: var(--pb-surface);
    color: var(--pb-text-muted);
    opacity: 0.4;
    cursor: not-allowed;
}

.booking-embed .time-slot.booked {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
    text-decoration: line-through;
    opacity: 0.7;
    cursor: not-allowed;
}

.booking-embed .time-slot.night-hour {
    background: rgba(29, 49, 210, 0.08);
}

.booking-embed .night-note {
    font-size: 0.7rem;
    color: var(--pb-text-muted);
    text-align: center;
    padding: 0.5rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 6px;
    margin-top: 0.5rem;
}

/* Session Preview */
.booking-embed .session-preview {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(29, 49, 210, 0.12);
    border: 1px solid var(--pb-primary);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
}

.booking-embed .preview-icon {
    font-size: 1.25rem;
}

.booking-embed .preview-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.booking-embed .preview-range {
    font-weight: 600;
    color: var(--pb-text);
    font-size: 0.9rem;
}

.booking-embed .preview-duration {
    font-size: 0.75rem;
    color: var(--pb-text-muted);
}

.booking-embed .preview-price {
    font-weight: 600;
    color: var(--pb-primary-light);
    font-size: 1rem;
}

/* Same Day Warning Panel (replaces time selector) */
.booking-embed .same-day-warning-panel {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem;
    height: 100%;
    min-height: 300px;
}

.booking-embed .same-day-warning-panel.show {
    display: flex;
}

.booking-embed .same-day-warning-panel .same-day-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.booking-embed .same-day-warning-panel h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pb-text);
    margin: 0 0 0.75rem 0;
}

.booking-embed .same-day-warning-panel p {
    font-size: 0.9rem;
    color: var(--pb-text-muted);
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.booking-embed .same-day-warning-panel a.whatsapp-btn,
.booking-embed .same-day-warning-panel a.whatsapp-btn:link,
.booking-embed .same-day-warning-panel a.whatsapp-btn:visited {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
}

.booking-embed .same-day-warning-panel a.whatsapp-btn:hover,
.booking-embed .same-day-warning-panel a.whatsapp-btn:focus {
    background: #128C7E;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Producer Cards */
.booking-embed .producer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.booking-embed .producer-card {
    background: var(--pb-surface);
    border: 2px solid var(--pb-border);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.booking-embed .producer-card:hover {
    border-color: var(--pb-primary);
    transform: translateY(-2px);
}

.booking-embed .producer-card.selected {
    border-color: var(--pb-primary);
    background: rgba(29, 49, 210, 0.1);
}

.booking-embed .producer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--pb-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    overflow: hidden;
}

.booking-embed .producer-avatar.no-producer {
    background: var(--pb-surface-light);
    border: 2px dashed var(--pb-border);
}

.booking-embed .producer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-embed .producer-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pb-text);
    margin-bottom: 0.25rem;
}

.booking-embed .producer-role {
    font-size: 0.8rem;
    color: var(--pb-text-muted);
    margin-bottom: 0.5rem;
}

.booking-embed .producer-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--pb-primary-light);
}

.booking-embed .producer-price span {
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--pb-text-muted);
}

/* Step 3 Panels */
.booking-embed .step3-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-embed .step3-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Extras */
.booking-embed .extras-panel {
    background: var(--pb-surface);
    border: 1px solid var(--pb-border);
    border-radius: 12px;
    padding: 1.25rem;
}

.booking-embed .panel-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--pb-text);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--pb-border);
}

.booking-embed .extras-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.booking-embed .extra-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--pb-surface-light);
    border: 1px solid var(--pb-border);
    border-radius: 10px;
    padding: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.booking-embed .extra-item:hover {
    border-color: var(--pb-primary);
}

.booking-embed .extra-item.selected {
    border-color: var(--pb-primary);
    background: rgba(29, 49, 210, 0.1);
}

.booking-embed .extra-check {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid var(--pb-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: transparent;
    transition: all 0.2s;
    flex-shrink: 0;
}

.booking-embed .extra-item.selected .extra-check {
    background: var(--pb-primary);
    border-color: var(--pb-primary);
    color: white;
}

.booking-embed .extra-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--pb-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.booking-embed .extra-icon.mixing { background: #0ea5e9; }
.booking-embed .extra-icon.mastering { background: #f59e0b; }
.booking-embed .extra-icon.production { background: #22c55e; }
.booking-embed .extra-icon.instrumental { background: #a855f7; }

.booking-embed .coupon-input::placeholder {
    color: var(--pb-text-muted);
}

.booking-embed .extra-item.no-price {
    opacity: 0.7;
}

.booking-embed .extra-item.no-price .extra-price {
    font-style: italic;
}

.booking-embed .extra-item.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.booking-embed .extra-item.disabled .extra-check {
    opacity: 0.3;
}

.booking-embed .extra-info {
    flex: 1;
    min-width: 0;
}

.booking-embed .extra-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pb-text);
}

.booking-embed .extra-desc {
    font-size: 0.75rem;
    color: var(--pb-text-muted);
}

.booking-embed .extra-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pb-primary-light);
    white-space: nowrap;
}

/* Summary Card */
.booking-embed .summary-card {
    background: var(--pb-surface);
    border: 1px solid var(--pb-border);
    border-radius: 12px;
    padding: 1.25rem;
}

.booking-embed .summary-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--pb-text);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--pb-border);
}

.booking-embed .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.8rem;
}

.booking-embed .summary-row.summary-total {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--pb-border);
}

.booking-embed .summary-row.summary-total .summary-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pb-primary-light);
}

.booking-embed .summary-label {
    color: var(--pb-text-muted);
}

.booking-embed .summary-value {
    color: var(--pb-text);
    font-weight: 500;
}

/* Project Input */
.booking-embed .form-panel {
    background: var(--pb-surface);
    border: 1px solid var(--pb-border);
    border-radius: 12px;
    padding: 1.25rem;
}

.booking-embed .form-group {
    margin-bottom: 0.85rem;
}

.booking-embed .form-group:last-child {
    margin-bottom: 0;
}

.booking-embed .form-label {
    display: block;
    color: var(--pb-text);
    font-weight: 500;
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
}

.booking-embed .form-input {
    background: var(--pb-surface-light);
    border: 1px solid var(--pb-border);
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    color: var(--pb-text);
    font-size: 0.85rem;
    width: 100%;
    transition: all 0.2s;
}

.booking-embed .form-input:focus {
    outline: none;
    border-color: var(--pb-primary);
}

.booking-embed .form-input::placeholder {
    color: var(--pb-text-muted);
}

/* Coupon Section */
.booking-embed .coupon-section {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--pb-border);
}

.booking-embed .coupon-input-wrapper {
    display: flex;
    gap: 0.5rem;
}

.booking-embed .coupon-input {
    flex: 1;
    background: var(--pb-surface-light);
    border: 1px solid var(--pb-border);
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    color: var(--pb-text);
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.2s;
}

.booking-embed .coupon-input:hover {
    border-color: var(--pb-primary);
    background: var(--pb-surface-light);
    color: var(--pb-text);
}

.booking-embed .coupon-input:focus {
    outline: none;
    border-color: var(--pb-primary);
    box-shadow: 0 0 0 2px rgba(29, 49, 210, 0.2);
}

.booking-embed .coupon-input.valid {
    border-color: var(--pb-success);
}

.booking-embed .coupon-input.invalid {
    border-color: #ef4444;
}

.booking-embed .coupon-apply-btn {
    background: var(--pb-primary);
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.booking-embed .coupon-apply-btn:hover:not(:disabled) {
    background: #2940e8;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(29, 49, 210, 0.4);
}

.booking-embed .coupon-apply-btn:disabled {
    background: var(--pb-border);
    cursor: not-allowed;
}

.booking-embed .coupon-message {
    margin-top: 0.4rem;
    font-size: 0.75rem;
    min-height: 1rem;
}

.booking-embed .coupon-message.success {
    color: var(--pb-success);
}

.booking-embed .coupon-message.error {
    color: #ef4444;
}

.booking-embed .summary-row.summary-discount {
    background: rgba(34, 197, 94, 0.1);
    margin: 0.3rem -0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

.booking-embed .summary-row.summary-discount .summary-value {
    color: var(--pb-success);
    font-weight: 600;
}

/* Auth Prompt */
.booking-embed .auth-prompt {
    background: linear-gradient(135deg, rgba(29, 49, 210, 0.15) 0%, rgba(61, 79, 230, 0.1) 100%);
    border: 1px solid var(--pb-primary);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
}

.booking-embed .auth-prompt-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.booking-embed .auth-prompt h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pb-text);
    margin-bottom: 0.35rem;
}

.booking-embed .auth-prompt p {
    color: var(--pb-text-muted);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.booking-embed .auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.booking-embed .btn-auth {
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    width: 100%;
}

.booking-embed .btn-auth-login {
    background: var(--pb-surface-light);
    border: 1px solid var(--pb-border);
    color: var(--pb-text);
}

.booking-embed .btn-auth-login:hover {
    border-color: var(--pb-primary);
    background: var(--pb-surface);
}

.booking-embed .btn-auth-register {
    background: var(--pb-primary);
    color: white;
}

.booking-embed .btn-auth-register:hover {
    background: var(--pb-primary-light);
}

/* Buttons */
.booking-embed .wizard-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--pb-border);
}

.booking-embed .btn-wizard {
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: none;
}

.booking-embed .btn-wizard-secondary {
    background: var(--pb-surface-light);
    border: 1px solid var(--pb-border);
    color: var(--pb-text);
}

.booking-embed .btn-wizard-secondary:hover {
    border-color: var(--pb-primary);
}

.booking-embed .btn-wizard-primary {
    background: var(--pb-primary);
    color: white;
}

.booking-embed .btn-wizard-primary:hover:not(:disabled) {
    background: var(--pb-primary-light);
}

.booking-embed .btn-wizard-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Section Titles */
.booking-embed .section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--pb-text);
    margin-bottom: 0.25rem;
    text-align: center;
}

.booking-embed .section-subtitle {
    color: var(--pb-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-embed .booking-grid,
    .booking-embed .booking-grid-60-40 {
        grid-template-columns: 1fr;
    }
    .booking-embed .wizard-stepper::before { display: none; }
    .booking-embed .step-item { padding: 0 0.75rem; }
    .booking-embed .step-number {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    .booking-embed .step-label { font-size: 0.7rem; }
    .booking-embed .time-slots-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .booking-embed .producer-grid {
        grid-template-columns: 1fr;
    }
    .booking-embed .wizard-buttons {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }
    .booking-embed .btn-wizard {
        width: 100%;
        justify-content: center;
    }
}
