/* Public Frontend Styles */
.sbs-booking-form-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sbs-booking-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.sbs-form-step {
    display: none;
}

.sbs-form-step.active {
    display: block;
}

.sbs-form-step h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2271b1;
}

/* Services Grid */
.sbs-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.sbs-service-card {
    position: relative;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sbs-service-card:hover {
    border-color: #2271b1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.sbs-service-card.selected {
    border-color: #2271b1;
    background: #f0f8ff;
}

.sbs-service-content h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.sbs-service-content p {
    font-size: 14px;
    color: #666;
    margin: 10px 0;
}

.sbs-service-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.sbs-service-price {
    font-weight: bold;
    color: #2271b1;
    font-size: 18px;
}

.sbs-service-duration {
    color: #999;
    font-size: 14px;
}

.sbs-service-quantity-control {
    display: none;
    margin-top: 12px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.sbs-service-card.selected .sbs-service-quantity-control,
.sbs-service-checkbox-item.selected .sbs-service-quantity-control,
.sbs-service-checkbox-item:has(input:checked) .sbs-service-quantity-control {
    display: flex;
}

.sbs-service-qty-label {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

.sbs-service-qty-group {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.sbs-qty-btn {
    border: 0;
    background: #f6f7f7;
    color: #333;
    font-weight: 600;
    width: 32px;
    height: 32px;
    line-height: 1;
    cursor: pointer;
}

.sbs-qty-btn:hover {
    background: #ececec;
}

.sbs-service-qty-input {
    width: 54px;
    height: 32px;
    border: 0;
    text-align: center;
    font-weight: 600;
    color: #333;
    appearance: textfield;
    -moz-appearance: textfield;
}

.sbs-service-qty-input::-webkit-outer-spin-button,
.sbs-service-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.sbs-service-checkbox {
    position: absolute;
    top: 15px;
    right: 15px;
}

.sbs-service-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Date & Time Selection */
.sbs-date-picker {
    margin-bottom: 20px;
}

.sbs-date-picker input[type="date"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
}

.sbs-time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.sbs-time-slot {
    padding: 12px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sbs-time-slot:hover {
    border-color: #2271b1;
    background: #f0f8ff;
}

.sbs-time-slot.selected {
    background: #2271b1;
    color: #fff;
    border-color: #2271b1;
}

.sbs-time-slot.unavailable {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
}

/* Form Groups */
.sbs-form-group {
    margin-bottom: 20px;
}

.sbs-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.sbs-form-group input,
.sbs-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.sbs-form-group input:focus,
.sbs-form-group textarea:focus {
    outline: none;
    border-color: #2271b1;
}

.sbs-form-group .sbs-input-error {
    border-color: #dc2626 !important;
}

.sbs-field-error {
    display: block;
    margin-top: 6px;
    color: #dc2626;
    font-size: 12px;
    line-height: 1.3;
}

/* Buttons */
.sbs-btn {
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.sbs-btn-primary {
    background: #2271b1;
    color: #fff;
}

.sbs-btn-primary:hover {
    background: #135e96;
}

.sbs-btn-secondary {
    background: #f0f0f0;
    color: #333;
}

.sbs-btn-secondary:hover {
    background: #e0e0e0;
}

.sbs-next-step,
.sbs-prev-step {
    background: #2271b1;
    color: #fff;
}

.sbs-prev-step {
    background: #666;
}

.sbs-next-step:hover {
    background: #135e96;
}

.sbs-prev-step:hover {
    background: #555;
}

/* Summary */
.sbs-booking-summary {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

#sbs-booking-summary,
#sbs-modal-booking-summary {
    color: #1f2937;
    font-weight: 500;
}

#sbs-booking-summary h4,
#sbs-modal-booking-summary h4 {
    color: #111827;
    margin: 0 0 10px 0;
}

#sbs-booking-summary li,
#sbs-modal-booking-summary li,
#sbs-booking-summary p,
#sbs-modal-booking-summary p {
    color: #374151;
}

.sbs-coupon-section {
    margin: 20px 0;
    padding: 20px;
    background: #fff;
    border: 2px dashed #ddd;
    border-radius: 4px;
}

.sbs-coupon-section h4 {
    margin-top: 0;
}

.sbs-coupon-section .sbs-form-group {
    display: flex;
    gap: 10px;
}

.sbs-coupon-section input {
    flex: 1;
}

#sbs-coupon-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
}

#sbs-coupon-message.success {
    background: #d4edda;
    color: #155724;
}

#sbs-coupon-message.error {
    background: #f8d7da;
    color: #721c24;
}

.sbs-total-price {
    text-align: right;
    font-size: 24px;
    color: #111;
    margin: 20px 0;
    padding: 20px;
    background: #f0f8ff;
    border-radius: 4px;
}

/* Success Message */
.sbs-booking-success {
    text-align: center;
    padding: 40px;
}

.sbs-success-message h3 {
    color: #155724;
    font-size: 32px;
    margin-bottom: 20px;
}

.sbs-success-message p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Messages */
#sbs-form-messages {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
}

