/* ================================================================
   MPCRBM – Registration / Booking Flow CSS
   Full-width · Clean · Premium
   ================================================================ */

/* ── Design Tokens ── */
:root {
    --rzp-theme:          var(--color_theme,   #0a4b78);
    --rzp-success:        var(--color_success, #16a34a);
    --rzp-alter:          var(--color_theme_alter, #ffffff);
    --rzp-radius-sm:      6px;
    --rzp-radius-md:      12px;
    --rzp-radius-lg:      18px;
    --rzp-shadow-sm:      0 2px 10px rgba(0,0,0,.06);
    --rzp-shadow-md:      0 6px 24px rgba(0,0,0,.09);
    --rzp-shadow-lg:      0 12px 40px rgba(0,0,0,.12);
    --rzp-border:         1px solid #e5e7eb;
    --rzp-bg:             #f7f9fc;
    --rzp-card:           #ffffff;
    --rzp-text:           #1e293b;
    --rzp-muted:          #64748b;
    --rzp-pad-xs:         8px;
    --rzp-pad-sm:         14px;
    --rzp-pad-md:         20px;
    --rzp-pad-lg:         28px;
    --rzp-gap:            16px;
}

/* ================================================================
   FULL-WIDTH WRAPPER — break out of theme containers
   ================================================================ */
.mpcrbm_transport_search_area {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}

/* Inner safe zone */
.mpcrbm_transport_search_area > *,
.mpcrbm_tab_next,
.tabsContentNext {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--rzp-pad-md);
    padding-right: var(--rzp-pad-md);
    box-sizing: border-box;
}

/* ── Force the root plugin div full-width ── */
div.mpcrbm,
.mpcrbm.mpcrbm_transport_search_area {
    width: 100% !important;
    max-width: 100% !important;
}

/* ================================================================
   BOOKING HEADER (title block)
   ================================================================ */
.booking-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #0a4b78 60%, #0d6efd 100%);
    padding: 28px 36px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0;
    width: 100%;
    box-sizing: border-box;
    gap: 16px;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-icon {
    background: rgba(255,255,255,.15);
    padding: 12px;
    border-radius: var(--rzp-radius-md);
    backdrop-filter: blur(8px);
    flex-shrink: 0;
}

div.header-text h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.booking-header div.header-text p {
    font-size: 14px;
    font-weight: 400;
    opacity: .85;
    margin: 0;
    line-height: 1.4;
}

.header-badge {
    background: rgba(255,255,255,.18);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.25);
    white-space: nowrap;
}

/* ================================================================
   SEARCH AREA SHELL
   ================================================================ */
.mpcrbm_search_area {
    width: 100% !important;
    max-width: 100% !important;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
}

.mpcrbm_search_holder {
    padding: var(--rzp-pad-md) var(--rzp-pad-lg);
    background: #f0f4f8;
    border-bottom: var(--rzp-border);
    width: 100%;
    box-sizing: border-box;
}

/* ── Search form row ── */
.mpcrbm_horizontal_search_form,
.mpcrbm_inline_search_form {
    display: flex;
    flex-wrap: wrap;
    gap: var(--rzp-gap);
    align-items: flex-end;
    width: 100%;
}

.mpcrbm_horizontal_date_time_input {
    background: #fff;
    border-radius: var(--rzp-radius-md);
    padding: var(--rzp-pad-sm) var(--rzp-pad-md);
    border: var(--rzp-border);
    display: flex;
    gap: var(--rzp-gap);
    align-items: stretch;
    flex: 1 1 260px;
    min-width: 220px;
    box-sizing: border-box;
    box-shadow: var(--rzp-shadow-sm);
}

.mpcrbm_width_33 { width: 33.33%; flex: 1 1 260px; }
.mpcrbm_100_width { width: 100%; flex: 1 1 100%; }

/* ── Label + input group ── */
.input_select { flex: 1 1 auto; }

.mpcrbm_search_title {
    display: flex !important;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--rzp-muted);
    padding: 0 0 4px 0;
}

.mpcrbm_search_title i {
    font-size: 14px;
    color: var(--rzp-theme);
}

