.cwb-booking-form {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.cwb-booking-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.cwb-booking-form input[type="text"],
.cwb-booking-form select {
    width: auto;
    padding: 8px;
    margin-bottom: 0px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.cwb-wizard-steps {
    font-weight: 600;
    color: #6c757d;
}

.cwb-wizard-step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cwb-step-indicator {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ced4da;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    background: #fff;
}

.cwb-wizard-step.is-active .cwb-step-indicator {
    border-color: #0d6efd;
    color: #0d6efd;
}

.cwb-wizard-step-panel {
    display: none;
}

.cwb-wizard-step-panel.is-active {
    display: block;
}

.cwb-service-toolbar {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #e9ecef;
}

.cwb-selected-car-icon {
    width: 72px;
    height: 48px;
    border-radius: 12px;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.cwb-selected-car-image {
    max-width: 72px;
    max-height: 48px;
    object-fit: contain;
}

.cwb-selected-car-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.cwb-service-search .input-group-text {
    background: #fff;
}

.cwb-car-type-card {
    border: 2px solid #dee2e6;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    background: #fff;
    position: relative;
    color: #212529;
}

.cwb-service-card {
    border: 2px solid #dee2e6;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    background: #fff;
    position: relative;
    color: #212529;
}

.cwb-service-card .card-body {
    padding: 24px;
}

.cwb-service-image {
    width: 240px;
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #f8f9fa;
}

.cwb-service-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.cwb-service-image-fallback {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-weight: 600;
}

.cwb-service-category {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.cwb-service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
}

.cwb-service-meta {
    min-width: 180px;
}

.cwb-service-card:hover,
.cwb-service-card.is-selected {
    border-color: #0d6efd;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.15);
    transform: translateY(-2px);
}

.cwb-service-card.is-selected .cwb-selected-check {
    display: inline-flex;
}

.cwb-car-type-card:hover,
.cwb-car-type-card.is-selected {
    border-color: #0d6efd;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.15);
    transform: translateY(-2px);
}

.cwb-car-type-card .card-body {
    gap: 8px;
}

.cwb-car-type-icon {
    width: 64px;
    height: 48px;
    margin: 0 auto;
    color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cwb-car-type-icon img,
.cwb-car-type-icon svg {
    max-width: 64px;
    max-height: 48px;
}

.cwb-car-type-card.is-selected .cwb-car-type-icon {
    color: #0d6efd;
}

.cwb-selected-check {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.cwb-service-card .cwb-selected-check {
    position: static;
    margin-left: auto;
}

.cwb-car-type-card.is-selected .cwb-selected-check {
    display: inline-flex;
}

.cwb-location-error {
    color: #dc3545;
    display: none;
    font-size: 0.9rem;
}

.cwb-details-grid {
    align-items: stretch;
}

.cwb-details-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #e9ecef;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(33, 37, 41, 0.08);
}

.cwb-details-title {
    font-weight: 700;
    color: #0b1f44;
    margin-bottom: 16px;
}

.cwb-details-subtitle {
    font-weight: 600;
    margin-bottom: 16px;
    color: #0b1f44;
}

.cwb-location-map {
    position: relative;
    min-height: 320px;
    border-radius: 20px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 600;
}

.cwb-location-search {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
}

.cwb-location-search.input-group {
    width: 90%;
    flex-wrap: nowrap;
    position: absolute;
}

.cwb-location-search.input-group > .form-control {
    width: 100%;
    min-width: 0;
}

.cwb-location-map-canvas {
    position: absolute;
    inset: 0;
}

.cwb-location-search .input-group-text {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-right: 0;
    color: #0b1f44;
    border-radius: 14px 0 0 14px;
}

.cwb-location-search .form-control {
    border: 1px solid #e5e7eb;
    border-left: 0;
    border-radius: 0 14px 14px 0;
    padding: 12px 16px;
}

.cwb-outline-field .form-control,
.cwb-outline-field .form-select {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 12px 16px;
    width: 100%;
}

.cwb-outline-field.input-group .form-control,
.cwb-outline-field.input-group .form-select {
    border-right: 0;
    border-radius: 14px 0 0 14px;
}

.cwb-outline-field .input-group-text {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-left: 0;
    color: #0b1f44;
    border-radius: 0 14px 14px 0;
    padding: 0 16px;
}

.cwb-outline-field svg {
    width: 20px;
    height: 20px;
}

.cwb-details-card .form-control,
.cwb-details-card .form-select {
    width: 100%;
}

.cwb-booking-form input.cwb-vehicle-plate[type="text"] {
    width: 90%;
}

#ui-datepicker-div {
    z-index: 9999 !important;
}

.cwb-wizard {
    --cwb-accent: #0d6efd;
}

.cwb-summary-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #e9ecef;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(33, 37, 41, 0.08);
}

.cwb-summary-header {
    border-bottom: 2px solid var(--cwb-accent);
    margin-bottom: 16px;
    padding-bottom: 8px;
}

.cwb-summary-header h5 {
    font-weight: 700;
    color: #0b1f44;
    margin: 0;
}

.cwb-summary-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cwb-helper-text {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.cwb-inline-input .input-group-text {
    background: #fff;
    border-color: #e5e7eb;
    border-right: 0;
    border-radius: 14px 0 0 14px;
}

.cwb-inline-input .form-control {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}

.cwb-inline-input .btn {
    border-radius: 0 14px 14px 0;
}

.cwb-accent-button {
    background: var(--cwb-accent);
    border-color: var(--cwb-accent);
    color: #fff;
    font-weight: 600;
}

.cwb-summary-field {
    border: 1px solid var(--cwb-accent);
    padding: 12px 16px;
    border-radius: 14px;
    background: #fff;
}

.cwb-summary-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--cwb-accent);
    margin-bottom: 6px;
}

.cwb-summary-value {
    font-weight: 600;
    color: #0b1f44;
}

.cwb-payment-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cwb-payment-option {
    flex: 1 1 140px;
    border: 2px solid var(--cwb-accent);
    border-radius: 16px;
    background: #fff;
    padding: 16px;
    font-weight: 600;
    color: #0b1f44;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cwb-payment-option.is-selected {
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
}

.cwb-payment-icon {
    font-size: 1.5rem;
}

.cwb-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cwb-summary-list-item {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #0b1f44;
}

.cwb-summary-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    font-weight: 600;
    color: #0b1f44;
}

