/**
 * Public styles for Beauty Salon Booking
 * Focused on beauty salon styling with elegant colors and design
 */

/* Main Container */
.bsb-booking-container {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(214, 104, 143, 0.15);
    font-family: 'Montserrat', Arial, sans-serif;
    overflow: hidden;
    border: 1px solid rgba(245, 197, 215, 0.3);
}

/* Header */
.bsb-booking-header {
    background: #f9e6ee;
    padding: 40px;
    text-align: center;
    color: #d6688f;
    position: relative;
    overflow: hidden;
}

.bsb-booking-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.bsb-booking-header h2 {
    font-size: 32px;
    margin: 0 0 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bsb-subtitle {
    font-size: 16px;
    margin: 0;
    color: #8e4966;
    font-weight: 400;
    letter-spacing: 0.5px;
    max-width: 80%;
    margin: 0 auto;
}

/* Booking Steps */
.bsb-booking-form-wrapper {
    padding: 40px;
    background-color: #fff;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none" /><path d="M100 0H0v100h100V0zM10 10h80v80H10V10z" fill="rgba(245, 197, 215, 0.03)" /></svg>');
    background-size: 20px 20px;
}

.bsb-booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.bsb-booking-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background: #f5c5d7;
    z-index: 1;
    border-radius: 2px;
}

.bsb-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 25%;
}

.bsb-step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    margin: 0 auto 10px;
    border: 2px solid #f5c5d7;
    position: relative;
    z-index: 2;
}

.bsb-step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(245, 197, 215, 0.1);
    z-index: -1;
}

.bsb-step-label {
    font-size: 14px;
    color: #999;
    text-align: center;
}

.bsb-step-active .bsb-step-number {
    background: #d6688f;
    color: #fff;
    border-color: #d6688f;
}

.bsb-step-active .bsb-step-label {
    color: #d6688f;
    font-weight: 600;
}

/* Booking Form */
.bsb-booking-form {
    background: #fff;
    border-radius: 8px;
}

.bsb-booking-step {
    padding: 20px 0;
}

/* Service Selection */
.bsb-service-selection-container {
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border: none;
    position: relative;
    overflow: hidden;
}

.bsb-service-selection-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(245, 197, 215, 0.2) 0%, rgba(245, 197, 215, 0) 70%);
    border-radius: 0 0 0 100%;
    pointer-events: none;
}

.bsb-service-selection-container h3 {
    color: #d6688f;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.bsb-services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 400px; /* Terug naar 400px */
    overflow-y: auto;
    padding-right: 10px;
    /* Custom scrollbar for Firefox */
    scrollbar-width: thin;
    scrollbar-color: #d6688f #f9e6ee;
}

/* Custom scrollbar for Chrome */
.bsb-services-list::-webkit-scrollbar {
    width: 8px;
}

.bsb-services-list::-webkit-scrollbar-track {
    background: #f9e6ee;
    border-radius: 10px;
}

.bsb-services-list::-webkit-scrollbar-thumb {
    background-color: #d6688f;
    border-radius: 10px;
    border: 2px solid #f9e6ee;
}

.bsb-service-item {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 35px;
    display: flex;
    align-items: center;
    gap: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    min-height: 180px;
}

.bsb-service-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f5c5d7;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bsb-service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(214, 104, 143, 0.08);
    background: linear-gradient(145deg, #ffffff, #fdfbfc);
}

.bsb-service-item:hover::after {
    opacity: 1;
}

.bsb-service-item.selected {
    background: linear-gradient(145deg, #fff5f9, #fef8fb);
    box-shadow: 0 8px 20px rgba(214, 104, 143, 0.1);
    border-left: 4px solid #d6688f;
}

.bsb-service-item.selected::after {
    opacity: 1;
    height: 100%;
    width: 4px;
    left: 0;
    top: 0;
    bottom: auto;
    background: #d6688f;
}

.bsb-service-color {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 3px solid #fff;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.bsb-service-color::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.bsb-service-info {
    flex: 1;
    padding-right: 5px;
}

.bsb-service-info h4 {
    margin: 0 0 10px;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    display: block;
    word-wrap: break-word;
}

.bsb-service-info h4::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f9e6ee(to right, #d6688f, transparent);
    transition: width 0.3s ease;
}

.bsb-service-item:hover .bsb-service-info h4::after,
.bsb-service-item.selected .bsb-service-info h4::after {
    width: 100%;
}

.bsb-service-description {
    margin: 0 0 15px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding-left: 12px;
    border-left: 2px solid rgba(245, 197, 215, 0.5);
    word-wrap: break-word;
    max-width: 100%;
}

.bsb-service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8e4966;
    font-size: 16px;
    font-weight: 500;
    background: rgba(245, 197, 215, 0.15);
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 5px;
    box-shadow: 0 3px 10px rgba(214, 104, 143, 0.08);
}