/* ── Form controls ── */
.mpcrbm_search_area label .formControl,
.mpcrbm_search_holder .formControl,
.formControl {
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 500;
    color: var(--rzp-text);
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
}

.formControl::placeholder { color: var(--rzp-muted); }

select.formControl {
    background-image: url('../../mp_global/assets/images/arrow_down.svg');
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 16px;
    padding-right: 24px;
}

/* ── Vertical divider between date/time ── */
.mpcrbm-vertical-divider {
    width: 1px;
    background: #e5e7eb;
    margin: 4px 8px;
    flex-shrink: 0;
}

/* ── Return / Pickup checkbox row ── */
.mprcbm_checkbox_search_btn_holder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--rzp-gap);
    margin-top: 14px;
    flex-wrap: wrap;
}

.mprcbm_checkbox_group_new {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #fff;
    border-radius: var(--rzp-radius-sm);
    border: var(--rzp-border);
}

.mprcbm_search_button_holder { width: auto; }

/* ── Search Button ── */
.mpcrbm_search-button {
    background: var(--rzp-theme);
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--rzp-radius-md);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s ease;
    min-width: 130px;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(10,75,120,.3);
}

.mpcrbm_search-button:hover {
    background: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10,75,120,.4);
}

/* ── Section label ── */
.mpcrbm_horizontal_section_label {
    font-size: 11px;
    font-weight: 700;
    color: var(--rzp-muted);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin: 14px 0 4px 0;
    width: 100%;
}

.mpcrbm_horizontal_section_divider {
    height: 1px;
    background: #e5e7eb;
    margin: 16px 0;
    width: 100%;
}

/* ================================================================
   PROGRESS STEPS
   ================================================================ */
/* ── Progress steps bar — HIDDEN (step labels removed per user request) ── */
#mpcrbm_progress_bar_holder,
.tabListsNext {
    display: none !important;
}

.tabItemNext {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 36px;
    min-height: auto !important;
    position: relative;
    cursor: default;
    flex: 1;
    max-width: 280px;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all .3s ease;
}

.tabItemNext .circleIcon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #9ca3af !important;
    background: #f3f4f6 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    margin: 0 0 6px 0;
}

.tabItemNext .circleTitle {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #9ca3af !important;
    margin: 0 !important;
    top: auto !important;
    position: static !important;
    text-align: center;
    transition: all .3s ease;
}

/* Connector line */
.tabItemNext .circleIcon::after {
    display: none !important;
}

/* Active step */
.tabItemNext.active {
    border-bottom-color: var(--rzp-theme) !important;
}
.tabItemNext.active .circleIcon {
    background: var(--rzp-theme) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(10,75,120,.35);
}
.tabItemNext.active .circleTitle {
    color: var(--rzp-theme) !important;
    font-weight: 700 !important;
}

/* Done step */
.tabItemNext.active [class*="circleIcon"].success,
.tabItemNext .circleIcon.success {
    background: var(--rzp-success) !important;
    color: #fff !important;
}

/* ================================================================
   VEHICLE LISTING (Search Results)
   ================================================================ */
.mpcrbm_search_result_holder {
    display: flex;
    flex-direction: row;
    gap: var(--rzp-gap);
    width: 100%;
    padding: var(--rzp-pad-md) 0;
    align-items: flex-start;
}

/* ── Left filter column ── */
.mpcrbm_left_filter {
    width: 260px;
    min-width: 260px;
    flex-shrink: 0;
}

.mpcrbm-left-filter {
    background: #fff;
    padding: var(--rzp-pad-md);
    border-radius: var(--rzp-radius-md);
    box-shadow: var(--rzp-shadow-sm);
    border: var(--rzp-border);
    position: sticky;
    top: 20px;
}

.mpcrbm-filter-group {
    margin-bottom: 18px;
    border: var(--rzp-border);
    border-radius: var(--rzp-radius-sm);
    padding: var(--rzp-pad-sm);
    background: #fafbfc;
}

div.mpcrbm .mpcrbm-filter-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--rzp-text);
    text-transform: uppercase;
    letter-spacing: .4px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 8px !important;
    margin-bottom: 6px;
}

.mpcrbm-filter-list {
    list-style: none;
    padding: 6px 0 0 0;
    margin: 0;
}

