/* =====================================================================
   redesign-rentcar.css  —  page-scoped (rent-a-car: cars + car_details)
   Loaded via @push('css') on rentCar cars/index & cars/single only.
   Loads AFTER style.css so it overrides. Everything namespaced under the
   page section (section.second_section / section.car_details) or the
   rent-car offcanvas scope (.sidebar_form.rentcar_offcanvas). No global
   element/reset selectors.
   ===================================================================== */

/* --- SEO heading kept but visually hidden (redesign shows only the h2) --- */
.redesign-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Cars listing: heading (left) + filter (right) --- */
section.second_section .second_wrapper form .form_heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

section.second_section .second_wrapper form .form_heading h2 {
    color: var(--hertz-black);
    font-family: "proximanova-semibold", "Poppins", sans-serif;
    font-size: 29px;
    font-weight: 600;
    line-height: 36px;
    margin: 0;
}

/* --- "About service" info card (redesign hertz_about) --- */
section.second_section .second_wrapper .hertz_about {
    border-radius: 12px;
    padding: 32px 24px;
    border: 1px solid #d9d9d9;
    margin-bottom: 32px;
}

section.second_section .second_wrapper .hertz_about h3 {
    margin: 0 0 8px 0;
    font-weight: 600;
    font-size: 20px;
    color: var(--hertz-black);
}

section.second_section .second_wrapper .hertz_about h3 span {
    font-weight: 600;
    font-size: 36px;
    color: var(--hertz-yellow);
}

section.second_section .second_wrapper .hertz_about p {
    font-family: "proximanova-regular", "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #141414;
    margin: 0;
}

@media (max-width: 768px) {
    section.second_section .second_wrapper .hertz_about {
        padding: 20px 16px;
    }
    section.second_section .second_wrapper .hertz_about h3 span {
        font-size: 28px;
    }
}

/* --- Cars listing: car-card spec grid — restore the redesign's flat
   .detail_item layout (6 items, 3 per row). Overrides the adapted
   detail_inner_item block in style.css. Scoped to the listing section
   ONLY, so the booking offcanvas card (.bron_wrapper #bronnes_car) that
   still uses detail_inner_item is left untouched.
   Values from frontend assets/css/style.css lines 16482-16509. --- */
section.second_section .second_wrapper .cars .car_item .car_details {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

section.second_section .second_wrapper .cars .car_item .car_details .detail_item,
section.second_section .second_wrapper .cars .car_item .car_details .detail_item:nth-child(3n + 1),
section.second_section .second_wrapper .cars .car_item .car_details .detail_item:nth-child(3n),
section.second_section .second_wrapper .cars .car_item .car_details .detail_item:nth-child(3n - 1) {
    width: calc((100% - 2 * 10px) / 3);
    max-width: none !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

section.second_section .second_wrapper .cars .car_item .car_details .detail_item .svg {
    width: 18px;
    height: 18px;
}

section.second_section .second_wrapper .cars .car_item .car_details .detail_item .text {
    width: calc((100% - 5px - 18px));
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #141414;
}

/* =====================================================================
   Rent-car booking — 4-OFFCANVAS redesign flow
   Ported from the redesign (hertz.org.az-frontend/pages/cars.html +
   assets/css/style.css) and NAMESPACED under .rentcar-booking /
   .rentcar-canvas so nothing leaks to other services or the shared
   Bootstrap offcanvas. No bare element / .container / global reset
   selectors. Loaded only on rent-car pages via redesign-rentcar.css.
   ===================================================================== */

/* Full-screen AJAX spinner overlay (kept above the offcanvas) */
.rentcar-booking .spinner-overlay.spinnerForm {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20000;
}

/* --- Offcanvas panel --- */
.rentcar-canvas.custom-offcanvas {
    width: 650px !important;
    max-width: 100%;
    background-color: #fff;
    box-shadow: -3px 0 15px rgba(0, 0, 0, 0.1);
}

.rentcar-canvas .offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 32px 20px 0;
}

.rentcar-canvas .offcanvas-header h5 {
    font-family: "proximanova-semibold", "Poppins", sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: var(--hertz-black, #141414);
    margin: 0;
}

.rentcar-canvas .custom-close {
    position: absolute;
    top: 450%;
    right: 102%;
    cursor: pointer;
    width: 45px;
    height: 45px;
    z-index: 1000;
    filter: brightness(1.5);
}

.rentcar-canvas .btn-close {
    border: 0;
    background-color: #f7f7f7;
    background-image: none;
    width: 21px;
    height: 21px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 7.11px;
    padding: 2px;
    opacity: 1;
}

.rentcar-canvas .btn-close svg {
    width: 17px;
    height: 17px;
}

.rentcar-canvas .offcanvas-body {
    padding: 24px;
    overflow-y: auto;
}

/* --- Stepper --- */
.rentcar-canvas .steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0 auto 30px;
    width: 80%;
}

.rentcar-canvas .steps::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 20px;
    right: 14px;
    height: 3px;
    background: #d6d6d6;
    z-index: 0;
}