.cwb-summary-total {
    border-bottom: none;
    font-size: 1.05rem;
}

.cwb-summary-notes textarea {
    resize: vertical;
}

.cwb-checkout-section table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.cwb-checkout-section table th,
.cwb-checkout-section table td {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    font-weight: 600;
    color: #0b1f44;
}

.cwb-checkout-section table tfoot tr:last-child th,
.cwb-checkout-section table tfoot tr:last-child td {
    border-bottom: none;
    font-size: 1.05rem;
}

.cwb-checkout-section .woocommerce-checkout-review-order-table tbody {
    display: none;
}

.cwb-checkout-section .woocommerce-checkout-payment {
    background: transparent;
    border: 0;
    padding: 0;
}

.cwb-checkout-section .payment_methods {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cwb-checkout-section .payment_methods li {
    border: 1px solid var(--cwb-accent);
    border-radius: 16px;
    padding: 12px 16px;
}

.cwb-checkout-section .payment_methods label {
    font-weight: 600;
    color: #0b1f44;
}

.cwb-checkout-section .form-row {
    margin: 0;
}

.cwb-checkout-section .woocommerce-form-coupon {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cwb-checkout-section .woocommerce-form-coupon input.input-text {
    flex: 1 1 200px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 10px 14px;
}

.cwb-applied-coupons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cwb-coupon-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 8px 12px;
    font-weight: 600;
    color: #0b1f44;
}

.cwb-hidden-place-order {
    display: none !important;
}