.mpcrbm-filter-list li {
    margin: 6px 0;
    font-size: 13px;
    color: var(--rzp-text);
}

.mpcrbm-filter-list input[type="checkbox"] {
    margin-right: 8px;
    accent-color: var(--rzp-theme);
    cursor: pointer;
}

button.mpcrbm_filter_btn {
    background: var(--rzp-theme);
    color: #fff;
    border: none;
    border-radius: var(--rzp-radius-sm);
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background .25s ease;
    width: 100%;
    margin-bottom: 12px;
}

button.mpcrbm_filter_btn:hover { background: #0d6efd; }

/* ── Main content column ── */
.mpcrbm_main_content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: var(--rzp-gap);
    min-width: 0;
}

/* ── Vehicle card ── */
.mpcrbm_booking_vehicle {
    background: #fff;
    border: var(--rzp-border);
    border-radius: var(--rzp-radius-lg);
    box-shadow: var(--rzp-shadow-sm);
    transition: all .3s ease;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: var(--rzp-gap);
    overflow: hidden;
}

.mpcrbm_booking_vehicle:hover {
    box-shadow: var(--rzp-shadow-md);
    transform: translateY(-3px);
    border-color: #c7d2fe;
}

/* ── Car image box ── */
.mpcrbm-image-box {
    width: 220px;
    min-width: 220px;
    height: 200px;
    overflow: hidden;
    border-radius: 0;
    flex-shrink: 0;
}

.mpcrbm-image-box .bg_image_area,
.mpcrbm .mpcrbm-image-box img:not(.wp_editor img) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.mpcrbm_booking_vehicle:hover .mpcrbm-image-box img { transform: scale(1.05); }

/* ── Car details ── */
div.mpcrbm_transport_search_area div.mpcrbm_list_details {
    flex: 1 1 auto;
    padding: var(--rzp-pad-md) var(--rzp-pad-lg);
    width: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

div.mpcrbm_list_details h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--rzp-text);
    margin: 0 0 10px 0;
}

/* ── Specs grid ── */
.mpcrbm_car_specs_lists {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    margin: 8px 0;
}

.mpcrbm_car_spec {
    display: flex;
    align-items: center;
    gap: 6px;
    width: calc(50% - 4px);
    background: #f8fafc;
    border-radius: var(--rzp-radius-sm);
    padding: 5px 10px;
    font-size: 12px;
    color: var(--rzp-muted);
    border: 1px solid #f1f5f9;
}

.mpcrbm_car_spec i { font-size: 14px; color: var(--rzp-theme); flex-shrink: 0; }
.mpcrbm_car_spec .spec-value { font-weight: 500; color: var(--rzp-text); }
.mpcrbm_car_spec .spec-label { color: var(--rzp-muted); font-size: 11px; }

/* ── Pricing column ── */
.mpcrbm_booking_items {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    gap: 8px;
    padding: var(--rzp-pad-md);
    border-left: var(--rzp-border);
    min-width: 170px;
    text-align: right;
}

.mpcrbm_price-main {
    font-size: 22px;
    font-weight: 800;
    color: var(--rzp-success);
    line-height: 1.1;
}

.mpcrbm_price-breakdown {
    font-size: 12px;
    color: var(--rzp-muted);
    font-weight: 400;
}

.mpcrbm_price-total {
    font-size: 12px;
    color: var(--rzp-muted);
    font-weight: 500;
    padding: 2px 0;
    text-align: right;
}

.mpcrbm_price-total span { color: var(--rzp-success); font-weight: 700; margin-left: 4px; }

.mpcrbm_discount-info {
    font-size: 11px;
    color: #059669;
    font-weight: 600;
    background: #ecfdf5;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #a7f3d0;
    display: inline-block;
}

.mpcrbm_seasonal-info {
    font-size: 11px;
    color: #d97706;
    background: #fffbeb;
    padding: 4px 8px;
    border-radius: 5px;
    border: 1px solid #fde68a;
    display: inline-block;
    text-align: center;
}

/* ── Select & Price buttons ── */
div.mpcrbm_transport_search_area button.mpcrbm_price_calculation,
div.mpcrbm_transport_search_area button.mpcrbm_transport_select {
    background: var(--rzp-theme);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(10,75,120,.25);
}