.rentcar-canvas .steps::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 20px;
    height: 3px;
    background: #ffcc00;
    z-index: 0;
    width: var(--progress-width, 0);
    transition: width 0.3s ease;
}

.rentcar-canvas .step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rentcar-canvas .step-circle {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #d6d6d6;
    border-radius: 50%;
    background: #fff;
}

.rentcar-canvas .step-circle span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d9d9d9;
}

.rentcar-canvas .step.active .step-circle,
.rentcar-canvas .step.completed .step-circle {
    border-color: #ffcc00;
    box-shadow: 0 0 0 3px #ffeca8;
}

.rentcar-canvas .step.active .step-circle span,
.rentcar-canvas .step.completed .step-circle span {
    background: #ffcc00;
}

.rentcar-canvas .step-title {
    margin-top: 8px;
    color: #151515;
    font-size: 12px;
    text-align: center;
    line-height: 1;
}

/* --- Labels & fields --- */
.rentcar-canvas .form-label-modal,
.rentcar-canvas .form_group > .label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #141414;
    margin-bottom: 8px;
}

.rentcar-canvas .form_group {
    margin-bottom: 16px;
    position: relative;
}

.rentcar-canvas .canvas-modal-1 input,
.rentcar-canvas .canvas-modal-1 textarea,
.rentcar-canvas .canvas-modal-2 input[type="text"],
.rentcar-canvas .form_group input[type="text"],
.rentcar-canvas .form_group input[type="email"],
.rentcar-canvas .form_group input[type="tel"],
.rentcar-canvas .form_group textarea {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    border: 1px solid #d9d9d9;
    outline: none;
    border-radius: 8px;
    color: #222;
    height: 54px;
    padding: 0 16px;
    background: #fff;
    box-shadow: none;
    transition: border-color 0.3s ease;
}

.rentcar-canvas .form_group textarea {
    height: 110px;
    padding: 12px 16px;
}

.rentcar-canvas .canvas-modal-1 input:focus,
.rentcar-canvas .canvas-modal-1 textarea:focus,
.rentcar-canvas .form_group input:focus,
.rentcar-canvas .form_group textarea:focus {
    border-color: #ffd700;
}

.rentcar-canvas .is-h-invalid,
.rentcar-canvas .is-h-invalid input {
    border-color: #e96f6f !important;
}

/* Delivery / return address block */
.rentcar-canvas .destination_wrapper {
    position: relative;
}

.rentcar-canvas .destination_select {
    display: flex;
    align-items: center;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding-left: 14px;
    background: #fff;
}

.rentcar-canvas .destination_select .name {
    color: #141414;
    font-size: 15px;
    white-space: nowrap;
}

.rentcar-canvas .destination_select input {
    border: none !important;
    height: 52px !important;
    flex: 1;
}

.rentcar-canvas .destination_dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    z-index: 100;
    max-height: 220px;
    overflow-y: auto;
}

.rentcar-canvas .destination_dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rentcar-canvas .destination_dropdown ul li {
    padding: 11px 16px;
    cursor: pointer;
    font-size: 14px;
}

.rentcar-canvas .destination_dropdown ul li:hover {
    background: #f7f7f7;
}

/* Date + time row */
.rentcar-canvas .multi_form_group_wrapper {
    display: flex;
    gap: 16px;
}

