/* product_detail.css */

.product-configurator {
    background-color: #f8f8f8;
    min-height: calc(100vh - 80px);
    /* Adjust based on header height */
    display: flex;
}

.main_container.configurator-container {
    display: flex;
    width: 100%;
    margin-top: 20px;
}

/* Visualizer Section */
.visualizer-section {
    flex: 1;
    position: sticky;
    top: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#new-test-geely-configurator button.icon-btn:hover {
    background-color: unset;
    border: 0px;
}

#new-test-geely-configurator button.icon-btn:active,
#new-test-geely-configurator button.icon-btn:focus {
    background: none;
    border: 0;
    outline: none;
    box-shadow: none;
}

.visualizer-top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    /* position: absolute;
    top: 0;
    left: 0;
    width: 100%; */
}

.toggle-buttons {
    display: flex;
    border: 1px solid #d2d2d2;
    border-radius: 8px;
    overflow: hidden;
    /*margin-bottom: 30px;*/
}

.toggle-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    min-width: 120px;
}

.toggle-btn.is-active {
    background: #000;
    color: #fff;
    border-color: #000;
    border-radius: 8px;
}

.toggle-btn:hover,
.toggle-btn:focus,
.toggle-btn:active {
    background: #fff;
    border: none;
    color: #000;
}

.toggle-btn.is-active:hover,
.toggle-btn.is-active:focus,
.toggle-btn.is-active:active {
    background: #000;
    color: #fff;
}




.action-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 10px;
}

.action-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
}

.icon-btn:hover svg {
    fill: #000000;
}

.car-image-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
    /* Prevent native image drag */
}

.car-image-container.is-dragging {
    cursor: grabbing;
}

.car-image-container p {
    font-size: 12px;
    background: #f8f8f8;
    text-align: center;
    padding: 20px;
    color: #757575;
}

.car-image-container img {
    max-width: 100%;
    height: auto;
    pointer-events: none;
    /* Ensures mouse events go to container */
}

.spin-control {
    padding-bottom: 20px;
    pointer-events: none;
    text-align: center;
    padding-top: 0px;
}

.color-btn.ntg-color-oos:after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 120%;
    height: 3px;
    background-color: red;
    transform: translateY(-50%) rotate(-45deg);
    z-index: 2;
}

/* Options Sidebar */
.options-sidebar {
    width: 400px;
    background-color: #F5F2EF;
    border-radius: 8px;
}

/*.sidebar-content {
    overflow-y: auto;
}*/
.first-part {
    top: 0;
    overflow-y: auto;
    background-color: #F5F2EF;
    z-index: 11;
}

.sidebar-footer {
    padding: 10px 20px;
    border-top: 1px solid #eee;
    background: #fff;
    box-shadow: 0px -1px 7px 0px #00000012;
    border: 1px solid #0000001A;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    overflow-y: auto;
    z-index: 11;
}

.sidebar-footer .btn-primary,
.sidebar-footer .btn-secondary {
    padding: 12px 25px;
}

.product-brand {
    padding: 40px 20px 40px 20px;
    text-align: center;
}

.bank-selector-group select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F5F2EF;
    border: 1px solid #D4BEA8;
    border-radius: 4px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: auto;
}

.accessory-card.active {
    border: 2px solid rgba(0, 0, 0, 0.5);
}

.accordion-header span.ntg-required-badge {
    color: #fff;
    padding: 5px;
}

.product-brand img {
    max-width: 200px;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 40px;
    padding-block: 15px;
    background-color: rgba(255, 253, 251, 0.85);
}

.spec-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.modal-popup.modal-slide._inner-scroll._show.share .modal-inner-wrap {
    max-width: 450px;
    padding: 50px 30px 40px;
}

.spec-item:last-child {
    border-right: none;
}

.spec-value {
    font-size: 16px;
    line-height: 21px;
    color: #000;
    font-weight: 500;
}

.spec-unit {
    font-size: 14px;
    line-height: 18px;
    color: #676E76;
}

.spec-label {
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    color: #676E76;
}

.option-group {
    padding-inline: 20px;
    margin-bottom: 40px;
}

.option-title {
    font-size: 17px;
    line-height: 21px;
    padding-bottom: 20px;
}

.category-tabs {
    display: flex;
    background: #ffffff;
    border: 1px solid #d2d2d2;
    border-radius: 5px;
}

.category-tabs .tab {
    flex: 1;
    padding: 10px 30px;
    border: none;
    background: none;
    font-size: 15px;
    line-height: 17px;
    cursor: pointer;
}

.category-tabs .tab.active {
    background: #000;
    color: #fff;
    border-radius: 5px;
}

.model-list {
    margin-bottom: 40px;
    padding-inline: 20px;
}

.model-item {
    padding: 20px;
    border: 1.5px solid #E0D8D0;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.3s ease;
    cursor: pointer;
}

.model-item:last-child {
    margin-bottom: 0;
}


.model-item:hover,
.model-item.active {
    background-color: #ffffff;
    border: 1.5px solid #D4BEA8;
}