div.mpcrbm_transport_search_area button.mpcrbm_transport_select:hover,
div.mpcrbm_transport_search_area button.mpcrbm_price_calculation:hover {
    background: #0d6efd;
    transform: translateY(-1px);
}

div.mpcrbm_transport_search_area button.mpcrbm_price_calculation.mActive,
div.mpcrbm_transport_search_area button.mpcrbm_price_calculation.active_select,
div.mpcrbm_transport_search_area button.mpcrbm_transport_select.active_select {
    background: var(--rzp-success) !important;
    border-color: var(--rzp-success) !important;
    box-shadow: 0 4px 14px rgba(22,163,74,.25);
}

/* ── Car quantity ── */
.mpcrbm_car_quantity {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f1f5f9;
    padding: 6px 10px;
    border-radius: var(--rzp-radius-sm);
    font-size: 13px;
}

.mpcrbm_add_multiple_qty {
    display: flex;
    justify-content: flex-end;
    padding: 6px 0;
}

/* ================================================================
   TRANSPORT SUMMARY SIDEBAR (Step 3)
   ================================================================ */
div.mpcrbm_transport_summary {
    background: #fff;
    border: var(--rzp-border);
    border-radius: var(--rzp-radius-lg);
    padding: var(--rzp-pad-lg);
    box-shadow: var(--rzp-shadow-sm);
    margin: 0;
}

div.mpcrbm_transport_summary h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--rzp-text);
    margin: 0 0 16px 0;
}

.mpcrbm_transport_summary .book-items {
    background: #f8fafc;
    padding: 12px 16px;
    border-radius: var(--rzp-radius-sm);
    margin: 10px 0;
    border: 1px solid #f1f5f9;
}

