.bbd-booking-wrap {
    --bbd-gold: #DE9E35;
    --bbd-gold-dark: #B8781F;
    --bbd-gold-soft: #FFF7EA;
    --bbd-dark: #111111;
    --bbd-ink: #151515;
    --bbd-muted: #6F6F6F;
    --bbd-border: #D9D9D9;
    --bbd-border-soft: #ECECEC;
    --bbd-bg: #FFFFFF;
    max-width: 700px;
    margin: 70px auto;
    padding: 0 18px;
    font-family: inherit;
    color: var(--bbd-ink);
}

.bbd-booking-wrap,
.bbd-booking-wrap * {
    box-sizing: border-box;
}

.bbd-booking-card {
    background: var(--bbd-bg);
    border: 1px solid var(--bbd-border);
    border-radius: 0;
    padding: 34px 34px 30px;
    box-shadow: none !important;
}

.bbd-booking-head {
    margin-bottom: 30px;
}

.bbd-booking-head h2,
.bbd-booking-card h2 {
    margin: 0 0 14px;
    font-size: 31px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--bbd-gold);
    letter-spacing: 0;
}

.bbd-booking-head p {
    margin: 0;
    color: var(--bbd-ink);
    font-size: 16px;
    line-height: 1.6;
}

.bbd-step-panel {
    display: none;
}

.bbd-step-panel.active {
    display: block;
}

.bbd-step-panel h3 {
    margin: 0 0 20px;
    color: var(--bbd-dark);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
}

.bbd-service-list {
    border-top: 1px solid var(--bbd-border);
}

.bbd-service-option {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 15px 0;
    margin: 0 !important;
    border-bottom: 1px solid var(--bbd-border);
    cursor: pointer;
    color: var(--bbd-ink);
    background: transparent;
    transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
    transform: none !important;
}

.bbd-service-option:hover,
.bbd-service-option.selected {
    background: var(--bbd-gold-soft);
}

.bbd-service-option.selected {
    border-bottom-color: var(--bbd-gold);
}

.bbd-service-info,
.bbd-service-right {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.bbd-service-info {
    flex-wrap: wrap;
    min-width: 0;
}

.bbd-service-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--bbd-ink);
}

.bbd-service-duration {
    font-size: 13px;
    font-weight: 700;
    color: var(--bbd-muted);
}

.bbd-service-price {
    min-width: 92px;
    text-align: right;
    font-size: 15px;
    font-weight: 700;
    color: var(--bbd-dark);
    white-space: nowrap;
}

.bbd-service-right input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bbd-radio-box {
    width: 15px;
    height: 15px;
    border: 2px solid var(--bbd-gold);
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bbd-service-option.selected .bbd-radio-box {
    background: var(--bbd-gold);
}

.bbd-service-option.selected .bbd-radio-box::after {
    content: "";
    width: 5px;
    height: 5px;
    background: #ffffff;
    display: block;
}

.bbd-booking-card label {
    display: block;
    font-weight: 700;
    margin: 14px 0 8px;
    color: var(--bbd-ink);
}

.bbd-booking-card input,
.bbd-booking-card select,
.bbd-booking-card textarea {
    width: 100%;
    border: 1px solid var(--bbd-border);
    border-radius: 0;
    padding: 13px 14px;
    font-size: 15px;
    box-sizing: border-box;
    background: #ffffff;
    color: var(--bbd-ink);
    outline: none;
    box-shadow: none !important;
    transition: border-color 0.16s ease, background-color 0.16s ease;
    transform: none !important;
}

.bbd-booking-card input:focus,
.bbd-booking-card select:focus,
.bbd-booking-card textarea:focus {
    border-color: var(--bbd-gold);
    background: #ffffff;
    box-shadow: none !important;
}

.bbd-calendar {
    max-width: 360px;
    margin-top: 8px;
}

.bbd-calendar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.bbd-calendar-title {
    flex: 1;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: var(--bbd-dark);
}

.bbd-calendar-nav {
    width: 36px;
    height: 36px;
    border: 0 !important;
    background: transparent !important;
    color: var(--bbd-gold-dark) !important;
    font-size: 24px;
    line-height: 1;
    padding: 0 !important;
    cursor: pointer;
    box-shadow: none !important;
    outline: none !important;
    transform: none !important;
    transition: color 0.16s ease, background-color 0.16s ease;
}

.bbd-calendar-nav:hover {
    color: var(--bbd-dark) !important;
    background: var(--bbd-gold-soft) !important;
}

.bbd-calendar-nav.disabled,
.bbd-calendar-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.bbd-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.bbd-calendar-weekday {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--bbd-dark);
}

.bbd-calendar-empty {
    height: 38px;
}