.bsb-service-meta::before {
    content: '\f469';
    font-family: dashicons;
    margin-right: 5px;
    font-size: 16px;
    color: #d6688f;
}

.bsb-service-price {
    color: #d6688f;
    font-weight: 700;
    font-size: 16px;
    background: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(214, 104, 143, 0.15);
    position: relative;
    transition: all 0.3s ease;
}

.bsb-service-item:hover .bsb-service-price {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(214, 104, 143, 0.25);
}

.bsb-no-services {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
}

.bsb-selected-service-display {
    background: #f9e6ee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 30px;
}

.bsb-selected-service-display h3 {
    font-weight: 700;
    color: #d6688f;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.bsb-selected-service {
    background: #fff;
    border-radius: 6px;
    padding: 10px 15px;
}

.bsb-selected-service h4 {
    margin: 0 0 5px;
    color: #333;
    font-size: 16px;
    font-weight: 700;
}

.bsb-selected-info {
    background: #f9e6ee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.bsb-selected-date-display,
.bsb-selected-time-display {
    background: #fff;
    border-radius: 6px;
    padding: 10px 15px;
    margin-bottom: 10px;
    font-weight: 500;
    position: relative;
    padding-left: 40px;
}

.bsb-selected-service-info {
    background: #fff;
    border-radius: 6px;
    padding: 10px 15px;
    margin-bottom: 10px;
    font-weight: 500;
    position: relative;
}

.bsb-selected-date-display::before,
.bsb-selected-time-display::before {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-family: dashicons;
    color: #d6688f;
    font-size: 18px;
}

/* Service icoon verwijderd */

.bsb-selected-date-display::before {
    content: '\f508';
}

.bsb-selected-time-display::before {
    content: '\f469'; /* Betere klok icon */
}

.bsb-selected-info h3 {
    color: #d6688f;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Date and Time Selection */
.bsb-date-time-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.bsb-date-picker-container,
.bsb-time-slots-container {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(214, 104, 143, 0.08);
    border: 1px solid rgba(245, 197, 215, 0.2);
    position: relative;
    overflow: hidden;
}

.bsb-date-picker-container::before,
.bsb-time-slots-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: rgba(245, 197, 215, 0.2);
    border-radius: 50%;
    filter: blur(15px);
    pointer-events: none;
}

.bsb-date-picker-container h3,
.bsb-time-slots-container h3 {
    color: #d6688f;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

/* Date Picker Styling */
#bsb-date-picker .ui-datepicker {
    width: 100%;
    padding: 0;
    border: none;
    font-family: 'Montserrat', Arial, sans-serif;
}

#bsb-date-picker .ui-datepicker-header {
    background: #f9e6ee;
    border: none;
    border-radius: 10px;
    color: #d6688f;
    padding: 15px;
    position: relative;
}

#bsb-date-picker .ui-datepicker-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #d6688f;
}

#bsb-date-picker .ui-datepicker-calendar th {
    color: #d6688f;
    font-weight: 600;
    padding: 10px 5px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

#bsb-date-picker .ui-datepicker-calendar td {
    padding: 5px;
}

#bsb-date-picker .ui-datepicker-calendar td a {
    text-align: center;
    background: #fff;
    color: #333;
    border: 1px solid #f5f5f5;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

#bsb-date-picker .ui-datepicker-calendar td a.ui-state-active {
    background: #d6688f;
    color: #fff;
    border-color: #d6688f;
    font-weight: bold;
}

#bsb-date-picker .ui-datepicker-calendar td a:hover {
    background: #f9e6ee;
    color: #d6688f;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(214, 104, 143, 0.15);
}

/* Time Slots */
#bsb-time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-height: 300px;
    overflow-y: auto;
    padding: 15px 8px 15px 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: #f5c5d7 #f9f9f9;
}

#bsb-time-slots::-webkit-scrollbar {
    width: 6px;
}

#bsb-time-slots::-webkit-scrollbar-track {
    background: #f9f9f9;
    border-radius: 10px;
}

#bsb-time-slots::-webkit-scrollbar-thumb {
    background: #f5c5d7;
    border-radius: 10px;
}

#bsb-time-slots::-webkit-scrollbar-thumb:hover {
    background: #d6688f;
}

.bsb-time-slot {
    background: #fff;
    border: 1px solid #f5c5d7;
    border-radius: 30px;
    padding: 12px 10px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: visible;
    color: #d6688f;
    font-weight: 500;
    z-index: 1;
    margin: 2px;
}

.bsb-time-slot:hover {
    background: #f9e6ee;
    z-index: 5;
    border-color: #d6688f;
}