#sbs-form-messages.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#sbs-form-messages.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Service Showcase & Carousel */
.sbs-service-showcase {
    margin: 40px 0;
}

.sbs-showcase-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #333;
}

.sbs-services-grid.sbs-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.sbs-services-grid.sbs-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.sbs-services-grid.sbs-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.sbs-service-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sbs-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.sbs-service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.sbs-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sbs-service-item:hover .sbs-service-image img {
    transform: scale(1.05);
}

.sbs-service-details {
    padding: 20px;
}

.sbs-service-title {
    font-size: 20px;
    margin: 0 0 10px 0;
    color: #333;
}

.sbs-service-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.sbs-service-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
    border-top: 1px solid #eee;
}

.sbs-service-price-tag {
    font-size: 24px;
    font-weight: bold;
    color: #2271b1;
}

.sbs-service-duration-tag {
    color: #999;
    font-size: 14px;
}

.sbs-book-service-btn {
    width: 100%;
    padding: 12px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sbs-book-service-btn:hover {
    background: #135e96;
}

/* Carousel */
.sbs-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.sbs-services-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sbs-services-carousel::-webkit-scrollbar {
    display: none;
}

.sbs-services-carousel .sbs-service-item {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 300px;
}

.sbs-carousel-prev,
.sbs-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #2271b1;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.sbs-carousel-prev:hover,
.sbs-carousel-next:hover {
    background: #135e96;
}

.sbs-carousel-prev {
    left: 0;
}

.sbs-carousel-next {
    right: 0;
}

/* Category Carousel */
.sbs-category-showcase {
    margin: 40px 0;
}

.sbs-category-carousel-wrapper {
    position: relative;
    padding: 12px 58px;
    overflow: visible;
}

.sbs-category-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: stretch;
    padding: 6px 2px;
    scroll-snap-type: x mandatory;
}

.sbs-category-carousel::-webkit-scrollbar {
    display: none;
}

.sbs-category-slide {
    flex: 0 0 calc(33.333% - 11px);
    min-width: 300px;
    min-height: 360px;
    border: 0;
    border-radius: 8px;
    padding: 2px;
    text-align: left;
    background: #ffffff;
    box-shadow: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    scroll-snap-align: start;
    overflow: hidden;
}

.sbs-category-slide-image {
    display: block;
    width: 100%;
    margin: 0 0 8px 0;
    height: 210px;
    overflow: hidden;
    border-radius: 8px;
    line-height: 0;
    background: #ffffff;
}

.sbs-category-slide-image img {
    width: 100%;
    height: 100% !important;
    min-height: 100%;
    object-fit: cover !important;
    display: block;
    background: #ffffff;
    margin-bottom:5px;
}

.sbs-category-slide:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.sbs-category-slide-title {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}

.sbs-category-slide-count {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #2271b1;
    background: #dbeafe;
    border-radius: 999px;
    padding: 4px 10px;
    margin-bottom: 8px;
}

.sbs-category-slide-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: var(--e-global-color-uicore_accent, #2271b1);
    transition: background 0.25s ease;
    width: fit-content;
    clear: both;
}

.sbs-category-slide:hover .sbs-category-slide-cta {
    background: var(--e-global-color-uicore_secondary, #135e96);
}

.sbs-cat-carousel-prev,
.sbs-cat-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2271b1;
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    line-height: 44px;
    font-size: 22px;
    font-weight: 400;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    padding: 0;
    text-align: center;
}

.sbs-cat-carousel-prev:hover,
.sbs-cat-carousel-next:hover {
    background: #135e96;
}

.sbs-cat-carousel-prev { left: 6px; }
.sbs-cat-carousel-next { right: 6px; }

@media (max-width: 1024px) {
    .sbs-category-slide {
        flex: 0 0 calc(50% - 8px);
        min-width: 320px;
        min-height: 340px;
    }
}

@media (max-width: 768px) {
    .sbs-category-carousel-wrapper {
        padding: 10px 44px;
    }

    .sbs-category-slide {
        flex: 0 0 100%;
        min-width: 100%;
        min-height: 320px;
    }

}