.model-info h4 {
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    padding-bottom: 0px;
    font-family: 'Inter';
}

.model-info p {
    font-size: 13px;
    line-height: 16px;
    color: #000000;
}

.model-info-link {
    font-size: 14px;
    line-height: 16px;
    color: #1082E4;
}

.model-price {
    text-align: right;
}

.ntg-configurables .model-price {
    min-width: 100px;
}

.vat-tag {
    font-size: 10px;
    line-height: 16px;
    color: #424242;
    display: block;
    padding-bottom: 10px;
}

.price-val {
    font-size: 15px;
    line-height: 16px;
    color: #000000;
    font-weight: 700;
}

.help-box {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    background-color: #E0D8D0;
    margin-inline: 20px;
}

.help-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;

}

.help-header span {
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
}

.help-box p {
    font-size: 14px;
    line-height: 21px;
    color: #000000;
}

.variant.option-group {
    border: 1px solid #E0D8D0;
    padding: 20px;
    margin-inline: 20px;
    border-radius: 8px;
}

.color-options {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    position: relative;
}

.color-btn {
    width: 80px;
    height: 80px;
    border-radius: 3px;
    cursor: pointer;
    border: 4px solid #fff;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 0 1px #eee;
    transition: all 0.3s ease;
}

.color-btn.active {
    box-shadow: 0 0 0 3px #9fb2a4;
    /* Premium selection frame from reference */
}

.selection-name {
    font-size: 14px;
    line-height: 24px;
    color: #000000;
    display: none;
    position: absolute;
    bottom: -32px;
    left: 0;
}

.color-btn.active+.selection-name {
    display: block;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 15px 20px 10px 20px;
    border-top: 1px solid #eee;
    background: #fff;
    box-shadow: 0px -1px 7px 0px #00000012;
    border: 1px solid #0000001A;
}

.sidebar-button-group {
    display: flex;
    gap: 12px;
    width: 100%;
}

.sidebar-button-group .btn-secondary,
.sidebar-button-group .btn-primary {
    flex: 1;
    padding: 12px 10px;
    font-size: 18px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: baseline;
    gap: 5px;
}

.total-price,
.pay-now {
    flex: 1;
    border-right: 1px solid #e0d8d0;
}

.summary-details .label {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: #676E76;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    font-family: 'Geely';
}

.summary-details .value-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-details .total-price .price-val {
    font-size: 16px;
    font-weight: 600;
    color: #424242;
}

.summary-details .pay-now {
    text-align: right;
}

.summary-details .pay-now .value-row {
    justify-content: flex-end;
}

.summary-details .pay-now .price-val {
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

.vat-note {
    font-size: 11px;
    color: #676E76;
    margin-top: 5px;
    display: block;
}

/* Accordion Styles for Accessories */
.accordion-item {
    border-bottom: 1px solid #d2d2d2;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.accordion-item .accordion-group-description {
    padding-top: 10px;
    font-size: 12px;
    line-height: 18px;
}

.accordion-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.accordion-header {
    /* padding: 15px 0; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}

.accordion-header span {
    color: #000000;
    padding-inline: 5px;
    padding-bottom: 5px;
    padding-inline: 20px;
    padding-bottom: 0px;
    padding-left: 0;
}

.accordion-content {
    display: none;
    margin-top: 15px;

}

.option-group .accordion-content {
    display: block;
}

.accordion-header svg {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

.price-summary-accordion .accordion-header svg {
    transform: rotate(0deg) !important;
}

.price-summary-accordion .accordion-header svg.rotate {
    transform: rotate(180deg) !important;
}

/*#viewer360{min-height: calc(-300px + 100vh);}*/
#viewer360 .no-gallery {
    padding-top: 25px;
}

.accessory-card {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #FFFDFB;
    border-radius: 8px;
    border: 1px solid rgba(134, 134, 139, 0.3);
    margin-bottom: 20px;
}

/*
.accessory-card:last-child {
    border-bottom: none;
}*/

.accessory-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0px;
    flex-wrap: wrap;
}

.accessory-info .model-info {
    max-width: 70%;
}

.accessory-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.accessory-subtitle {
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
}

.accessory-link {
    font-size: 16px;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.accessory-link:hover {
    text-decoration: underline;
}

.accessory-images {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.accessory-img-link {
    display: block;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 5px;
    transition: all 0.3s ease;
}

.accessory-img-link.active {
    border: 2px solid #D4BEA8;
}

.accessory-img-link img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    padding: 10px;
}

/* Payment Type Tabs */
.payment_block {
    background-color: #ffffff;
    border: 1px solid #E0D8D0;
    border-radius: 8px;
    padding: 20px;
}

.payment-tabs {
    display: flex;
    border: 1px solid #d2d2d2;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.payment-tabs button {
    flex: 1;
    padding: 12px;
    border: none;
    background: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.payment-tabs button.active {
    background: #000;
    color: #fff;
    border-radius: 8px;
}

.check-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
}

.check-option:last-of-type {
    border-bottom: none;
    padding-bottom: 0px;
}

.check-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 18px;
    line-height: 21px;
    font-weight: 600;
    color: #000000;
}