.bsb-time-slot.selected {
    background: #d6688f;
    color: #fff;
    border-color: #d6688f;
    font-weight: 600;
    z-index: 10;
}

.bsb-time-slot.selected::after {
    content: '✓';
    font-size: 10px;
    width: 16px;
    height: 16px;
    background: #fff;
    color: #d6688f;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    right: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d6688f;
    z-index: 15;
}

.bsb-select-date-message {
    grid-column: 1 / -1;
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
}

.bsb-no-slots-message {
    grid-column: 1 / -1;
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
}

/* Customer Details Form */
.bsb-selected-datetime {
    background: #f9e6ee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.bsb-selected-datetime h3 {
    color: #d6688f;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
}

.bsb-selected-date-display,
.bsb-selected-time-display {
    font-size: 16px;
    font-weight: 600;
    color: #8e4966;
}

.bsb-customer-details h3 {
    color: #d6688f;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 20px;
}

.bsb-form-group {
    margin-bottom: 20px;
}

.bsb-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #8e4966;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 20px;
}

.bsb-form-group label::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #d6688f;
    border-radius: 50%;
}

.bsb-form-group label .required {
    color: #d6688f;
}

.bsb-form-group input,
.bsb-form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #eee;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.02);
    background-color: #fff;
    color: #333;
    font-family: 'Montserrat', Arial, sans-serif;
}

.bsb-form-group input::placeholder,
.bsb-form-group textarea::placeholder {
    color: #aaa;
    font-style: italic;
}

.bsb-form-group input:focus,
.bsb-form-group textarea:focus {
    border-color: #d6688f;
    outline: none;
    box-shadow: 0 5px 15px rgba(214, 104, 143, 0.15);
    transform: translateY(-2px);
}

.bsb-form-group.has-error input,
.bsb-form-group.has-error textarea {
    border-color: #d63939;
    box-shadow: 0 3px 10px rgba(214, 57, 57, 0.1);
    background-color: rgba(214, 57, 57, 0.02);
}

.bsb-form-group.has-error label {
    color: #d63939;
}

.bsb-form-group.has-error label::before {
    background: #d63939;
}

/* Booking Summary */
.bsb-booking-summary {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(245, 197, 215, 0.5);
    position: relative;
    overflow: hidden;
}

/* Roze blok rechtsonderin verwijderd */
.bsb-booking-summary::before {
    display: none;
}

.bsb-booking-summary h3 {
    color: #d6688f;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.bsb-booking-summary h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #f5c5d7;
    border-radius: 3px;
}

.bsb-summary-item {
    display: flex;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(245, 197, 215, 0.3);
    padding-bottom: 18px;
    position: relative;
    align-items: center;
}

/* Styling voor de laatste rij (comments) */
.bsb-summary-item:last-child {
    margin-bottom: 0;
    padding-bottom: 10px;
    border-bottom: none;
}

/* Extra styling voor comments waarde */
.bsb-summary-item:last-child .bsb-summary-value {
    padding-top: 2px;
    padding-bottom: 10px;
}

/* Verbeterde styling voor comments label */
.bsb-summary-item:last-child .bsb-summary-label {
    padding-bottom: 10px;
}

.bsb-summary-item::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 30px;
    height: 1px;
    background: #d6688f;
}

/* Verwijderd dubbele definitie */

.bsb-summary-label {
    min-width: 100px;
    font-weight: 600;
    color: #8e4966;
    position: relative;
    padding-left: 28px;
    line-height: 24px;
    margin-top: 0;
    margin-bottom: 0;
}

.bsb-summary-label::before {
    position: absolute;
    left: 0;
    top: 0;
    color: #d6688f;
    font-size: 18px;
    line-height: 24px;
    width: 20px;
    text-align: center;
}

/* Specifieke iconen per item - gebruikt dezelfde iconen als admin panel */
.bsb-summary-item:nth-of-type(1) .bsb-summary-label::before { content: '\f174'; font-family: dashicons; } /* Service */
.bsb-summary-item:nth-of-type(2) .bsb-summary-label::before { content: '\f469'; font-family: dashicons; } /* Duration */
.bsb-summary-item:nth-of-type(3) .bsb-summary-label::before { content: '\f481'; font-family: dashicons; } /* Price */
.bsb-summary-item:nth-of-type(4) .bsb-summary-label::before { content: '\f508'; font-family: dashicons; } /* Date */
.bsb-summary-item:nth-of-type(5) .bsb-summary-label::before { content: '\f145'; font-family: dashicons; } /* Time */
.bsb-summary-item:nth-of-type(6) .bsb-summary-label::before { content: '\f110'; font-family: dashicons; } /* Name */
.bsb-summary-item:nth-of-type(7) .bsb-summary-label::before { content: '\f465'; font-family: dashicons; } /* Email */
.bsb-summary-item:nth-of-type(8) .bsb-summary-label::before { content: '\f525'; font-family: dashicons; } /* Phone */
.bsb-summary-item:nth-of-type(9) .bsb-summary-label::before { content: '\f473'; font-family: dashicons; margin-top: 2px; } /* Comments */