.rentcar-canvas .multi_form_group_wrapper .form_group {
    flex: 1;
}

.rentcar-canvas .input-icon-wrapper {
    position: relative;
}

.rentcar-canvas .input-icon-wrapper .input-icon,
.rentcar-canvas .input-icon-wrapper .icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9b9b9b;
    pointer-events: none;
}

.rentcar-canvas .time_wrapper {
    position: relative;
    width: 100%;
}

.rentcar-canvas .time_select {
    position: relative;
}

.rentcar-canvas .time_select input {
    width: 100%;
    height: 54px;
    padding: 0 42px 0 16px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    cursor: pointer;
    background: #fff;
    color: #222;
}

.rentcar-canvas .time_select .icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.rentcar-canvas .time_dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    width: 100%;
    max-height: 190px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    z-index: 1000;
}

.rentcar-canvas .time_dropdown.active {
    display: block;
}

.rentcar-canvas .time_dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rentcar-canvas .time_dropdown .name {
    padding: 9px 20px;
    font-size: 15px;
    cursor: pointer;
}

.rentcar-canvas .time_dropdown .name:hover {
    background: #f5f5f5;
}

/* for-purpose (self / other) */
.rentcar-canvas .multi_filter_input {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.rentcar-canvas .multi_filter_input .filter_input {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding: 12px 14px;
    cursor: pointer;
}

.rentcar-canvas .multi_filter_input .filter_input .for_radio {
    margin: 0;
    cursor: pointer;
    font-size: 14px;
    color: #141414;
}

/* Citizenship (reuses shared .country_wrapper hooks, styled to redesign) */
.rentcar-canvas .country_wrapper {
    position: relative;
}

.rentcar-canvas .country_wrapper .country_select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding: 0 16px;
    background: #fff;
    cursor: pointer;
}

.rentcar-canvas .country_wrapper .country_select .country {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rentcar-canvas .country_wrapper .country_select .country .flag img {
    width: 22px;
    height: auto;
    border-radius: 2px;
}

.rentcar-canvas .country_wrapper .country_dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    z-index: 100;
    max-height: 220px;
    overflow-y: auto;
}

.rentcar-canvas .country_wrapper .country_dropdown.active {
    display: block;
}

.rentcar-canvas .country_wrapper .country_dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rentcar-canvas .country_wrapper .country_dropdown ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
}

.rentcar-canvas .country_wrapper .country_dropdown ul li:hover {
    background: #f7f7f7;
}

.rentcar-canvas .country_wrapper .country_dropdown ul li .flag img {
    width: 22px;
    height: auto;
}

/* age-over-19 check */
.rentcar-canvas .age-check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding: 14px 16px;
    margin-top: 4px;
}

.rentcar-canvas .age-check-row label {
    margin: 0;
    font-size: 14px;
    color: #141414;
    cursor: pointer;
}

/* --- Footer --- */
.rentcar-canvas .offcanvas-footer {
    border-top: 1px solid #d6d6d6;
    padding-top: 12px;
    margin: 0 24px;
}

.rentcar-canvas .modal-two-footer {
    padding-right: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
}

.rentcar-canvas .price-row,
.rentcar-canvas .price-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rentcar-canvas .price-row {
    margin-bottom: 8px;
}

.rentcar-canvas .price-row small,
.rentcar-canvas .price-row strong {
    color: #141414;
    font-size: 18px;
    font-weight: 400;
}

.rentcar-canvas .price-row.bonus strong {
    color: #ffbd00;
}

.rentcar-canvas .price-info-row {
    margin-bottom: 16px;
}

.rentcar-canvas .price-info-row small {
    color: #6c757d;
    font-size: 13px;
}

.rentcar-canvas .price-info-row .info-icon-trigger {
    cursor: pointer;
    color: #9b9b9b;
}