/* Custom Checkbox */
.check-option input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background-color: #000;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.check-option input[type="checkbox"]:checked::after {
    content: '';
    width: 10px;
    height: 5px;
    border-left: 2.5px solid #fff;
    border-bottom: 2.5px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: 6px;
}

.option-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
    padding-bottom: 10px;
}

.option-price-row .price-val {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

.option-vat {
    font-size: 10px;
    line-height: 16px;
    color: #424242;
    display: block;
}

.payment_text {
    font-size: 14px;
    color: #000000;
    line-height: 22px;
    padding-bottom: 25px;
}

.deposit-details {
    display: none;
    margin-top: 15px;
}

.deposit-details.active {
    display: block;
}

.deposit-input-row {
    background-color: #E0D8D0;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    border: 1px solid #D4BEA8;
}

.deposit-amount-input {
    flex: 1;
    background-color: #F5F2EF;
    border: 1px solid #D4BEA8;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.min-deposit-text {
    font-size: 14px;
    line-height: 24px;
    color: #000;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.min-deposit-text span {
    font-weight: 600;
    color: #000000;
}

.info-box {
    background-color: #F4F2F1;
    border-radius: 4px;
    padding: 15px;
    font-size: 13px;
    line-height: 18px;
    color: #000000;
}

.info-box img {
    width: 14px;
    display: inline-block;
    vertical-align: middle;
}

/* Finance Content Styles */
.payment-tab-content {
    display: none;
}

.payment-tab-content.active {
    display: block;
}

.finance-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 21px;
    padding-bottom: 25px;
    color: #000000;
    font-family: 'Inter';
}

.fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 21px;
    font-weight: 600;
}

.fee-row span {
    font-size: 16px;
    line-height: 21px;
    font-weight: 600;
    color: #000000;
}

.finance-desc {
    font-size: 14px;
    line-height: 22px;
    color: #000000;
    padding-bottom: 25px;
}

.bank-selector-group {
    margin-bottom: 30px;
}

.bank-selector-group label {
    display: block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    padding-bottom: 12px;
    color: #000;
}

.custom-select-container {
    position: relative;
    width: 100%;
}

.custom-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F5F2EF;
    border: 1px solid #D4BEA8;
    border-radius: 4px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-select .selected-option {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-select .bank-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.custom-select span {
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.custom-select .arrow {
    width: 14px;
    transition: transform 0.3s ease;
}

.custom-select.active .arrow {
    transform: rotate(180deg);
}

.select-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #D4BEA8;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
    max-height: 250px;
    overflow-y: auto;
}

.select-options.active {
    display: block;
}

.select-options .option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.select-options .option img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.select-options .option:hover {
    background-color: #F5F2EF;
}

.select-options .option span {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.slider-group {
    margin-bottom: 25px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
}

.slider-header span {
    font-size: 16px;
    line-height: 21px;
    font-weight: 600;
    color: #000000;
}

.slider-header .value {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
}

.slider-header .value img {
    width: 16px;
}

.finance-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #E1D9D1;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    margin-bottom: 25px;
}

.finance-slider:last-child {
    margin-bottom: 0;
}

/* Chrome, Safari, Opera and Edge Chromium */
.finance-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: #000;
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Firefox */
.finance-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #000;
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    border: 3px solid #fff;
}

.finance-slider::-moz-range-progress {
    background-color: #000;
    height: 8px;
    border-radius: 10px 0 0 10px;
}

.finance-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.summary-row span {
    font-size: 16px;
    line-height: 21px;
    color: #000000;
    max-width: 70%;
}

.summary-row .val {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
}

.summary-row .val.semi-bold {
    font-weight: 800;
    font-size: 18px;
}

/*.summary-row img {
    width: 16px;
}*/



/* Sidebar Summary Styles (Migrated from product_detail_summary.css) */

.summary-sidebar {
    padding: 24px;
    background-color: #F5F2EF;
    /* Matching the sidebar background in image */
    border-radius: 8px;
}

.summary-block {
    margin-bottom: 40px;
    border: 1px solid #E0D8D0;
    border-radius: 12px;
    padding: 20px;
    margin-inline: 20px;
}

.summary-block-title {
    font-size: 17px;
    line-height: 28px;
    padding-bottom: 20px;
}

.new-address-wrapper .btn-add-secondary svg {
    transform: rotate(180deg);
}

.new-address-wrapper .btn-add-secondary.rotate svg {
    transform: rotate(0deg);
}

/* Card Style */
.summary-card {
    background: #fff;
    border: 1.5px solid #E0D8D0;
    /* Default border */
    border-radius: 8px;
    padding: 20px;
    position: relative;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: block;
    width: 100%;
}

.summary-card input[type="radio"] {
    display: none;
}

.summary-card.is-selected {
    border-color: #D4BEA8;
    /* Tan border when selected */
}

