/* Repair Booking Form Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Archivo:wght@300;400;500;600;700&display=swap');
.rbf-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #017c36 0%, #05413a 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.rbf-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    z-index: 1;
}

.rbf-container > * {
    position: relative;
    z-index: 2;
}

/* Progress Bar */
.rbf-progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 20px;
}

.rbf-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.rbf-progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.rbf-progress-step.active:not(:last-child)::after,
.rbf-progress-step.completed:not(:last-child)::after {
    background: #017c36;
}

.rbf-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.rbf-progress-step.active .rbf-step-number,
.rbf-progress-step.completed .rbf-step-number {
    background: #017c36;
    color: white;
}

.rbf-step-label {
    margin-top: 8px;
    font-size: 12px;
    color: #666;
    text-align: center;
}

.rbf-progress-step.active .rbf-step-label,
.rbf-progress-step.completed .rbf-step-label {
    color: #017c36;
    font-weight: 600;
}

/* Steps */
.rbf-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.rbf-step.active {
    display: block;
}

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

.rbf-step-header {
    text-align: center;
    margin-bottom: 40px;
}

.rbf-step-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.rbf-step-header p {
    font-size: 16px;
    color: #666;
}

/* Back Button */
.rbf-back-button {
    margin-bottom: 30px;
}

.rbf-btn-back {
    background: none;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    transition: all 0.3s ease;
}

.rbf-btn-back:hover {
    background: #f5f5f5;
    border-color: #017c36;
    color: #017c36;
}

/* Brand Grid */
.rbf-brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.rbf-brand-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rbf-brand-card:hover {
    border-color: #017c36;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 124, 186, 0.15);
}

.rbf-brand-card.selected {
    border-color: #017c36;
    background: #f0f8ff;
}

.rbf-brand-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.rbf-brand-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rbf-brand-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.rbf-brand-desc {
    font-size: 14px;
    color: #666;
}

.rbf-others-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background: linear-gradient(135deg, #017c36 0%, #05413a 100%);
    border-radius: 12px;
    color: white;
}

/* Model Grid */
.rbf-model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

/* Custom Model Inputs */
.rbf-custom-model-inputs {
    max-width: 600px;
    margin: 30px auto;
    padding: 25px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.rbf-custom-model-inputs .rbf-form-group {
    margin-bottom: 15px;
}

.rbf-custom-model-inputs label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.rbf-custom-model-inputs input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.rbf-custom-model-inputs input:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.rbf-btn-custom-model {
    margin-top: 10px;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
}

/* Others brand specific styling */
.rbf-price-quoted {
    color: #666 !important;
    font-style: italic;
    font-size: 0.9em;
}

.rbf-others-brand-message {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border: 1px solid #bbdefb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.rbf-message-icon {
    font-size: 24px;
    color: #1976d2;
    flex-shrink: 0;
}

.rbf-message-content {
    color: #1565c0;
    line-height: 1.5;
}

.rbf-service-charge {
    background-color: #fff3cd !important;
    border: none !important;
    border-left: 4px solid #017c36 !important;
}

.rbf-others-note {
    background-color: #fff3cd;
    border: none;
    border-radius: 0;
    padding: 12px 20px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #856404;
    font-size: 11px;
    border-top: 1px dashed #e2e8f0;
}

.rbf-note-icon {
    font-size: 16px;
    color: #f39c12;
}

.rbf-model-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rbf-model-card:hover {
    border-color: #017c36;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 124, 186, 0.1);
}

.rbf-model-card.selected {
    border-color: #017c36;
    background: #f0f8ff;
}

.rbf-model-image {
    width: 60px;
    height: auto;
    margin: 0 auto 10px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.rbf-model-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.rbf-model-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Repair Container */
.rbf-repair-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    align-items: start;
}

.rbf-repair-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* Repair Item Grid Layout */
.rbf-repair-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 20px;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    box-sizing: border-box;
    min-height: 240px;
    justify-content: space-between;
    text-align: center;
}

.rbf-repair-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    border-color: #007cba;
}