.rentcar-canvas .continue-btn,
.rentcar-canvas .btn-warning {
    background: var(--hertz-yellow, #ffcc00);
    color: #141414;
    border: none;
    border-radius: 8px;
    font-family: "proximanova-semibold", "Poppins", sans-serif;
    font-weight: 600;
    padding: 13px 20px;
    width: 100%;
}

.rentcar-canvas .personal_buttons {
    display: flex;
    gap: 12px;
}

.rentcar-canvas .personal_buttons a,
.rentcar-canvas .go-back-btn {
    width: 50%;
    background: #f7f7f7;
    padding: 12px;
    border-radius: 8px;
    border: none;
    color: #141414;
    text-align: center;
    cursor: pointer;
}

.rentcar-canvas .personal_buttons button {
    width: 50%;
}

.rentcar-canvas .modal-buttons {
    width: 100%;
    gap: 12px;
}

.rentcar-canvas .modal-buttons .btn {
    min-height: 42px;
}

/* --- Booking details (offcanvas 3) --- */
.rentcar-canvas .modal-two-content {
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    padding: 20px 0;
    margin-bottom: 8px;
}

.rentcar-canvas .rentcar_details_summary .top_wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.rentcar-canvas .rentcar_details_summary .car_logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rentcar-canvas .rentcar_details_summary .car_logo .picture img {
    width: 42px;
    height: auto;
}

.rentcar-canvas .rentcar_details_summary .car_details {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.rentcar-canvas .rentcar_details_summary .car_picture img {
    width: 160px;
    height: auto;
}

.rentcar-canvas .rentcar_details_summary .car_info .detail_item {
    display: flex;
    gap: 18px;
    margin-bottom: 8px;
}

.rentcar-canvas .rentcar_details_summary .detail_inner_item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #333;
}

.rentcar-canvas .rentcar_details_summary .bottom_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.rentcar-canvas .rentcar_details_summary .bottom_item h3 {
    color: #828282;
    font-size: 13px;
    font-weight: 400;
    margin: 0 0 2px;
}

.rentcar-canvas .rentcar_details_summary .bottom_item p {
    color: #222;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.rentcar-canvas .promo-section .form-label {
    color: #222;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.rentcar-canvas .promo-input {
    color: #222;
}

.rentcar-canvas .apply-promo {
    min-width: 92px;
    border-radius: 8px;
}

.rentcar-canvas #applyPromo.btn-warning {
    background: var(--hertz-yellow, #ffcc00);
    border-color: var(--hertz-yellow, #ffcc00);
    color: #141414;
    width: auto;
}

.rentcar-canvas #bookingTotal {
    display: flex;
    gap: 8px;
}

.rentcar-canvas #oldPrice {
    color: #999;
    text-decoration: line-through;
}

.rentcar-canvas #newPrice {
    color: #141414;
}

/* =====================================================================
   Payment (offcanvas 4) — the injected server checkout fragment,
   restyled to the redesign payment-card look.
   ===================================================================== */
.rentcar-canvas .rentcar_pay_body .header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #141414;
    margin-bottom: 4px;
}

.rentcar-canvas .rentcar_pay_body .header p {
    color: #737373;
    font-size: 14px;
    margin-bottom: 16px;
}

.rentcar-canvas .rentcar_pay_body .close_apply_order {
    display: none;
}

.rentcar-canvas .rentcar_pay_body .apply_payment_methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rentcar-canvas .rentcar_pay_body .apply_payment_methods.azericard-inner {
    margin-top: 12px;
}

.rentcar-canvas .rentcar_pay_body .payment_method {
    position: relative;
}

.rentcar-canvas .rentcar_pay_body .payment_method label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 15px 20px;
    margin: 0;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.rentcar-canvas .rentcar_pay_body .payment_method.active label {
    border-color: #ffcc00;
}

.rentcar-canvas .rentcar_pay_body .payment_method label .context .title {
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
}

.rentcar-canvas .rentcar_pay_body .payment_method label .context .description {
    font-size: 12px;
    color: #828282;
    margin-top: 2px;
}

.rentcar-canvas .rentcar_pay_body .payment_method label .radio {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
}

.rentcar-canvas .rentcar_pay_body .payment_method label .radio.active {
    border-color: #ffcc00;
}

.rentcar-canvas .rentcar_pay_body .payment_method label .radio .dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    background: #ffcc00;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.rentcar-canvas .rentcar_pay_body .payment_method label .radio .dot.active {
    opacity: 1;
}