.summary-card .selection-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    background-color: #E0D8D0;
    /* Light background for unselected */
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.summary-card.is-selected .selection-indicator {
    background-color: #000;
    /* Black background when selected */
}

.summary-card.is-selected .selection-indicator:after {
    opacity: 1;
}

.summary-card .selection-indicator::after {
    content: '';
    width: 8px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: -2px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.summary-card .card-header-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0px;
    font-size: 15px;
    line-height: 21px;
    color: #000;
}

.summary-card .billingaddress {
    margin-top: 20px;
}

.summary-card .square-check {
    width: 20px;
    height: 20px;
    background-color: #000;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.summary-card .square-check::after {
    content: '';
    width: 8px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: -2px;
}

.summary-card .user-name {
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    padding-bottom: 12px;
    display: block;
    color: #000;
}

.summary-card .address-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    display: block;
    margin-bottom: 8px;
}

.summary-card .phone-text {
    font-size: 16px;
    color: #333;
    display: block;
}

.btn-add-secondary {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    border: 1px solid rgba(134, 134, 139, 0.3);
    border-radius: 8px;
    color: #0076FA;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-add-secondary:hover {
    background-color: #f0f0f0;
}

/* New Address Form Styles */
.new-address-wrapper {
    border: 1px solid rgba(134, 134, 139, 0.3);
    border-radius: 8px;
    margin-top: 10px;
    background: transparent;
    overflow: hidden;
}