/* Responsive grid for different screen sizes */
@media (max-width: 1200px) {
    .rbf-repair-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .rbf-repair-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rbf-repair-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .rbf-repair-item {
        padding: 15px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .rbf-repair-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .rbf-repair-item {
        padding: 15px;
        min-height: 180px;
    }
}

/* Repair Item Content Styling */
.rbf-repair-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    border: 2px solid #e9ecef;
}

.rbf-repair-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.rbf-repair-details {
    text-align: center;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
    gap: 6px;
}

.rbf-repair-name,
.rbf-repair-desc,
.rbf-repair-duration,
.rbf-repair-price {
    text-align: center;
    width: 100%;
}

.rbf-repair-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-align: center;
}

.rbf-repair-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
    text-align: center;
}

.rbf-repair-duration {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
    text-align: center;
}

.rbf-repair-price {
    font-size: 18px;
    font-weight: 700;
    color: #017c36;
    margin-bottom: 10px;
    text-align: center;
}

.rbf-repair-actions {
    width: 100%;
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    text-align: center;
    margin-top: 10px;
}

/* Enhanced Add to Cart Button */
.rbf-btn-add {
    background: linear-gradient(135deg, #017c36 0%, #05413a 100%);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    min-width: 100px;
    max-width: 120px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(1, 124, 54, 0.3);
    margin: 0 auto;
    display: inline-block;
    text-align: center;
}

.rbf-btn-add:hover {
    background: linear-gradient(135deg, #05413a 0%, #017c36 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 124, 54, 0.4);
}

.rbf-btn-add:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(1, 124, 54, 0.3);
}

.rbf-repair-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rbf-repair-card:hover {
    border-color: #017c36;
    box-shadow: 0 4px 15px rgba(0, 124, 186, 0.1);
}

.rbf-repair-card.selected {
    border-color: #017c36;
    background: #f0f8ff;
}

.rbf-repair-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
}

.rbf-repair-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.rbf-repair-info {
    flex: 1;
}

.rbf-repair-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.rbf-repair-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.rbf-repair-duration {
    font-size: 12px;
    color: #999;
}

.rbf-repair-price {
    font-size: 18px;
    font-weight: 700;
    color: #017c36;
    margin-left: auto;
}

/* Device Display */
.rbf-device-display {
    margin-bottom: 20px;
}

.rbf-device-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    transform: rotate(-0.5deg);
    position: relative;
}