.bbd-calendar-day {
    height: 38px;
    min-height: 38px;
    width: 100%;
    border: 1px solid transparent !important;
    border-radius: 999px;
    background: transparent !important;
    color: var(--bbd-gold-dark) !important;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: none !important;
    outline: none !important;
    transform: none !important;
    transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.bbd-calendar-day:hover {
    background: var(--bbd-gold-soft) !important;
    color: var(--bbd-dark) !important;
}

.bbd-calendar-day.today {
    border-color: var(--bbd-gold) !important;
}

.bbd-calendar-day.selected,
.bbd-calendar-day.selected:hover {
    background: var(--bbd-gold) !important;
    border-color: var(--bbd-gold) !important;
    color: #ffffff !important;
}

.bbd-calendar-day.disabled,
.bbd-calendar-day:disabled {
    color: #B8B8B8 !important;
    cursor: not-allowed;
    background: transparent !important;
    border-color: transparent !important;
}

.bbd-selected-date {
    margin: 18px 0 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--bbd-dark);
}

.bbd-time-label {
    margin-top: 28px !important;
}

.bbd-slots {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.bbd-slot-button {
    border: 1px solid var(--bbd-gold) !important;
    background: #ffffff !important;
    color: var(--bbd-gold-dark) !important;
    border-radius: 0;
    padding: 12px 8px !important;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: none !important;
    outline: none !important;
    transform: none !important;
    min-height: 46px;
    transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.bbd-slot-button.selected,
.bbd-slot-button:hover {
    background: var(--bbd-gold) !important;
    border-color: var(--bbd-gold) !important;
    color: #ffffff !important;
}

.bbd-slots-message {
    grid-column: 1 / -1;
}

.bbd-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
}

.bbd-form-grid textarea {
    min-height: 96px;
}

.bbd-step-actions {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    margin-top: 34px;
}

.bbd-step-actions-right {
    justify-content: flex-end;
}

.bbd-primary-button,
.bbd-secondary-button,
.bbd-small-button,
.bbd-danger-button,
.bbd-back-button {
    border-radius: 0;
    padding: 13px 28px !important;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    box-shadow: none !important;
    min-height: 46px;
    min-width: 150px;
    outline: none !important;
    transform: none !important;
    appearance: none;
    transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

#bbd-public-booking-form .bbd-primary-button,
.bbd-booking-wrap .bbd-primary-button {
    background: var(--bbd-gold) !important;
    border: 1px solid var(--bbd-gold) !important;
    color: #ffffff !important;
}

#bbd-public-booking-form .bbd-primary-button:hover,
.bbd-booking-wrap .bbd-primary-button:hover {
    background: var(--bbd-dark) !important;
    border-color: var(--bbd-dark) !important;
    color: #ffffff !important;
}

#bbd-public-booking-form .bbd-back-button,
.bbd-booking-wrap .bbd-back-button {
    background: #ffffff !important;
    color: var(--bbd-gold-dark) !important;
    border: 1px solid var(--bbd-border) !important;
}

#bbd-public-booking-form .bbd-back-button:hover,
.bbd-booking-wrap .bbd-back-button:hover {
    background: var(--bbd-gold-soft) !important;
    color: var(--bbd-dark) !important;
    border-color: var(--bbd-gold) !important;
}

.bbd-muted {
    color: var(--bbd-muted);
    margin: 0;
}

.bbd-message {
    padding: 13px 15px;
    margin-bottom: 18px;
    font-weight: 700;
    border: 1px solid transparent;
    border-radius: 0;
}

.bbd-message-success {
    background: #F0FAF3;
    color: #126236;
    border-color: #BCE8CF;
}

.bbd-message-error {
    background: #FFF0F0;
    color: #A82020;
    border-color: #FFD0D0;
}

@media (max-width: 700px) {
    .bbd-booking-wrap {
        margin: 34px auto;
    }

    .bbd-booking-card {
        padding: 24px 18px;
    }

    .bbd-booking-head h2,
    .bbd-booking-card h2 {
        font-size: 28px;
    }

    .bbd-service-option,
    .bbd-service-info,
    .bbd-service-right {
        align-items: flex-start;
    }

    .bbd-service-option {
        gap: 12px;
    }

    .bbd-service-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .bbd-service-right {
        flex-shrink: 0;
    }

    .bbd-calendar {
        max-width: 100%;
    }

    .bbd-form-grid {
        grid-template-columns: 1fr;
    }

    .bbd-slots {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bbd-step-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .bbd-step-actions-right {
        flex-direction: column;
    }

    .bbd-primary-button,
    .bbd-back-button {
        width: 100%;
    }
}

@media (max-width: 440px) {
    .bbd-slots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