.mpcrbm_transport_summary .total {
    background: linear-gradient(135deg, #0a4b78, #1d6fa5);
    color: #fff;
    padding: 14px 18px;
    border-radius: var(--rzp-radius-sm);
    margin: 12px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mpcrbm_transport_summary .total h6,
.mpcrbm_transport_summary .total h3 {
    margin: 0;
    color: #fff;
}

/* ── Booking Summary Cards ── */
.mpcrbm_booking_summary_description {
    display: flex;
    flex-wrap: wrap;
    gap: var(--rzp-gap);
    position: relative;
}

.mpcrbm_summary_show {
    flex: 1 1 180px;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: var(--rzp-radius-md);
    box-shadow: var(--rzp-shadow-sm);
    font-weight: 600;
    transition: border-color .2s;
}

.mpcrbm_summary_show:nth-of-type(4) { border: 2px solid var(--rzp-success); }
.mpcrbm_summary_show i { color: var(--rzp-theme); font-size: 18px; }
.mpcrbm_summary_show span { color: var(--rzp-muted); font-weight: 400; font-size: 12px; }
.mpcrbm_summary_show p:not(.wp_editor p) { font-weight: 700; color: var(--rzp-text); font-size: 13px; margin: 0; }

/* ── Summary title ── */
.mpcrbm_summary_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--rzp-pad-sm);
    color: var(--rzp-text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.mpcrbm_summary_title i { color: var(--rzp-theme); }

/* ================================================================
   EXTRA SERVICES
   ================================================================ */
.mpcrbm_extra_service_layout {
    background: #fff;
    border: var(--rzp-border);
    border-radius: var(--rzp-radius-lg);
    padding: var(--rzp-pad-lg);
    box-shadow: var(--rzp-shadow-sm);
    margin-bottom: var(--rzp-gap);
}

.mpcrbm_extra_service_layout_details {
    max-width: 100%;
    background: #fff;
    border: var(--rzp-border);
    border-radius: var(--rzp-radius-md);
    padding: 12px 16px;
    box-shadow: var(--rzp-shadow-sm);
    margin-bottom: var(--rzp-gap);
}

.mpcrbm .mpcrbm_extra_service .dLayout { border-radius: var(--rzp-radius-lg); background: #f7f9fc; }
div.mpcrbm .mpcrbm_extra_service h3 { margin: 0 0 14px 0; font-weight: 700; }

/* ── Price-Quantity boxes ── */
.price-quantity-box,
.mpcrbm-ex-quantity-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--rzp-gap);
}

.price-quantity-box .mpcrbm-price,
.mpcrbm-ex-quantity-box .mpcrbm-price {
    font-size: 1.2em;
    font-weight: 800;
    color: var(--rzp-text);
}

/* ================================================================
   NEXT BUTTON (inside tab flows)
   ================================================================ */
.mpcrbm_next_button {
    display: block !important;
    width: calc(100% - 40px) !important;
    max-width: 100% !important;
    padding: 14px 24px !important;
    margin: 16px 20px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: var(--rzp-radius-md) !important;
    background: var(--rzp-theme) !important;
    color: #fff !important;
    text-align: center;
    cursor: pointer;
    transition: all .25s ease;
    border: none !important;
    box-shadow: 0 4px 14px rgba(10,75,120,.25);
}

.mpcrbm_next_button:hover { background: #0d6efd !important; transform: translateY(-2px); }

/* Continue btn on car details */
.mpcrbm_car_details_continue_btn {
    width: 100%;
    background: var(--rzp-theme);
    color: #fff;
    padding: 13px 20px;
    border-radius: var(--rzp-radius-md);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin: 14px 0;
    border: none;
    transition: all .25s ease;
    box-shadow: 0 4px 14px rgba(10,75,120,.25);
}

.mpcrbm_car_details_continue_btn:hover { background: #0d6efd; transform: translateY(-1px); }

/* ================================================================
   PRICING RULES TOOLTIP
   ================================================================ */
.mpcrbm_price_hover_wrap { position: relative; display: inline-block; }

.mpcrbm_price_info {
    font-size: 12px;
    font-weight: 600;
    color: #2563eb;
    cursor: pointer;
    background: #e0e7ff;
    padding: 3px 10px;
    border-radius: 999px;
    transition: all .2s ease;
}

.mpcrbm_price_info:hover { background: #2563eb; color: #fff; }

.mpcrbm_display_pricing_rules {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 310px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: var(--rzp-radius-md);
    padding: 14px 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,.35);
    color: #e5e7eb;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px) scale(.98);
    transition: all .25s ease;
    z-index: 999;
}

.mpcrbm_price_hover_wrap:hover .mpcrbm_display_pricing_rules {
    opacity: 1; visibility: visible;
    transform: translateY(0) scale(1);
}

.mpcrbm_display_pricing_rules h4 { font-size: 12px; font-weight: 600; margin: 10px 0 6px; color: #93c5fd; }
.mpcrbm_display_pricing_rules h4:first-child { margin-top: 0; }
.mpcrbm_display_pricing_rules p  { font-size: 12px; background: #020617; padding: 8px 10px; border-radius: 8px; margin-bottom: 6px; }
.mpcrbm_display_pricing_rules ul { list-style: none; margin: 0; padding: 0; }
.mpcrbm_display_pricing_rules ul li { background: #020617; border-radius: 8px; padding: 6px 10px; margin-bottom: 5px; font-size: 12px; display: flex; justify-content: space-between; align-items: center; }
.mpcrbm_display_pricing_rules .increase { background: linear-gradient(135deg,#16a34a,#22c55e); color: #ecfdf5; padding: 2px 8px; border-radius: 999px; font-weight: 600; font-size: 11px; }
.mpcrbm_display_pricing_rules .decrease { background: linear-gradient(135deg,#dc2626,#f87171); color: #fff1f2; padding: 2px 8px; border-radius: 999px; font-weight: 600; font-size: 11px; }
.mpcrbm_display_pricing_rules::before { content: ""; position: absolute; top: -5px; right: 18px; width: 10px; height: 10px; background: #1e293b; transform: rotate(45deg); }

/* ================================================================
   LOAD MORE BUTTON
   ================================================================ */
.mpcrbm_search_result_load_more_holder { display: flex; justify-content: center; margin: 32px 0; }

.mpcrbm_load_more_btn {
    padding: 14px 44px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    border-radius: 999px;
    cursor: pointer;
    transition: all .35s ease;
    box-shadow: 0 8px 24px rgba(238,9,121,.35);
    border: none;
    position: relative;
    overflow: hidden;
}

.mpcrbm_load_more_btn:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(238,9,121,.45); }
.mpcrbm_load_more_btn:active { transform: translateY(0); }

/* ================================================================
   UTILITIES
   ================================================================ */
.mpcrbm_list            { gap: 14px; display: flex; justify-content: space-between; }
.mpcrbm_line_through    { text-decoration: line-through; }
.mpcrbm_textRight       { text-align: right; }
.mpcrbm_100_width       { width: 100%; }
.mpcrbm_mainSection     { margin-top: 12px; }
.mpcrbm_group           { margin: 20px 0 10px 0; }

.mpcrbm_booking_item_hidden { display: none !important; }
.geo-fence-no-transport     { display: none; }
div.mpcrbm_transport_summary, div.mpcrbm_extra_service { display: none; }
div.get_details_next_link   { display: none; }

.mpcrbm_location_icon_margin { color: var(--rzp-theme); margin: 5px !important; }

/* Feature icon colors */
.mpcrbm_feature_icon_color_1 { color: #0a4b78 !important; }
.mpcrbm_feature_icon_color_2 { color: #e67e22 !important; }
.mpcrbm_feature_icon_color_3 { color: #27ae60 !important; }
.mpcrbm_feature_icon_color_4 { color: #8e44ad !important; }
.mpcrbm_feature_icon_color   { color: #e67e22 !important; }

/* Duration */
.mpcrbm_duration-highlight { color: var(--rzp-success); border-radius: 12px; text-align: center; }
.mpcrbm_duration-days      { font-size: 14px; font-weight: 700; }
.mpcrbm_duration-label     { font-size: 11px; opacity: .9; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* Discount booking */
.mpcrbm_discount_booking { display: flex; flex-direction: column; gap: 8px; justify-content: flex-end; align-items: flex-end; width: auto; }
.mpcrbm_price_holder     { display: flex; justify-content: space-between; align-items: center; gap: 16px; }

/* WooCommerce price overrides */
.mpcrbm_booking_vehicle .woocommerce-Price-amount                             { font-size: 22px; }
.mpcrbm_booking_vehicle .mpcrbm_discount-info .woocommerce-Price-amount       { font-size: 12px !important; }
.mpcrbm_booking_vehicle .mpcrbm_price-breakdown .woocommerce-Price-amount     { font-size: 16px !important; }
.mpcrbm_booking_vehicle .mpcrbm_price-main .woocommerce-Price-amount          { font-size: 20px !important; }

/* WooCommerce overrides inside search area */
div.mpcrbm_transport_search_area .woocommerce-page span.woocommerce-input-wrapper,
div.mpcrbm_transport_search_area .woocommerce-page table span { display: initial; }
div.mpcrbm_transport_search_area .woocommerce-page label { margin: 0 0 4px 0; display: initial; }
div.mpcrbm_transport_search_area table th,
div.mpcrbm_transport_search_area table td { border: none; }

/* map area */
#mpcrbm_map_area { width: 100%; height: 100%; min-height: 240px; border-radius: var(--rzp-radius-md); }
div.mpcrbm_form_details_area #mpcrbm_map_area { min-height: 320px; }
div.mpcrbm_transport_search_area .mpcrbm_map_area { max-width: 60%; width: 60%; }
div.mpcrbm_form_details_area div.mpcrbm_map_area { max-width: 100%; width: 100%; }

/* booking item headings */
div.mpcrbm_booking_item h5 { color: var(--rzp-text); font-size: 18px; font-weight: 700; }
div.mpcrbm_booking_item h4 { color: var(--rzp-text); font-size: 18px; font-weight: 700; margin: 0; }

h2#mpcrbm_title_change { color: #fff; }

/* dFlex light */
.mpcrbm_dFlex_fdColumn_btLight { background: #f7f7fd; padding: var(--rzp-pad-sm) var(--rzp-pad-md); height: fit-content; }

/* Left icon in input */
div.mpcrbm_transport_search_area .mpcrbm_left_icon {
    position: absolute; left: 1px; bottom: 1px;
    width: 45px !important; font-size: 22px;
    background: #fff; color: #666;
    border-radius: 6px 0 0 6px; height: 46px; margin: 0 !important;
}

/* Discount info line-through */
.mpcrbm-discount-seasonal .mpcrbm_price-breakdown .amount { text-decoration: line-through; }

/* sticky on scroll panel */
div.mpcrbm_transport_search_area div.sticky_on_scroll {
    overflow: auto;
    border: var(--rzp-border);
    box-shadow: var(--rzp-shadow-sm);
    border-radius: var(--rzp-radius-lg);
}

.mprcbm_text { margin: 2px; }

.mpcrbm_location_checkbox { display: flex; flex-direction: column; }
.mpcrbm_pickup_drop_off_checkbox { display: flex; flex-direction: column; margin-right: 10px; min-width: 200px; }

div.mpcrbm .mpcrbm_car_details_container h3 { font-weight: 500; font-size: 18px; text-align: left; }

/* ================================================================
   RESPONSIVE ≤ 1200px
   ================================================================ */
@media (max-width: 1200px) {
    .mpcrbm-image-box { width: 180px; min-width: 180px; }
    div.mpcrbm_transport_search_area .mpcrbm_map_area { width: 100%; max-width: 100%; }
    div.mpcrbm_transport_search_area .mainSection { margin: 12px 0 0 0; }
    .mpcrbm_summary_show { flex: 1 1 45%; }
}

/* ================================================================
   RESPONSIVE ≤ 900px
   ================================================================ */
@media (max-width: 900px) {
    .mpcrbm_search_result_holder { flex-direction: column; }
    .mpcrbm_left_filter { width: 100%; min-width: unset; }
    .mpcrbm_main_content { width: 100%; }
    .mpcrbm_booking_vehicle { flex-direction: row; }
    .mpcrbm-image-box { width: 160px; min-width: 160px; height: 180px; }
}

/* ================================================================
   RESPONSIVE ≤ 768px
   ================================================================ */
@media (max-width: 768px) {
    .booking-header { flex-direction: column; gap: 10px; padding: 20px; text-align: center; }
    .header-content { flex-direction: column; }
    div.header-text h2 { font-size: 20px; }

    .mpcrbm_horizontal_date_time_input { flex: 1 1 100%; min-width: unset; }
    .mpcrbm_horizontal_search_form { flex-direction: column; }
    .mpcrbm_inline_search_form { flex-direction: column; }
    .mpcrbm_width_33 { width: 100%; }

    .mpcrbm_booking_vehicle { flex-direction: column; }
    .mpcrbm-image-box { width: 100%; min-width: unset; height: 200px; }
    .mpcrbm_booking_items {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        border-left: none;
        border-top: var(--rzp-border);
        width: 100%;
    }

    div.mpcrbm_transport_search_area div.mpcrbm_list_details { width: 100% !important; padding: var(--rzp-pad-sm) var(--rzp-pad-md); }

    .mpcrbm_summary_show { flex: 1 1 100%; }
    .mpcrbm_booking_summary_description { flex-direction: column; }

    .tabItemNext { padding: 14px 16px; flex: 1; }
    .tabItemNext .circleTitle { font-size: 11px !important; }

    .mpcrbm_discount_booking { flex-direction: row; justify-content: center; align-items: center; width: 100%; }
    .mpcrbm_car_specs_lists { width: 100%; }
    .mpcrbm_list { flex-direction: column; align-items: center; }
    .mpcrbm_list .mpcrbm_booking_items { flex-direction: row; justify-content: space-between; gap: 12px; align-items: center; }

    .mpcrbm_load_more_btn { width: 100%; text-align: center; padding: 14px; }
}

/* ================================================================
   RESPONSIVE ≤ 600px
   ================================================================ */
@media (max-width: 600px) {
    .tabItemNext .circleIcon { width: 32px !important; height: 32px !important; min-width: 32px !important; font-size: 13px !important; }
    .tabItemNext { padding: 10px 8px; }
    .tabItemNext .circleTitle { font-size: 10px !important; }
    .mpcrbm_search_holder { padding: var(--rzp-pad-sm); }
    .mpcrbm_car_spec { width: 100%; }
}