.bsb-summary-value {
    flex: 1;
    color: #333;
    font-weight: 500;
    padding-left: 15px;
    line-height: 24px;
    margin-top: 0;
    margin-bottom: 0;
}

/* Payment Options */
.bsb-payment-options {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    border: 1px solid rgba(245, 197, 215, 0.2);
}

.bsb-payment-options h3 {
    color: #d6688f;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 600;
}

.bsb-payment-option {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.bsb-payment-option input[type="radio"] {
    margin-right: 10px;
    accent-color: #d6688f;
}

.bsb-payment-option label {
    font-size: 16px;
    color: #333;
}

.bsb-payment-info {
    margin-top: 15px;
    padding: 12px;
    background-color: #fff;
    border-left: 4px solid #d6688f;
    font-size: 14px;
    color: #666;
}

/* Success Message */
.bsb-success-message {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(214, 104, 143, 0.1);
    position: relative;
    overflow: hidden;
}

.bsb-success-message::before,
.bsb-success-message::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 197, 215, 0.2) 0%, rgba(245, 197, 215, 0) 70%);
    z-index: 0;
}

.bsb-success-message::before {
    top: -100px;
    left: -100px;
}

.bsb-success-message::after {
    bottom: -100px;
    right: -100px;
}

.bsb-success-icon {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    animation: success-pulse 2s infinite;
}

@keyframes success-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.bsb-success-message h3 {
    color: #d6688f;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.bsb-booking-reference {
    margin-top: 40px;
    padding: 20px;
    background: #f9e6ee(135deg, #f9e6ee, #f5c5d7);
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(214, 104, 143, 0.15);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bsb-booking-reference::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
    border-radius: 12px;
}

.bsb-booking-reference p {
    margin: 0;
    color: #8e4966;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 16px;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

/* Navigation Buttons */
.bsb-form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

button.bsb-prev-step,
button.bsb-next-step,
button.bsb-submit-booking {
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

button.bsb-prev-step {
    background: #f5f5f5;
    color: #666;
}

button.bsb-prev-step:hover {
    background: #e9e9e9;
}

button.bsb-next-step,
button.bsb-submit-booking {
    background: #d6688f;
    color: #fff;
    position: relative;
    overflow: hidden;
}

button.bsb-next-step::before,
button.bsb-submit-booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: all 0.6s ease;
}

button.bsb-next-step:hover::before,
button.bsb-submit-booking:hover::before {
    left: 100%;
}

button.bsb-next-step:hover,
button.bsb-submit-booking:hover {
    background: #c05c80;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214, 104, 143, 0.4);
}

button.bsb-next-step:disabled {
    background: #f5c5d7;
    cursor: not-allowed;
}

/* Loading Overlay */
.bsb-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fade-in 0.3s ease;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.bsb-loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(245, 197, 215, 0.3);
    border-radius: 50%;
    border-top-color: #d6688f;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 30px rgba(214, 104, 143, 0.2);
    position: relative;
}

.bsb-loading-spinner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 197, 215, 0.5) 0%, rgba(245, 197, 215, 0) 70%);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
}

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

/* Payment Options */
.bsb-payment-options {
    margin-bottom: 20px;
    border: 1px solid #f5c5d7;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
}

.bsb-payment-options h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #d6688f;
    font-size: 18px;
}

.bsb-payment-option {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.bsb-payment-option input[type="radio"] {
    margin-right: 10px;
}

.bsb-payment-option label {
    font-size: 16px;
    cursor: pointer;
}

.bsb-payment-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f9e6ee;
    font-size: 14px;
    color: #888;
}

.bsb-payment-info p {
    margin: 5px 0;
}

/* Service Options Styling */
.bsb-service-options {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.bsb-service-options h5 {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: bold;
    color: #666;
}

.bsb-service-option {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 8px;
    background: #f9f9f9;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 13px;
    position: relative;
}

.bsb-service-option:hover {
    background: #f0f0f0;
}

.bsb-service-option input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
    z-index: 10;
    position: relative;
}

.bsb-option-name {
    font-weight: 500;
    flex: 1;
}

.bsb-option-price {
    margin-left: auto;
    color: #333;
    font-weight: bold;
}

.bsb-option-description {
    display: block;
    margin-top: 4px;
    color: #666;
    font-style: italic;
    width: 100%;
}

/* Mobile styles are now loaded from separate file */