/* Modal Styles */
.sbs-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.sbs-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sbs-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.sbs-modal-container {
    position: relative;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    background: #fff;
    border-radius: 12px;
    overflow-y: auto;
    z-index: 100000;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sbs-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sbs-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.sbs-modal-content {
    padding: 40px;
}

#sbs-modal-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.sbs-modal-form .sbs-services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.sbs-service-checkbox-item {
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sbs-service-checkbox-item:has(input:checked) {
    border-color: #2271b1;
    background: #f0f8ff;
}

.sbs-service-checkbox-item label {
    display: block;
    padding: 15px;
    cursor: pointer;
}

.sbs-service-checkbox-item input[type="checkbox"] {
    margin-right: 10px;
}

.sbs-service-checkbox-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sbs-service-checkbox-title {
    font-weight: 600;
    color: #333;
}

.sbs-service-checkbox-price {
    font-size: 18px;
    font-weight: bold;
    color: #2271b1;
}

.sbs-service-checkbox-item .sbs-service-quantity-control {
    padding: 0 15px 15px;
}

/* Modal Button Styles */
.sbs-open-modal-btn {
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sbs-btn-primary {
    background: var(--sbs-primary-color, #2271b1);
    color: #fff;
}

.sbs-btn-primary:hover {
    background: var(--sbs-primary-hover, #135e96);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.sbs-btn-secondary {
    background: #f0f0f0;
    color: #333;
}

.sbs-btn-secondary:hover {
    background: #e0e0e0;
}

.sbs-btn-outline {
    background: transparent;
    color: var(--sbs-primary-color, #2271b1);
    border: 2px solid var(--sbs-primary-color, #2271b1);
}

.sbs-btn-outline:hover {
    background: var(--sbs-primary-color, #2271b1);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .sbs-booking-form-wrapper {
        padding: 20px;
    }
    
    .sbs-services-grid {
        grid-template-columns: 1fr;
    }
    
    .sbs-services-grid.sbs-columns-2,
    .sbs-services-grid.sbs-columns-3,
    .sbs-services-grid.sbs-columns-4 {
        grid-template-columns: 1fr;
    }
    
    .sbs-time-slots {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
    
    .sbs-services-carousel .sbs-service-item {
        flex: 0 0 calc(100% - 20px);
        min-width: 250px;
    }
    
    .sbs-carousel-wrapper {
        padding: 0 40px;
    }
    
    .sbs-modal-content {
        padding: 20px;
    }
}

/* Category Filter */
.sbs-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.sbs-category-btn {
    padding: 10px 20px;
    background: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.sbs-category-btn:hover {
    background: #e8f4f8;
    border-color: var(--sbs-primary-color, #2271b1);
    color: var(--sbs-primary-color, #2271b1);
    transform: translateY(-2px);
}

.sbs-category-btn.active {
    background: var(--sbs-primary-color, #2271b1);
    border-color: var(--sbs-primary-color, #2271b1);
    color: #fff;
    box-shadow: 0 4px 12px rgba(34, 113, 177, 0.3);
}

.sbs-modal-category-btn {
    padding: 12px 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f6fb 100%);
    border: 2px solid #d7e3f3;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #35506b;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.sbs-modal-category-btn:hover {
    transform: translateY(-2px);
    border-color: var(--sbs-primary-color, #2271b1);
    box-shadow: 0 6px 14px rgba(34, 113, 177, 0.15);
}

.sbs-modal-category-btn.active {
    background: linear-gradient(135deg, var(--sbs-primary-color, #2271b1) 0%, #135e96 100%);
    border-color: var(--sbs-primary-color, #2271b1);
    color: #fff;
    box-shadow: 0 8px 18px rgba(34, 113, 177, 0.3);
}

/* Category-first modal experience */
.sbs-modal-category-section {
    margin-bottom: 18px;
}

.sbs-modal-category-title {
    margin: 0 0 12px 0;
    color: #1f2937;
}

.sbs-modal-category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 10px;
}

.sbs-modal-category-card {
    border: 2px solid #d7e3f3;
    background: linear-gradient(135deg, #fff 0%, #f5f9ff 100%);
    border-radius: 12px;
    padding: 10px;
    text-align: left;
    cursor: pointer;
    transition: all .25s ease;
}

.sbs-modal-category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(34, 113, 177, .12);
}

.sbs-modal-category-card.active {
    border-color: var(--sbs-primary-color, #2271b1);
    background: linear-gradient(135deg, #e8f3ff 0%, #dbeafe 100%);
    box-shadow: 0 8px 18px rgba(34, 113, 177, .2);
}

.sbs-modal-category-card-image {
    display: block;
    width: 100%;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.sbs-modal-category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sbs-modal-category-card-name {
    display: block;
    font-weight: 700;
    color: #1f2937;
}

.sbs-modal-category-card-count {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #35506b;
}

/* Live Pricing Display */
.sbs-live-pricing {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px 25px;
    margin: 25px 0;
    border: 2px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sbs-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 16px;
}

.sbs-pricing-row + .sbs-pricing-row {
    border-top: 1px solid #dee2e6;
}

.sbs-pricing-row.sbs-total-row {
    font-size: 20px;
    padding-top: 15px;
    border-top: 2px solid #495057;
    margin-top: 10px;
}

.sbs-pricing-row .sbs-price {
    font-weight: 600;
    color: var(--sbs-primary-color, #2271b1);
}

.sbs-pricing-row.sbs-discount-row {
    color: #28a745;
}

.sbs-pricing-row.sbs-discount-row .sbs-price {
    color: #28a745;
}

#sbs-discount-label {
    font-size: 13px;
    padding: 2px 8px;
    background: #28a745;
    color: #fff;
    border-radius: 12px;
    margin-left: 5px;
    font-weight: 600;
}

#sbs-modal-discount-label {
    font-size: 13px;
    padding: 2px 8px;
    background: #28a745;
    color: #fff;
    border-radius: 12px;
    margin-left: 5px;
    font-weight: 600;
}

.sbs-offer-hint {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff3cd;
    border: 1px solid #ffe69c;
    color: #8a6d3b;
    font-size: 13px;
    font-weight: 600;
}

/* Better Button Styling */
.sbs-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
    line-height: 1.2;
    vertical-align: middle;
}

.sbs-success-message .sbs-btn + .sbs-btn {
    margin-left: 12px;
}

@media (max-width: 480px) {
    .sbs-booking-success .sbs-success-message .sbs-btn {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 12px auto 0;
    }
}

.sbs-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.sbs-btn:hover::before {
    width: 300px;
    height: 300px;
}

.sbs-btn-primary {
    background: linear-gradient(135deg, var(--sbs-primary-color, #2271b1) 0%, #135e96 100%);
    color: #fff;
}

.sbs-btn-primary:hover {
    background: linear-gradient(135deg, #135e96 0%, var(--sbs-primary-color, #2271b1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 113, 177, 0.4);
}

.sbs-btn-secondary {
    background: #6c757d;
    color: #fff;
}

.sbs-btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

.sbs-btn-google {
    background: linear-gradient(135deg, #34a853 0%, #2d8f47 100%);
    color: #fff;
}

.sbs-btn-google:hover {
    background: linear-gradient(135deg, #2d8f47 0%, #25753b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 168, 83, 0.35);
}

.sbs-btn-google,
.sbs-btn-google:hover,
.sbs-btn-google:focus {
    color: #fff !important;
    text-decoration: none;
}

.sbs-btn-google::before {
    display: none;
}

.sbs-prev-step {
    background: #f8f9fa;
    color: #495057;
    border: 2px solid #dee2e6;
}

.sbs-prev-step:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    transform: translateY(-2px);
}

.sbs-next-step, 
button[type="submit"].sbs-btn {
    position: relative;
    z-index: 1;
}

/* Service Card Hidden State */
.sbs-service-card.hidden {
    display: none;
}

/* Improved Service Card */
.sbs-service-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sbs-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.sbs-service-card.selected {
    border-color: var(--sbs-primary-color, #2271b1);
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
    box-shadow: 0 4px 16px rgba(34, 113, 177, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sbs-category-filter {
        gap: 8px;
    }
    
    .sbs-category-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .sbs-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .sbs-live-pricing {
        padding: 15px 20px;
    }
    
    .sbs-pricing-row {
        font-size: 14px;
    }
    
    .sbs-pricing-row.sbs-total-row {
        font-size: 18px;
    }
}

/* Button Group */
.sbs-button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 600px) {
    .sbs-button-group {
        flex-direction: column-reverse;
        gap: 10px;
    }
    
    .sbs-button-group .sbs-btn {
        width: 100%;
    }
}

/* Promotional Banner */
.sbs-promo-banner {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

.sbs-promo-banner strong {
    font-weight: 700;
    text-decoration: underline;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(40, 167, 69, 0.5);
    }
}

/* Modal-specific styles */
.sbs-modal .sbs-service-checkbox-item.hidden {
    display: none;
}

/* Modal container scrolling */
.sbs-modal-container {
    overflow-y: auto;
    max-height: 90vh;
}