.new-address-wrapper .btn-add-secondary {
    border: none;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.new-address-form-container {
    padding: 0 15px 15px 15px;
}

.method-selector input {
    display: none;
}

.btn-ship-here {
    width: 100%;
    background-color: transparent;
    border: 1px solid #000;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    padding: 15px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-ship-here:hover {
    background-color: #000;
    color: #fff;
}

/* Method Selector */
.method-selector {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.method-option {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
}

.method-option .square-check {
    width: 20px;
    height: 20px;
    border: 1.5px solid #000;
    border-radius: 3px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.method-option input:checked+.square-check {
    background-color: #000;
}

.method-option .square-check::after {
    content: '';
    width: 8px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: -2px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.ntg-fme-map .map+div {
    display: inline-flex;
    gap: 8px;
}

.ntg-fme-map .map+div span img {
    width: 16px !important;
}

.ntg-fme-map .map+div p {
    font-size: 12px;
    line-height: 18px !important;
}

/* Google Places autocomplete dropdown */
.pac-container {
    z-index: 999999 !important;
}

.payment-status-card input,
.summary-card .card-header-checkbox input {
    display: none;
}

.summary-card .card-header-checkbox input:checked+.square-check {
    background-color: #000;
}

.summary-card .card-header-checkbox .square-check {
    background-color: unset;
    border: 1px solid #000;
}







.summary-block .ntg-fme-shipping-extras label,
.summary-block .ntg-fme-shipping-extras .ntg-fme-hint {
    display: block;
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
    padding-bottom: 10px;
    color: rgba(0, 0, 0, 0.8);
}

.summary-block .ntg-fme-shipping-extras select,
#fmehomedelivery_address {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    box-sizing: border-box;
    height: auto;
    padding-right: 35px;
}

.summary-block .ntg-fme-shipping-extras #track_me {
    background: #000;
    border: #000;
}

.summary-block .ntg-fme-shipping-extras #track_me span {
    font-size: 14px;
    color: #fff;
    line-height: 32px;
}



.method-option input:checked+.square-check::after {
    opacity: 1;
}

.method-alert {
    background-color: #F4F2F1;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.method-alert .alert-icon {
    flex-shrink: 0;
    width: 24px;
    color: #AEAEB2;
}

.method-alert .alert-text {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

/* Payment Status */
.payment-status-card {
    background: #fff;
    border: 1.5px solid #D4BEA8;
    /* Selected state */
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
}

.payment-status-card .square-check {
    width: 20px;
    height: 20px;
    background-color: #E0D8D0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.payment-status-card .square-check::after {
    content: '';
    width: 8px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: -2px;
    opacity: 0;
}

.payment-status-card.is-selected .square-check {
    background: #000;
}

.payment-status-card.is-selected .square-check::after {
    opacity: 1
}

/* Price Summary Accordion */
.price-summary-accordion {
    margin-top: 40px;
    background-color: #F4F2F1;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #E0D8D0;
    margin-inline: 20px;
    margin-bottom: 40px;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    /* padding-bottom: 20px; */
}

.accordion-header h3 {
    font-size: 17px;
    line-height: 20px;
}

.accordion-header svg {
    transition: transform 0.3s ease;
}

.accordion-header svg.rotate {
    transform: rotate(0deg) !important;
}

.page-layout-1column .column.main {
    padding: 0px;
}

.accordion-body {
    /*display: none;*/
    padding-top: 15px;
}

.summary-divider {
    border-top: 1px solid #d2d2d2;
    margin: 15px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.summary-row.vertical {
    flex-direction: column;
    align-items: flex-start;
}

.summary-label {
    font-size: 16px;
    line-height: 21px;
    font-weight: 600;
    color: #000;
    padding-bottom: 7px;
}

.summary-value {
    font-size: 16px;
    line-height: 21px;
    color: #000;
}

.summary-row.subtotal {
    margin-top: 20px;
    font-weight: 700;
}

.summary-row.total {
    margin-top: 25px;
    font-size: 18px;
}

.summary-price {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
}

/*.summary-price img {
    height: 14px;
}*/

.summary-row.total .summary-price {
    font-size: 20px;
}

/*
.summary-row.total .summary-price img {
    height: 16px;
}*/

.included-tag {
    font-size: 14px;
    color: #333;
}

.btn-primary-summary {
    width: 100%;
    height: 50px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-primary-summary:hover {
    opacity: 0.8;
}

body.modal-open {
    overflow: hidden;
}

/* Registered Owner Details Section */
.owner-details-accordion {
    margin-top: 15px;
}

.owner-details-accordion h3 {
    text-transform: uppercase;
    font-size: 18px;
}

.owner-form-group {
    margin-bottom: 20px;
}

.owner-form-group-lg {
    margin-bottom: 30px;
}

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

.owner-label {
    display: block;
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
    padding-bottom: 10px;
    color: rgba(0, 0, 0, 0.8);
}

.required-star {
    color: #E3000F;
}

.ntg-checkout-sidebar .owner-input {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    box-sizing: border-box;
    height: auto;
    color: #000 !important;
}

.owner-input.date-uppercase {
    text-transform: uppercase;
}

.owner-select-wrapper {
    position: relative;
}

.owner-select {
    width: 100%;
    border: 1px solid #EBEBEB;
    padding: 15px;
    border-radius: 4px;
    appearance: none;
    background-color: #fff;
    font-size: 14px;
    box-sizing: border-box;
    height: auto;
    color: #000;
}

.owner-form-group [data-role="upload-file-name"] {
    font-size: 12px;
    color: grey;
    padding-top: 5px;
}

.owner-select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.file-upload-wrapper {
    display: flex;
    border: 1px solid #EBEBEB;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.file-upload-input {
    flex: 1;
    border: none;
    padding: 15px;
    outline: none;
    background: transparent;
    font-size: 14px;
}

.file-upload-btn {
    background: #E0D8D0;
    padding: 0 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owner-sub-text {
    display: block;
    font-size: 12px;
    color: #000;
    margin-top: 5px;
}

.owner-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.owner-form-group .owner-checkbox {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    accent-color: #000;
    flex-shrink: 0;
    cursor: pointer;
}

.owner-checkbox-text {
    font-size: 15px;
    color: #000000;
    line-height: 21px;
}

/* Features Modal Styles */
.features-modal {
    max-width: 790px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.ntg_features_popup .features-modal .modal-header {
    margin: 0;
    padding: 25px !important;
    display: block !important;
}

.modal-popup.ntg_features_popup .modal-inner-wrap {
    padding: 0px;
    max-width: 790px !important;
}

.model-headerr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}

.fme-category-compare-modal.modal-popup .modal-inner-wrap {
    max-width: 790px !important;
}

.features-modal .modal-header h2 {
    font-size: 24px;
}

.features-modal-content {
    overflow-y: auto;
    padding-inline: 25px;
    padding-bottom: 25px;
}

.features-modal-content::-webkit-scrollbar {
    width: 4px;
}

.features-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.features-modal-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

.features-compare-links {
    display: flex;
    justify-content: space-between;
    padding-bottom: 25px;
}

.compare-link {
    font-size: 16px;
    line-height: 21px;
    color: #0E56C8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.features-tabs {
    display: flex;
    border: 1px solid #DBDBDC;
    border-radius: 8px;
    margin-bottom: 25px;
    overflow: hidden;
}

.features-tab {
    flex: 1;
    background: #fff;
    border: none;
    padding: 15px;
    font-size: 16px;
    line-height: 21px;
    color: #6A7282;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.features-tab.active {
    background: #000;
    color: #fff;
    border-radius: 8px;
}

.features-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-title-main {
    font-size: 20px;
    margin: 0;
    line-height: 20px;
    font-family: 'Inter';
}

.feature-desc {
    font-size: 15px;
    line-height: 20px;
    margin: 0;
}

.feature-img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
}



@media (max-width: 991px) {
    .features-modal .modal-header {
        padding: 10px;
    }

    .features-modal .modal-header h2 {
        font-size: 16px;
    }

    .features-compare-links {
        padding-bottom: 12px;
    }

    .compare-link {
        font-size: 12px;
        line-height: 18px;
    }

    .features-modal-content {
        padding-inline: 10px;
        padding-bottom: 10px;
    }

    .features-tabs {
        margin-bottom: 12px;
    }

    .features-tab {
        padding: 10px;
        font-size: 12px;
        line-height: 18px;
    }

    .features-body {
        gap: 12px;
    }

    .feature-block {
        gap: 10px;
    }

    .feature-title-main {
        font-size: 16px;
        line-height: 16px;
    }

    .feature-desc {
        font-size: 12px;
        line-height: 18px;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    .features-modal .modal-header {
        padding: 18px;
    }

    .features-modal .modal-header h2 {
        font-size: 22px;
    }

    .features-modal-content {
        padding-inline: 18px;
        padding-bottom: 18px;
    }

    .features-compare-links {
        padding-bottom: 18px;
    }

    .compare-link {
        font-size: 14px;
        line-height: 18px;
    }

    .features-tabs {
        margin-bottom: 18px;
    }

    .features-tab {
        padding: 12px;
        font-size: 14px;
        line-height: 18px;
    }

    .features-body {
        gap: 20px;
    }

    .feature-block {
        gap: 12px;
    }

    .feature-title-main {
        font-size: 18px;
        line-height: 18px;
    }

    .feature-desc {
        font-size: 14px;
        line-height: 20px;
    }

}

/* Compare Trims Modal Styles */
.compare-modal-layout {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.compare-modal-content {
    padding: 0;
    flex: 1;
}

.features-compare-links.padded {
    padding-inline: 25px;
}

.compare-section {
    padding: 25px;
}

.compare-modal-content .compare-section:nth-of-type(1) {
    padding-top: 0;
}

.compare-section.bg-light {
    background: #F8F6F4;
}

.compare-variant-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}

.compare-variant-row:last-child {
    padding-bottom: 0;
}

.compare-variant-row.align-end {
    align-items: flex-end;
}

.compare-variant-row.align-center {
    align-items: center;
}

.compare-variant-title {
    font-size: 20px;
    padding-bottom: 10px;
    font-family: 'Inter';
}

.compare-variant-title.color-gray {
    color: #6A7282;
}

.compare-variant-spec {
    font-size: 12px;
    font-weight: 500;
}

.compare-variant-price {
    text-align: right;
}

.compare-variant-price .price-val {
    font-weight: 500;
    font-size: 18px;
    padding-bottom: 10px;
}

.compare-variant-price .price-val img {
    margin-right: 4px;
}

.compare-variant-price .price-label {
    font-size: 15px;
    color: #6A7282;
}

.compare-section-title {
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter';
}

.compare-variant-value {
    font-weight: 500;
    font-size: 18px;
}

.compare-bottom-tabs {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #EBEBEB;
    padding: 15px 25px;
}

.compare-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    width: 135px;
    padding: 8px 15px;
}

.compare-tab svg {
    stroke: #004c6d;
}

.compare-tab span {
    color: #6A7282;
    font-size: 14px;
    line-height: 20px;
    display: block;
    text-align: center;
    width: 100%;
}

.compare-tab.active {
    background: #000;
    border-radius: 6px;
}

.compare-tab.active span {
    color: #fff;
}

.compare-tab.active svg path {
    stroke: #fff;
}

.compare-model-label {
    font-size: 15px;
    color: #000;
    padding-bottom: 8px;
    font-weight: 500;
}

.compare-model-dropdown-container {
    position: relative;
}

.compare-model-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.compare-model-dropdown span {
    font-family: 'Inter';
    font-size: 20px;
    font-weight: 500;
    color: #000000;
}


.compare-model-dropdown svg {
    margin-top: 2px;
}

.compare-model-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    margin-top: 5px;
}

.compare-model-options.active {
    display: block;
}

.compare-model-option {
    padding: 10px 15px;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    transition: background 0.2s;
}

.compare-model-option:hover {
    background: #f5f5f5;
}

.compare-model-options .compare-model-option.is-disabled,
.compare-model-option.is-disabled {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 1;
    user-select: none;
}

.compare-model-options .compare-model-option.is-disabled:hover,
.compare-model-option.is-disabled:hover {
    background: #f3f4f6;
    color: #9ca3af;
}

.btn-compare-models {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter';
    transition: all 0.3s ease;
}

.btn-compare-models:hover {
    opacity: 0.8;
}


@media (max-width: 991px) {
    .compare-section {
        padding: 10px;
    }

    .compare-variant-row {
        padding-bottom: 10px;
    }

    .compare-variant-title {
        font-size: 14px;
    }

    .compare-variant-spec {
        font-size: 9px;
    }

    .compare-variant-price .price-val {
        font-size: 14px;
    }

    .compare-variant-price .price-label {
        font-size: 11px;
    }

    .compare-section-title {
        font-size: 14px;
    }

    .compare-variant-value {
        font-size: 14px;
    }

    .compare-bottom-tabs {
        padding: 8px 10px;
    }

    .compare-tab {
        flex: 1;
        min-width: 0;
        padding: 4px 2px;
    }

    .compare-tab span {
        font-size: 9px;
        word-break: break-word;
    }

    .compare-model-label {
        font-size: 13px;
    }

    .compare-model-dropdown span {
        font-size: 16px;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {

    .compare-section {
        padding: 18px;
    }

    .compare-variant-row {
        padding-bottom: 15px;
    }

    .compare-variant-title {
        font-size: 16px;
    }

    .compare-variant-spec {
        font-size: 10px;
    }

    .compare-variant-price .price-val {
        font-size: 16px;
    }

    .compare-variant-price .price-label {
        font-size: 12px;
    }

    .compare-section-title {
        font-size: 16px;
    }

    .compare-variant-value {
        font-size: 16px;
    }

    .compare-bottom-tabs {
        padding: 10px 18px;
    }

    .compare-tab {
        width: 100px;
        padding: 5px 10px;
    }

    .compare-tab span {
        font-size: 12px;
    }

    .compare-model-label {
        font-size: 13px;
    }

    .compare-model-dropdown span {
        font-size: 16px;
    }
}










@media (min-width: 992px) and (max-width: 1400px) {
    .product-brand {
        padding: 20px;
    }

    .product-specs {
        margin-bottom: 20px;
        padding-block: 10px;
    }

    .spec-value {
        font-size: 15px;
        line-height: 17px;
    }

    .spec-unit,
    .spec-label {
        font-size: 12px;
        line-height: 16px;
    }

    .option-group {
        margin-bottom: 20px;
    }

    .option-title {
        font-size: 15px;
        line-height: 18px;
        padding-bottom: 15px;
    }

    .category-tabs .tab {
        padding: 7px 15px;
        font-size: 14px;
        line-height: 17px;
    }

    .model-item {
        padding: 12px;
        margin-bottom: 10px;
    }

    .model-info h4 {
        font-size: 13px;
        line-height: 16px;
    }

    .model-info p {
        font-size: 12px;
        line-height: 15px;
    }

    .vat-tag {
        line-height: 13px;
        padding-bottom: 5px;
    }

    .price-val {
        font-size: 14px;
    }

    .model-list {
        margin-bottom: 20px;
    }

    .help-box {
        padding: 12px;
        margin-bottom: 20px;
    }

    .help-header {
        padding-bottom: 5px;
    }

    .help-header span {
        font-size: 14px;
        line-height: 17px;
    }

    .help-box p {
        font-size: 12px;
        line-height: 16px;
    }

    .color-btn {
        width: 60px;
        height: 60px;
        border: 6px solid #fff;
    }

    .variant.option-group {
        padding: 15px;
    }

    .toggle-btn {
        padding: 5px 10px;
        font-size: 13px;
    }

    .action-buttons {
        gap: 12px;
    }

    .action-link {
        gap: 5px;
        font-size: 12px;
    }
}


@media (max-width: 991px) {
    .product-configurator {
        flex-direction: column;
    }

    .main_container.configurator-container {
        flex-direction: column;
    }

    .visualizer-section {
        display: contents;
    }

    .visualsticky {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 99;
        background-color: #f8f8f8;
        padding: 10px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }

    html.pushbar_locked .visualsticky,
    html.nav-open .visualsticky {
        z-index: 0 !important;
    }

    .car-image-container {
        position: static;
        background-color: transparent;
        padding-top: 0;
        padding-bottom: 0;
        box-shadow: none;
    }

    .options-sidebar {
        width: 100%;
        border-left: none;
        border-top: 1px solid #eee;
    }

    /*.toggle-buttons {
        gap: 5px;
    }*/

    .toggle-btn {
        padding: 5px 10px;
        font-size: 12px;
    }

    .action-buttons {
        gap: 5px;
        margin-right: 5px;
    }

    .action-link {
        gap: 4px;
        font-size: 12px;
    }

    .icon-btn {
        padding: 2px;
    }

    .product-brand {
        padding: 20px 10px 20px 10px;
    }

    .product-specs {
        margin-bottom: 20px;
        padding-block: 10px;
    }

    .spec-value {
        font-size: 14px;
        line-height: 18px;
    }

    .spec-label {
        font-size: 12px;
        line-height: 18px;
    }

    .product-name {
        font-size: 24px;
        line-height: 28px;
    }

    .price-tag {
        font-size: 24px;
        line-height: 28px;
    }

    .price-tag span {
        font-size: 20px;
        line-height: 24px;
    }

    .price-tag .currency {
        font-size: 20px;
        line-height: 24px;
    }

    .price-tag .from {
        font-size: 14px;
        line-height: 18px;
    }

    .price-tag .price {
        font-size: 14px;
        line-height: 18px;
    }

    /*.option-group {
        padding-inline: 10px;
        margin-bottom: 20px;
    }  */

    .option-title {
        font-size: 15px;
        line-height: 21px;
        padding-bottom: 10px;
    }

    .category-tabs .tab {
        padding: 8px 15px;
        font-size: 13px;
        line-height: 15px;
    }

    .model-list {
        margin-bottom: 20px;
        padding-inline: 10px;
    }

    .model-item {
        padding: 10px;
        margin-bottom: 10px;
    }

    .model-info h4 {
        font-size: 13px;
        line-height: 17px;
    }

    .model-info p {
        font-size: 12px;
    }

    .vat-tag {
        padding-bottom: 6px;
    }

    .price-val {
        font-size: 13px;
        line-height: 15px;
    }

    .help-box {
        padding: 10px;
        margin-bottom: 20px;
        margin-inline: 10px;
    }

    .variant.option-group {
        padding: 10px 10px 30px 10px;
        margin-inline: 10px;
    }

    .option-vat {
        text-align: right;
    }

    .accessory-images {
        flex: 0 0 100%;
    }

    .color-options {
        margin-bottom: 10px;
    }

    .color-btn {
        width: 40px;
        height: 40px;
        border: 4px solid #fff;
    }

    .payment_block {
        padding: 10px;
    }

    .payment-tabs {
        margin-bottom: 12px;
    }

    .payment-tabs button {
        padding: 10px;
    }

    .check-option {
        padding-bottom: 10px;
    }

    .check-option label {
        gap: 5px;
        font-size: 14px;
        line-height: 18px;
    }

    .check-option input[type="checkbox"] {
        width: 15px;
        height: 15px;
    }

    .check-option input[type="checkbox"]:checked::after {
        width: 7px;
        height: 3px;
        top: 3px;
    }

    .option-price-row {
        padding-bottom: 6px;
    }

    .option-price-row .price-val {
        font-size: 13px;
    }

    .payment_text {
        font-size: 13px;
        line-height: 18px;
        padding-bottom: 12px;
    }

    .accordion-header {
        font-size: 14px;
        line-height: 18px;
    }

    /* .price-summary-accordion {
        margin-top: 10px;
        padding: 10px;
    }*/

    /* .option-group.price-summary-accordion {
        margin-inline: 10px;
    }*/

    /* .accordion-header h3 {
        font-size: 14px;
        line-height: 16px;
    }*/

    .summary-row span {
        font-size: 14px;
        line-height: 18px;
    }

    .summary-row.total .summary-price {
        font-size: 16px;
    }

    /* .sidebar-footer {
        padding: 12px;
    }*/

    .summary-details {
        margin-bottom: 12px;
    }

    .summary-details .label {
        font-size: 13px;
        line-height: 17px;
        margin-bottom: 8px;
    }

    .summary-details .total-price .price-val {
        font-size: 14px;
    }

    .vat-note {
        font-size: 12px;
    }

    .summary-details .pay-now .price-val {
        font-size: 18px;
    }
}

.color-btn.out-of-stock {
    position: relative;
    overflow: hidden;
    cursor: not-allowed;
    opacity: 1;
}

.color-btn.out-of-stock::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 120%;
    height: 3px;
    background-color: red;
    transform: translateY(-50%) rotate(-45deg);
    z-index: 2;
}


@media (max-width: 767px) {
    .visualizer-top-nav .action-buttons {
        gap: 10px;
    }

    .toggle-btn {
        min-width: unset;
    }


    .interior_box {
        min-height: calc(-535px + 100vh) !important;

    }

    .visualizer-top-nav .action-buttons .icon-btn {
        width: 20px
    }

    .visualizer-top-nav .action-buttons .icon-btn:last-child {
        width: 25px;
    }

    .modal-popup.modal-slide._inner-scroll.ntg_cart_conflict_popup .modal-inner-wrap {
        min-height: auto;
    }

    .method-option .square-check {
        min-width: 20px;
        min-height: 20px;
    }

    .spin-control {
        padding-top: 0px;
    }

}

@media (min-width: 768px) {
    .modal-popup.ntg_features_popup .modal-inner-wrap {
        margin-top: 45px;
    }

}

/* Fix features modal close button on iOS / iPhone */
.modal-popup.ntg_features_popup .action-close {
    z-index: 999999 !important;
    pointer-events: auto !important;
}

@media (min-width: 992px) {
    .car-image-container #viewer360 {
        margin-top: 95px;
    }
}

@media (min-width: 1281px) and (max-width: 1450px) {
    .options-sidebar {
        width: 380px;
    }

}

.summary-details .pay-now {
    border: 0px;
}

.owner-input[type="date"] {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 4px;
    font-size: 16px;
    background: #fff;
    box-sizing: border-box;
    height: auto;
    color: #000 !important;
    -webkit-appearance: none;
    appearance: none;

    /* iOS specific fixes */
    display: block;
    max-width: 100%;
    min-width: 0;
    position: relative;
}

/* Fix iOS date inner elements overflowing */
.owner-input[type="date"]::-webkit-date-and-time-value {
    text-align: left;
    width: 100%;
    min-width: 0;
}

.owner-input[type="date"]::-webkit-datetime-edit {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.owner-input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    width: 100%;
    min-width: 0;
    padding: 0;
}

.owner-input[type="date"] {
    min-height: 55px;
    /* ← force same height empty or filled */
    height: 55px;
    /* ← lock it */
    /*line-height: 52px;       /* ← vertically center the text */
    */
}

/* Force inner content height on iOS */
.owner-input[type="date"]::-webkit-datetime-edit {
    height: 100%;
    line-height: normal;
    padding: 0;
    display: flex;
    align-items: center;
}

.owner-input[type="date"]::-webkit-date-and-time-value {
    min-height: 55px;
    /* ← this is key for iOS empty state */
}