.rbf-device-card:hover {
    transform: rotate(0deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.rbf-device-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #017c36 0%, #05413a 100%);
    border-radius: 12px 12px 0 0;
}

.rbf-device-image {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rbf-device-image img {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
    border-radius: 12px;
    padding: 15px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.rbf-device-image img:hover {
    transform: scale(1.05);
    border-color: #017c36;
}

.rbf-device-info h4 {
    margin: 0 0 8px 0;
    color: #017c36;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.rbf-device-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

/* Cart Sidebar */
.rbf-cart-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.rbf-cart {
    background: white;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    position: relative;
    transform: rotate(-0.5deg);
    transition: transform 0.3s ease;
}

.rbf-cart:hover {
    transform: rotate(0deg);
}

.rbf-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #017c36 0%, #05413a 100%);
    border-radius: 8px 8px 0 0;
}

.rbf-receipt-header {
    background: #f8f9fa;
    padding: 8px 20px;
    border-bottom: 1px dashed #e2e8f0;
}

.rbf-receipt-date-time {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #666;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.rbf-receipt-date::before {
    content: 'DATE: ';
}

.rbf-receipt-time::before {
    content: 'TIME: ';
}

.rbf-cart h3 {
    margin: 0;
    padding: 15px 20px;
    color: white;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    background: linear-gradient(135deg, #017c36 0%, #05413a 100%);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px dashed #e2e8f0;
    font-family: 'Poppins', sans-serif;
}

.rbf-cart-empty {
    text-align: center;
    color: #666;
    padding: 30px 20px;
    font-style: italic;
    font-size: 14px;
    border-bottom: 1px dashed #e2e8f0;
}

.rbf-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 13px;
    line-height: 1.4;
}

.rbf-cart-item:last-child {
    border-bottom: 1px dashed #e2e8f0;
}

.rbf-cart-item-name {
    font-size: 12px;
    color: #333;
    font-weight: 400;
    flex: 1;
    margin-right: 10px;
}

.rbf-cart-item-price {
    font-weight: 600;
    color: #017c36;
    font-size: 12px;
    margin-right: 8px;
}

.rbf-cart-item-remove {
    background: #ff4757;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.rbf-cart-item-remove:hover {
    background: #e03e47;
    transform: scale(1.1);
}

.rbf-estimated-time {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 12px 20px;
    border-top: 1px dashed #e2e8f0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 12px;
    color: #666;
    background: #fafafa;
}

.rbf-time-icon {
    margin-right: 8px;
}

.rbf-cart-total {
    margin: 0;
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 2px dashed #017c36;
}

.rbf-total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 400;
}

.rbf-total-main {
    font-size: 16px;
    font-weight: 600;
    color: #017c36;
    margin-bottom: 15px;
    padding-top: 8px;
    border-top: 1px solid #017c36;
}

/* Buttons */
.rbf-btn-primary {
    background: #017c36;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.rbf-btn-primary:hover:not(:disabled) {
    background: #05413a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 124, 186, 0.3);
}

.rbf-btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.rbf-btn-proceed {
    margin: 20px 20px 0px 20px;
    width: calc(100% - 40px);
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
}

.rbf-receipt-footer {
    background: #f8f9fa;
    padding: 15px 20px;
    text-align: center;
    border-top: 1px dashed #e2e8f0;
    font-family: 'Poppins', sans-serif;
}

.rbf-receipt-thank-you {
    font-size: 12px;
    color: #333;
    font-weight: 500;
    margin-bottom: 5px;
}

.rbf-receipt-website {
    font-size: 10px;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Booking Form */
.rbf-booking-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

/* Cart Summary for Step 4 */
.rbf-cart-summary-step4 {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
}

.rbf-cart-summary-step4 h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.rbf-cart-items-step4 {
    margin-bottom: 15px;
}

.rbf-cart-item-step4 {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 8px;
    background: #f8f9fa;
}

.rbf-cart-item-image-step4 {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    margin-right: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.rbf-cart-item-image-step4 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rbf-cart-item-details-step4 {
    flex: 1;
}

.rbf-cart-item-name-step4 {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 2px;
}

.rbf-cart-item-price-step4 {
    color: #017c36;
    font-weight: 600;
    font-size: 13px;
}

.rbf-cart-item-quantity-step4 {
    color: #666;
    font-size: 12px;
}

.rbf-cart-total-step4 {
    border-top: 2px solid #e9ecef;
    padding-top: 15px;
}

.rbf-cart-total-line-step4 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.rbf-cart-total-main-step4 {
    font-weight: 700;
    font-size: 16px;
    color: #017c36;
    border-top: 1px solid #e9ecef;
    padding-top: 8px;
    margin-top: 8px;
}

.rbf-booking-form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.rbf-form-group {
    margin-bottom: 15px;
}

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

.rbf-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.rbf-form-group input,
.rbf-form-group textarea,
.rbf-form-group select {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    background: white;
    height: 42px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.rbf-form-group textarea {
    height: auto;
    min-height: 80px;
    resize: vertical;
    line-height: 1.5;
}

.rbf-form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    line-height: 1.4;
}

.rbf-form-group input:focus,
.rbf-form-group textarea:focus,
.rbf-form-group select:focus {
    outline: none;
    border-color: #017c36;
}

/* Form validation */
.rbf-error {
    border-color: #dc3545 !important;
}

.rbf-validation-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.rbf-global-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
    font-size: 14px;
}

/* Hide validation for hidden sections */
.rbf-address-section[style*="display: none"] input:invalid,
.rbf-address-section[style*="display: none"] select:invalid,
.rbf-datetime-section[style*="display: none"] input:invalid,
.rbf-datetime-section[style*="display: none"] select:invalid,
.rbf-delivery-section[style*="display: none"] input:invalid,
.rbf-delivery-section[style*="display: none"] select:invalid {
    border-color: #ced4da;
    box-shadow: none;
}

.rbf-service-description {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.rbf-warning {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.rbf-warning-icon {
    font-size: 18px;
    line-height: 1;
}

.rbf-warning-text {
    font-size: 14px;
    line-height: 1.5;
}

.rbf-address-section,
.rbf-datetime-section {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.rbf-address-section h4,
.rbf-datetime-section h4 {
    margin-bottom: 15px;
    color: #017c36;
    font-size: 18px;
    font-weight: 600;
}

.rbf-timeslots-container {
    margin-top: 15px;
}

.rbf-timeslots-container h5 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.rbf-timeslots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.rbf-timeslot {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rbf-timeslot:hover {
    border-color: #017c36;
    background: #f0f8ff;
}

.rbf-timeslot.selected {
    background: #017c36;
    color: white;
    border-color: #017c36;
}

.rbf-timeslot.disabled {
    background: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
    border-color: #e0e0e0;
}

.rbf-timeslot-message {
    grid-column: 1 / -1;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    text-align: center;
    color: #666;
    font-style: italic;
}

.rbf-btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.rbf-btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.rbf-btn-clear-cart {
    background: #dc3545 !important;
    color: white !important;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

.rbf-btn-clear-cart:hover {
    background: #c82333 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.rbf-success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 25px 0;
}

.rbf-confirmation-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: left;
}

.rbf-service-options {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.rbf-service-options h4 {
    margin-bottom: 12px;
    color: #333;
}

.rbf-radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rbf-radio-option {
    display: flex;
    align-items: center;
    padding: 12px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rbf-radio-option:hover {
    border-color: #017c36;
}

.rbf-radio-option input[type="radio"] {
    display: none;
}

.rbf-radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.rbf-radio-option input[type="radio"]:checked + .rbf-radio-custom {
    border-color: #017c36;
}

.rbf-radio-option input[type="radio"]:checked + .rbf-radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #017c36;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rbf-radio-content strong {
    display: block;
    color: #333;
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.rbf-radio-content small {
    color: #666;
    font-size: 12px;
}

/* Ensure emojis are properly displayed */
.rbf-radio-content strong {
    font-family: 'Poppins', 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
}

/* Store Visit Section */
.rbf-store-visit-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    margin: 20px 0;
}

.rbf-store-visit-section h4 {
    color: #017c36;
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
}

.rbf-store-info {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    margin-bottom: 15px;
}

.rbf-store-info p {
    margin: 5px 0;
    line-height: 1.6;
    color: #333;
}

.rbf-store-info p:first-child {
    color: #017c36;
    font-weight: 600;
    margin-bottom: 10px;
}

.rbf-store-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 12px;
    color: #856404;
}

.rbf-store-note p {
    margin: 0;
    font-size: 14px;
}

/* Delivery Section */
.rbf-delivery-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    margin: 20px 0;
}

.rbf-delivery-section h4 {
    color: #017c36;
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
}

.rbf-delivery-info {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    margin-bottom: 15px;
}

.rbf-delivery-info p {
    margin: 5px 0;
    line-height: 1.6;
    color: #333;
}

.rbf-delivery-info p:first-child {
    color: #017c36;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Selected Phone Display */
.rbf-selected-phone {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: 2px solid #e2e8f0;
}

.rbf-selected-phone h3 {
    margin: 0 0 15px 0;
    color: #017c36;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.rbf-phone-info {
    text-align: center;
}

.rbf-phone-brand {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.rbf-phone-model {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Booking Summary */
.rbf-booking-summary {
    background: white;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    transform: rotate(0.3deg);
    transition: transform 0.3s ease;
}

.rbf-booking-summary:hover {
    transform: rotate(0deg);
}

.rbf-booking-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #017c36 0%, #05413a 100%);
    border-radius: 8px 8px 0 0;
}

.rbf-booking-summary h3 {
    margin: 0;
    padding: 15px 20px;
    color: white;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    background: linear-gradient(135deg, #017c36 0%, #05413a 100%);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px dashed #e2e8f0;
    font-family: 'Poppins', sans-serif;
}

.rbf-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 13px;
    line-height: 1.4;
}

.rbf-summary-item strong {
    color: #333;
    font-weight: 600;
}

.rbf-summary-item span {
    color: #333;
    font-weight: 600;
}

.rbf-summary-repairs {
    margin: 0;
}

.rbf-summary-repair {
    display: flex;
    justify-content: space-between;
    padding: 8px 20px;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 12px;
}

.rbf-summary-repair span:first-child {
    color: #333;
    font-weight: 600;
}

.rbf-summary-repair span:last-child {
    color: #017c36;
    font-weight: 600;
}

.rbf-summary-total {
    margin: 0;
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 2px dashed #017c36;
    font-size: 16px;
    font-weight: 700;
    color: #017c36;
    text-align: center;
}

.rbf-guarantee {
    margin: 0;
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px dashed #e2e8f0;
}

.rbf-guarantee-item {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    font-size: 12px;
    color: #666;
}

.rbf-icon {
    color: #28a745;
    font-weight: bold;
    margin-right: 8px;
}

/* Success Step */
.rbf-success-content {
    text-align: center;
    padding: 60px 20px;
}

/* Receipt Styling */
.rbf-receipt {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-top: 25px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.rbf-receipt-header {
    text-align: center;
    margin-bottom: 15px;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 10px;
}

.rbf-receipt-header h5 {
    margin: 0 0 5px;
    font-size: 16px;
}

.rbf-receipt-id {
    font-size: 14px;
    color: #666;
}

.rbf-receipt-items {
    margin: 15px 0;
}

.rbf-receipt-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.rbf-receipt-total {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #000;
    padding-top: 10px;
    margin-top: 15px;
    font-weight: bold;
    font-size: 16px;
}

.rbf-receipt-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
}

.rbf-receipt-date {
    margin-bottom: 5px;
}

.rbf-receipt-thank-you {
    font-weight: bold;
}

.rbf-success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
}

.rbf-success-content h2 {
    color: #28a745;
    margin-bottom: 15px;
}

.rbf-booking-id {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 30px 0;
    font-weight: 600;
    color: #333;
}

/* Loading Overlay */
.rbf-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.rbf-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #017c36;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.rbf-loading-text {
    color: white;
    margin-top: 15px;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rbf-container {
        padding: 15px;
        margin: 10px;
        border-radius: 12px;
    }
    
    .rbf-progress-bar {
        padding: 0 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 20px;
    }
    
    .rbf-step-label {
        font-size: 10px;
    }
    
    .rbf-step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .rbf-brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .rbf-model-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .rbf-repair-container,
    .rbf-booking-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rbf-cart-sidebar,
    .rbf-booking-summary {
        position: static;
        order: -1;
        margin-bottom: 20px;
    }
    
    .rbf-repair-card {
        padding: 15px;
        flex-direction: row; /* Keep horizontal layout for better UX */
        align-items: center;
    }
    
    .rbf-repair-image {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .rbf-repair-info {
        padding: 0 10px;
    }
    
    .rbf-repair-name {
        font-size: 14px;
    }
    
    .rbf-repair-desc {
        font-size: 12px;
    }
    
    .rbf-repair-duration {
        font-size: 10px;
    }
    
    .rbf-repair-price {
        font-size: 16px;
        margin-left: auto;
    }
    
    .rbf-radio-group {
        gap: 8px;
    }
    
    .rbf-radio-option {
        padding: 12px;
    }
    
    .rbf-form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .rbf-step-header h2 {
        font-size: 22px;
    }
    
    .rbf-step-header p {
        font-size: 14px;
    }
    
    .rbf-timeslots {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
    
    .rbf-success-content {
        padding: 30px 15px;
    }
    
    .rbf-success-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .rbf-success-actions button {
        width: 100%;
    }
    
    .rbf-receipt {
        padding: 10px;
    }
}

/* Mobile-specific classes */
.mobile-cart,
.mobile-summary {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-progress {
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-form-row {
    grid-template-columns: 1fr !important;
}

.small-mobile-repair-card {
    flex-direction: column !important;
    text-align: center !important;
}

.small-mobile-cart-item {
    flex-wrap: wrap !important;
}

.small-mobile-grid {
    grid-template-columns: 1fr !important;
}

/* Small mobile devices */
@media (max-width: 480px) {
    .rbf-container {
        padding: 10px;
        margin: 5px;
    }
    
    .rbf-brand-grid,
    .rbf-model-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .rbf-repair-card {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }
    
    .rbf-repair-price {
        margin: 10px 0 0 0;
    }
    
    .rbf-cart-item {
        flex-wrap: wrap;
    }
    
    .rbf-cart-item-name {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .rbf-cart-item-price {
        margin-right: auto;
    }
}

/* Step 4: Booking Form Layout */
.rbf-booking-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    margin-top: 30px;
}

.rbf-booking-main {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.rbf-booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Device Display for Step 4 */
.rbf-device-display {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.rbf-device-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.rbf-device-image img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.rbf-device-info {
    text-align: center;
}

.rbf-device-name {
    font-weight: bold;
    font-size: 18px;
    color: #017c36;
    margin-bottom: 5px;
}

.rbf-device-model {
    font-size: 14px;
    color: #666;
}

/* Merged Receipt & Summary */
.rbf-receipt-summary {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.rbf-receipt-summary h3 {
    background: linear-gradient(135deg, #017c36, #30ab58);
    color: white !important;
    padding: 15px;
    margin: -25px -25px 20px -25px;
    border-radius: 15px 15px 0 0;
    text-align: center;
    font-size: 18px;
}

.rbf-receipt-header {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.rbf-receipt-date {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

.rbf-cart-section {
    margin-bottom: 20px;
}

.rbf-cart-section h4 {
    color: #017c36;
    margin-bottom: 15px;
    font-size: 16px;
}

.rbf-cart-items {
    /* Remove max-height and overflow to keep original design */
}

.rbf-cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #f8f9fa;
}

.rbf-cart-item-image img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 5px;
}

.rbf-cart-item-details {
    flex: 1;
}

.rbf-cart-item-name {
    font-weight: bold;
    color: #000000 !important; /* Keep cart item names black */
    font-size: 14px;
}

.rbf-cart-item-price {
    color: #30ab58 !important; /* Only prices in green */
    font-weight: bold;
    font-size: 14px;
}

.rbf-cart-item-quantity {
    color: #666;
    font-size: 12px;
}

.rbf-cart-total {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.rbf-total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.rbf-total-line.rbf-total-main {
    font-weight: bold;
    font-size: 16px;
    color: #017c36;
    border-top: 1px solid #dee2e6;
    padding-top: 8px;
    margin-top: 8px;
}

/* Booking Summary */
.rbf-booking-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.rbf-booking-summary h4 {
    color: #017c36;
    margin-bottom: 15px;
    font-size: 16px;
}

.rbf-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.rbf-summary-repairs {
    /* Remove max-height and overflow to keep original design */
}

.rbf-summary-repair {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #dee2e6;
    font-size: 13px;
}

.rbf-summary-total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #dee2e6;
    text-align: center;
    font-size: 16px;
}

.rbf-summary-total strong {
    color: #017c36;
}

.rbf-summary-total span {
    color: #30ab58 !important; /* Only total amount in green */
    font-weight: bold;
}

/* Form Sections - Keep original styling */
.rbf-form-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.rbf-form-section h4 {
    color: #017c36;
    margin-bottom: 20px;
    font-size: 16px;
    border-bottom: 2px solid #017c36;
    padding-bottom: 10px;
}

/* Form row for city and emirate only */
.rbf-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

/* Individual form groups for full-width fields */
.rbf-form-group {
    margin-bottom: 20px;
}

/* Ensure proper spacing between form sections */
.rbf-form-section + .rbf-form-section {
    margin-top: 20px;
}

/* Keep original form styling */
.rbf-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #000000 !important; /* Make labels black */
    font-size: 14px;
}

.rbf-form-group input,
.rbf-form-group select,
.rbf-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.rbf-form-group input:focus,
.rbf-form-group select:focus,
.rbf-form-group textarea:focus {
    outline: none;
    border-color: #017c36;
    box-shadow: 0 0 0 2px rgba(1, 124, 54, 0.1);
}

/* Payment Note in Sidebar - Beautiful Styling */
.rbf-payment-note {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.rbf-payment-note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
}

.rbf-payment-note strong {
    color: #017c36;
    font-weight: bold;
}

/* Radio Button Styling */
.rbf-radio-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.rbf-radio-label {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 15px !important;
    border: 2px solid #e9ecef !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    font-size: 14px !important;
    position: relative !important;
}

.rbf-radio-label:hover {
    border-color: #017c36;
    background: #f8f9fa;
}

.rbf-radio-label input[type="radio"] {
    display: none !important;
}

.rbf-radio-custom {
    width: 20px !important;
    height: 20px !important;
    border: 2px solid #ddd !important;
    border-radius: 50% !important;
    position: relative !important;
    transition: all 0.3s !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

.rbf-radio-label input[type="radio"]:checked + .rbf-radio-custom {
    border-color: #017c36 !important;
    background: #017c36 !important;
}

.rbf-radio-label input[type="radio"]:checked + .rbf-radio-custom::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 8px !important;
    height: 8px !important;
    background: white !important;
    border-radius: 50% !important;
    display: block !important;
}

.rbf-radio-label input[type="radio"]:checked ~ span {
    color: #017c36;
    font-weight: bold;
}

/* Store Location Styles */
.rbf-store-location,
.rbf-delivery-info {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.rbf-store-location h5 {
    color: #017c36;
    margin-bottom: 10px;
    font-size: 14px;
}

.rbf-store-location p {
    margin-bottom: 8px;
    font-size: 13px;
    color: #666;
}

.rbf-store-location a {
    color: #017c36;
    text-decoration: none;
}

.rbf-store-location a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rbf-booking-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .rbf-form-row {
        grid-template-columns: 1fr;
    }
    
    .rbf-booking-main,
    .rbf-booking-sidebar {
        padding: 20px;
    }
}

/* Success Page Styling */
.rbf-step-success {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.rbf-success-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #017c36;
}

.rbf-success-icon {
    font-size: 80px;
    color: #017c36;
    margin-bottom: 20px;
    background: #f0f9f0;
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
    margin: 0 auto 30px;
    border: 4px solid #017c36;
}

.rbf-step-success h2 {
    color: #017c36;
    font-size: 32px;
    margin-bottom: 20px;
}

.rbf-step-success p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.rbf-booking-id {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    font-size: 18px;
    font-weight: bold;
    color: #017c36;
    border: 2px solid #e9ecef;
}

.rbf-success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.rbf-confirmation-details {
    margin-top: 40px;
    text-align: left;
}

.rbf-confirmation-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.rbf-confirmation-section h4 {
    color: #017c36;
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #017c36;
    padding-bottom: 10px;
}

.rbf-confirmation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.rbf-confirmation-item:last-child {
    border-bottom: none;
}

.rbf-confirmation-item span:first-child {
    font-weight: bold;
    color: #495057;
}

.rbf-confirmation-item span:last-child {
    color: #017c36;
    font-weight: 500;
}

.rbf-confirmation-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-top: 15px;
    border-top: 2px solid #017c36;
    font-weight: bold;
    font-size: 18px;
}

.rbf-confirmation-total span:first-child {
    color: #495057;
}

.rbf-confirmation-total span:last-child {
    color: #30ab58;
    font-size: 20px;
}

/* Responsive design for success page */
@media (max-width: 768px) {
    .rbf-step-success {
        padding: 20px 10px;
    }
    
    .rbf-success-content {
        padding: 30px 20px;
    }
    
    .rbf-success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .rbf-success-actions button {
        width: 100%;
        max-width: 300px;
    }
    
    .rbf-confirmation-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