.rentcar-canvas .rentcar_pay_body .payment_method input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rentcar-canvas .rentcar_pay_body .azericard_installments {
    padding: 20px;
    border: 1px solid #d9d9d9;
    border-radius: 14px;
    margin-top: 12px;
}

.rentcar-canvas .rentcar_pay_body .azericard_installments.d-none {
    display: none;
}

.rentcar-canvas .rentcar_pay_body .azericard_installments .title {
    font-size: 15px;
    color: #141413;
    margin-bottom: 14px;
}

.rentcar-canvas .rentcar_pay_body .apply_payment_method_details {
    display: none;
    margin-top: 16px;
}

.rentcar-canvas .rentcar_pay_body .apply_payment_method_details.active {
    display: block;
}

.rentcar-canvas .rentcar_pay_body .apply_payment_method_details > div {
    display: none;
}

.rentcar-canvas .rentcar_pay_body .apply_payment_method_details > div.active {
    display: block;
}

.rentcar-canvas .rentcar_pay_body .halfprice {
    display: none;
    margin-top: 12px;
}

.rentcar-canvas .rentcar_pay_body .halfprice.active {
    display: block;
}

.rentcar-canvas .rentcar_pay_body .halfprice .inner_payment_method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.rentcar-canvas .rentcar_pay_body .halfprice .input {
    position: relative;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fbfbfb;
    display: flex;
    align-items: center;
    padding: 4px 10px;
}

.rentcar-canvas .rentcar_pay_body .halfprice .input input {
    border: none;
    outline: none;
    background: transparent;
    width: 90px;
    height: 40px;
    color: #6f7072;
}

.rentcar-canvas .rentcar_pay_body .azalmiles_details,
.rentcar-canvas .rentcar_pay_body .azalmiles {
    display: none;
    margin-top: 12px;
}

.rentcar-canvas .rentcar_pay_body .azalmiles_details.active,
.rentcar-canvas .rentcar_pay_body .azalmiles.active {
    display: block;
}

.rentcar-canvas .rentcar_pay_body .footer {
    margin-top: 20px;
    border-top: 1px solid #d6d6d6;
    padding-top: 14px;
}

.rentcar-canvas .rentcar_pay_body .footer .details .price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.rentcar-canvas .rentcar_pay_body .footer .details .price .total {
    color: #141414;
    font-weight: 500;
}

.rentcar-canvas .rentcar_pay_body .footer .details .price .total.bonus {
    color: #ffbd00;
}

.rentcar-canvas .rentcar_pay_body .footer .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 8px 0 14px;
}

.rentcar-canvas .rentcar_pay_body .footer .info .text {
    font-size: 12px;
    color: #6c757d;
}

.rentcar-canvas .rentcar_pay_body .apply_order_button {
    background: #ffcc00;
    color: #141414;
    border: none;
    border-radius: 8px;
    width: 100%;
    padding: 13px;
    font-weight: 600;
    cursor: pointer;
}

.rentcar-canvas .rentcar_pay_body .small_info {
    display: none;
}

.rentcar-canvas .rentcar_pay_body .info .icon {
    color: #9b9b9b;
    cursor: pointer;
}

/* --- Responsive --- */
@media (max-width: 700px) {
    .rentcar-canvas.custom-offcanvas {
        width: 100% !important;
    }
    .rentcar-canvas .steps {
        width: 100%;
    }
    .rentcar-canvas .step-title {
        font-size: 10px;
    }
    .rentcar-canvas .rentcar_details_summary .bottom_wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .rentcar-canvas .custom-close {
        display: none !important;
    }
    .rentcar-canvas .btn-close {
        display: flex;
    }
}

/* Total-bonus footer row only shows when a bonus is returned (matches original) */
.rentcar-canvas .price-row.bonus {
    display: none;
}

.rentcar-canvas .price-row.bonus.active {
    display: flex;
}

/* Payment offcanvas "go back" affordance */
.rentcar-canvas .pay-back-row {
    margin-top: 14px;
    text-align: center;
}

.rentcar-canvas .pay-back-row .go-back-payment {
    display: inline-block;
    background: #f7f7f7;
    color: #141414;
    padding: 12px 44px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
}

.offcanvas-backdrop.show {
    background-color: #000 !important;
    opacity: 0.8 !important;
    z-index: 1040;
}
