/* 차로차 리스트 스킨 — 공통 (사이트 default.css 보완) */
.charocha-list-page.car-list-page {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

#listcar .car-image {
    aspect-ratio: 4 / 3;
    min-height: 160px;
}

#listcar .car-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#listcar .car-image-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    color: #999;
    font-size: 14px;
}

.charocha-list-title {
    font-size: 28px;
    font-weight: 700;
    margin: 24px 0 10px;
    text-align: center;
    color: #111;
}

.charocha-list-order {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #000;
}

.charocha-list-count span { color: #666; font-size: 14px; }
.charocha-list-count strong { color: #0055ff; font-size: 16px; font-weight: 600; margin: 0 4px; }

.charocha-list-sort { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.charocha-list-sort a { color: #666; text-decoration: none; font-size: 14px; }
.charocha-list-sort a.on { color: #333; font-weight: 600; }

#listcar .charocha-car-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

#listcar .charocha-car-grid > li { box-sizing: border-box; margin-bottom: 20px; }

@media (min-width: 1100px) {
    #listcar .charocha-car-grid > li { width: calc(25% - 15px); }
}
@media (max-width: 1099px) and (min-width: 880px) {
    #listcar .charocha-car-grid > li { width: calc(25% - 15px); }
}
@media (max-width: 879px) and (min-width: 600px) {
    #listcar .charocha-car-grid > li { width: calc(33.333% - 13px); }
}
@media (max-width: 599px) {
    #listcar .charocha-car-grid > li { width: 100%; }
}

.charocha-list-pagination { margin: 24px 0 40px; }

/* 정렬·페이징 (공통 partial — car_list_sort_bar.php) */
.car-list-page--filter-charocha .car-list-sort,
.charocha-list-page .car-list-sort {
    clear: both;
    margin: 0 0 22px;
    padding: 0 2px;
    background: transparent;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.car-list-page--filter-charocha .car-list-sort ul,
.charocha-list-page .car-list-sort ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 4px 10px;
}

.car-list-page--filter-charocha .car-list-sort li,
.charocha-list-page .car-list-sort li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.car-list-page--filter-charocha .car-list-sort li a,
.charocha-list-page .car-list-sort li a {
    display: inline-block;
    width: auto;
    height: auto;
    line-height: 1.4;
    padding: 4px 2px;
    border: 0;
    color: #8b939a;
    font-size: 14px;
    font-family: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.15s ease;
}

.car-list-page--filter-charocha .car-list-sort li a:hover,
.charocha-list-page .car-list-sort li a:hover {
    color: #004af9;
}

.car-list-page--filter-charocha .car-list-sort li a.is-on,
.charocha-list-page .car-list-sort li a.is-on {
    color: #004af9;
    background: transparent;
    font-weight: 700;
}

.car-list-page--filter-charocha .car-list-pagination,
.charocha-list-page .car-list-pagination {
    clear: both;
    width: 100%;
    margin-top: 28px;
    padding-top: 0;
    text-align: center;
}

.car-list-page--filter-charocha .car-list-pagination a,
.car-list-page--filter-charocha .car-list-pagination span,
.charocha-list-page .car-list-pagination a,
.charocha-list-page .car-list-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    margin: 0 3px;
    padding: 0 10px;
    border: 1px solid #e4e9ee;
    border-radius: 8px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    box-sizing: border-box;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.car-list-page--filter-charocha .car-list-pagination a:hover,
.charocha-list-page .car-list-pagination a:hover {
    background: #f0f6ff;
    border-color: #b3d4ff;
    color: #004af9;
}

.car-list-page--filter-charocha .car-list-pagination span.is-current,
.charocha-list-page .car-list-pagination span.is-current {
    background: #004af9;
    border-color: #004af9;
    color: #fff;
    font-weight: 700;
}

.car-list-page--filter-charocha .car-list-empty,
.charocha-list-page .car-list-empty {
    clear: both;
    text-align: center;
    color: #666;
    padding: 40px 0;
}

.charocha-list-filter-wrap,
.charocha-list-filter-form,
.charocha-list-filter-shell {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

/* 차로차 필터 — PC/모바일 전환 */
.charocha-list-filter-mo { display: none; }

@media (max-width: 999px) {
    .charocha-list-filter-pc { display: none; }
    .charocha-list-filter-mo { display: block; }
}

.charocha-type-search-inner { padding: 30px; }
.charocha-type-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.charocha-type-buttons .filter-btn img { width: 40px; height: auto; flex-shrink: 0; }
.charocha-type-buttons .filter-btn span { font-size: 16px; margin-left: 6px; }

.charocha-detail-toggle-wrap { text-align: center; margin: 20px 0; }
.charocha-detail-toggle-btn {
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    color: #0055ff;
    font-size: 14px;
    width: 100%;
}

.charocha-search-buttons { text-align: right; margin-bottom: 20px; }
.charocha-btn-search {
    padding: 14px 40px;
    background: #0055ff;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    margin-right: 10px;
}
.charocha-btn-reset {
    padding: 14px 30px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    color: #333;
}

.charocha-range-sep { margin: 0 5px; }
.charocha-keyword { width: 150px; padding: 8px; border: 1px solid #ddd; border-radius: 6px; }

/* 차량 카드 */
.charocha-list-page .car-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.charocha-list-page .car-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.charocha-list-page .car-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.charocha-list-page .car-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

.charocha-list-page .car-badges {
    display: flex;
    justify-content: unset;
    align-items: flex-start;
    gap: 5px;
    z-index: 2;
}

.charocha-list-page .badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    display: inline-block;
}

.charocha-list-page .badge-cert {
    background: #3182f7;
}

.charocha-list-page .badge-service {
    background: #e9f6ff;
    color: #07f;
}

.charocha-list-page .car-info {
    padding: 20px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.charocha-list-page .car-name {
    font-size: 20px;
    color: #000;
    font-weight: 700;
    margin: 15px 0 12px;
    line-height: 1.4;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.charocha-list-page .car-details {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    font-size: 12px;
    color: #666;
    align-items: center;
}

.charocha-list-page .car-details span {
    position: relative;
    padding-right: 8px;
    white-space: nowrap;
}

.charocha-list-page .car-details span:not(:last-child)::after {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 10px;
    background: #ddd;
}

.charocha-list-page .car-price {
    text-align: left;
    margin-bottom: 8px;
}

.charocha-list-page .car-price strong {
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.charocha-list-page .car-installment {
    text-align: left;
    font-size: 16px;
    color: #333;
}

.charocha-list-page .car-installment .highlight {
    color: #3182f7;
    font-weight: 700;
    font-size: 16px;
}

/* 검색 필터 — 탭·캐스케이드 테이블 */
.charocha-list-page .search-tabs-container {
    background: #fff;
    border-radius: 8px;
    max-width: 100%;
}

.charocha-list-page .search-tabs-header {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
}

.charocha-list-page .search-tab-btn {
    padding: 15px 30px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    position: relative;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.charocha-list-page .search-tab-btn:hover {
    color: #004af9;
}

.charocha-list-page .search-tab-btn.active {
    color: #004af9;
    border-bottom-color: #004af9;
    font-weight: 600;
}

.charocha-list-page .search-tab-content {
    display: none;
}

.charocha-list-page .search-tab-content.active {
    display: block;
}

.charocha-list-page .car-search-table {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.charocha-list-page .table-header-wrapper {
    display: flex;
    width: 100%;
    background: #f8f9fa;
}

.charocha-list-page .table-header-cell {
    flex: 1 1 0;
    min-width: 0;
    padding: 15px 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    box-sizing: border-box;
}

.charocha-list-page .table-header-cell:last-child {
    border-right: none;
}

.charocha-list-page .table-body-wrapper {
    display: flex;
    height: 200px;
    width: 100%;
}

.charocha-list-page .brand-column-wrapper {
    flex: 1 1 0;
    min-width: 0;
    overflow-y: auto;
    overflow-x: hidden;
    border-right: 1px solid #e5e5e5;
    background: #fff;
    box-sizing: border-box;
}

.charocha-list-page .brand-column-wrapper::-webkit-scrollbar {
    width: 6px;
}

.charocha-list-page .brand-column-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.charocha-list-page .brand-column-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.charocha-list-page .brand-column-wrapper::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.charocha-list-page .select-columns-wrapper {
    flex: 4 1 0;
    display: flex;
    min-width: 0;
}

.charocha-list-page .brand-cell {
    padding: 15px 8px;
    text-align: center;
    font-size: 14px;
    color: #333;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid #f5f5f5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.charocha-list-page .brand-cell:hover {
    background: #f8f9fa;
    color: #004af9;
}

.charocha-list-page .brand-cell.selected {
    background: #004af9;
    color: #fff;
    font-weight: 600;
}

.charocha-list-page .select-cell {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    background: #fafafa;
    padding: 20px 8px;
    border-right: 1px solid #e5e5e5;
    box-sizing: border-box;
}

.charocha-list-page .select-cell:last-child {
    border-right: none;
}

.charocha-list-page .select-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #999;
    font-size: 14px;
    line-height: 1.8;
}

.charocha-list-page .select-cell .list {
    list-style: none;
    padding: 0;
    margin: 0;
    height: calc(100% - 40px);
    overflow-y: auto;
}

.charocha-list-page .select-cell .list::-webkit-scrollbar {
    width: 6px;
}

.charocha-list-page .select-cell .list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.charocha-list-page .select-cell .list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.charocha-list-page .select-cell .list li {
    list-style: none;
}

.charocha-list-page .select-cell .list li a {
    display: block;
    padding: 12px 8px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    border-radius: 4px;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.charocha-list-page .select-cell .list li a:hover {
    background-color: #fff;
    color: #004af9;
}

.charocha-list-page .select-cell .list li.on a {
    background-color: #004af9;
    color: #fff;
}

.charocha-list-page .filter-btn {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 120px;
}

.charocha-list-page .filter-btn:hover {
    border-color: #004af9;
    color: #3182f7;
}

.charocha-list-page .filter-btn.active {
    background: #004af9;
    color: #fff;
    border-color: #004af9;
}

.charocha-list-page #carselectbox.charocha-detail-box {
    clear: both;
    width: 100%;
    max-width: 100%;
    background-color: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.charocha-list-page #carselectbox.charocha-detail-box ul,
.charocha-list-page .charocha-detail-fields ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
    float: none;
}

.charocha-list-page #carselectbox.charocha-detail-box ul:last-child,
.charocha-list-page .charocha-detail-fields ul:last-child {
    margin-bottom: 0;
}

.charocha-list-page #carselectbox.charocha-detail-box li,
.charocha-list-page #carselectbox.charocha-detail-box li:first-child,
.charocha-list-page .charocha-detail-fields li,
.charocha-list-page .charocha-detail-fields li:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1 1 calc(33.333% - 12px);
    min-width: 0;
    width: auto;
    float: none;
    list-style: none;
    box-sizing: border-box;
}

.charocha-list-page .charocha-detail-fields ul:last-child li,
.charocha-list-page .charocha-detail-fields ul:last-child li:first-child,
.charocha-list-page #carselectbox.charocha-detail-box .charocha-detail-fields ul:last-child li,
.charocha-list-page #carselectbox.charocha-detail-box .charocha-detail-fields ul:last-child li:first-child {
    flex: 1 1 calc(25% - 12px);
}

.charocha-list-page #carselectbox {
    clear: both;
    max-width: 100%;
    background-color: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.charocha-list-page #carselectbox ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    padding: 0;
    list-style: none;
    float: none;
}

.charocha-list-page #carselectbox li {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    float: none;
    width: auto;
}

.charocha-list-page .sale_text {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    min-width: 56px;
    flex-shrink: 0;
    float: none;
    width: auto;
    padding-top: 0;
    text-align: left;
}

.charocha-list-page .sale_select,
.charocha-list-page #carselectbox input[type="text"] {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    padding: 9px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.charocha-list-page .charocha-range-sep {
    flex-shrink: 0;
}

.charocha-list-page .charocha-keyword {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
}

.charocha-list-page .sale_select:focus,
.charocha-list-page #carselectbox input[type="text"]:focus {
    outline: none;
    border-color: #004af9;
    box-shadow: 0 0 0 3px rgba(49, 130, 247, 0.1);
}

.charocha-list-page .search-detail-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

body.epc-layout-mobile .charocha-list-page.car-list-page {
    max-width: 100%;
    margin: 0;
    padding: 8px 15px 32px;
    box-sizing: border-box;
}

body.epc-layout-mobile .charocha-list-page .charocha-list-filter-pc {
    display: none !important;
}

body.epc-layout-mobile .charocha-list-page .charocha-list-filter-mo {
    display: block;
}

body.epc-layout-mobile .charocha-list-page #searchdiv .charocha-list-title {
    display: none;
}

body.epc-layout-mobile .charocha-list-page .charocha-mo-car-search-form {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    margin: 20px 0 24px;
}

body.epc-layout-mobile .charocha-list-page .charocha-mo-car-search-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    font-family: Pretendard, sans-serif;
    text-align: left;
    margin: 0;
    padding-left: 5px;
}

body.epc-layout-mobile .charocha-list-page .charocha-mo-car-search-fields {
    padding: 10px 0;
}

body.epc-layout-mobile .charocha-list-page .charocha-mo-car-search-field-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

body.epc-layout-mobile .charocha-list-page .charocha-mo-car-search-field {
    flex: 1;
    min-width: 0;
    position: relative;
}

body.epc-layout-mobile .charocha-list-page .charocha-mo-car-search-field-row--keyword .charocha-mo-car-search-field--grade-detail {
    flex: 1;
}

body.epc-layout-mobile .charocha-list-page .charocha-mo-car-search-field-row--keyword .charocha-mo-car-search-field--keyword {
    flex: 2;
}

body.epc-layout-mobile .charocha-list-page .charocha-mo-car-search-field select,
body.epc-layout-mobile .charocha-list-page .charocha-mo-car-search-field input[type="text"] {
    width: 100%;
    padding: 14px 40px 14px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 15px;
    font-family: Pretendard, sans-serif;
    color: #333;
    background: #fff;
    appearance: none;
    box-sizing: border-box;
}

body.epc-layout-mobile .charocha-list-page .charocha-mo-car-search-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

body.epc-layout-mobile .charocha-list-page .charocha-mo-car-search-field input[type="text"]::placeholder {
    color: #999;
}

body.epc-layout-mobile .charocha-list-page .charocha-mo-car-search-detail-toggle {
    text-align: center;
    padding: 7px 0;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    margin-bottom: 12px;
}

body.epc-layout-mobile .charocha-list-page .charocha-mo-car-search-detail-toggle-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    color: #0055ff;
    font-family: Pretendard, sans-serif;
    text-decoration: none;
    cursor: pointer;
}

body.epc-layout-mobile .charocha-list-page .charocha-mo-car-search-detail-toggle-btn::after {
    content: ' +';
    margin-left: 5px;
}

body.epc-layout-mobile .charocha-list-page .charocha-mo-car-search-detail-toggle-btn.active::after {
    content: ' -';
}

body.epc-layout-mobile .charocha-list-page .charocha-mo-car-search-detail-wrap {
    display: none;
    padding: 0;
}

body.epc-layout-mobile .charocha-list-page .charocha-mo-car-search-detail-wrap.active {
    display: block;
}

body.epc-layout-mobile .charocha-list-page .charocha-mo-car-search-detail-wrap-inner {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-top: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

body.epc-layout-mobile .charocha-list-page .charocha-mo-car-search-buttons {
    display: flex;
    gap: 10px;
}

body.epc-layout-mobile .charocha-list-page .charocha-mo-car-search-submit {
    flex: 2;
    padding: 16px;
    background: #3182f7;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: Pretendard, sans-serif;
    cursor: pointer;
}

body.epc-layout-mobile .charocha-list-page .charocha-mo-car-search-reset {
    flex: 1;
    padding: 16px;
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    font-family: Pretendard, sans-serif;
    cursor: pointer;
}

body.epc-layout-mobile .charocha-list-page .charocha-list-order,
body.epc-layout-mobile .charocha-list-page .charocha-list-order--mo {
    border-bottom: none;
    padding: 0 0 12px;
    flex-direction: row;
    align-items: baseline;
    gap: 4px;
}

body.epc-layout-mobile .charocha-list-page #listcar {
    width: 100%;
    box-sizing: border-box;
}

body.epc-layout-mobile .charocha-list-page #listcar .charocha-car-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 0 24px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

body.epc-layout-mobile .charocha-list-page #listcar .charocha-car-grid > li {
    flex: 0 0 calc(50% - 5px);
    width: calc(50% - 5px) !important;
    max-width: calc(50% - 5px);
    box-sizing: border-box;
    margin-bottom: 0;
}

body.epc-layout-mobile .charocha-list-page #listcar .car-card {
    height: 100%;
}

body.epc-layout-mobile .charocha-list-page #listcar .car-image {
    aspect-ratio: 4 / 3;
    min-height: 0;
}

body.epc-layout-mobile .charocha-list-page #listcar .car-info {
    padding: 12px 8px;
}

body.epc-layout-mobile .charocha-list-page #listcar .car-name {
    font-size: 14px;
    margin: 6px 0 8px;
}

body.epc-layout-mobile .charocha-list-page #listcar .badge {
    padding: 4px 8px;
    font-size: 10px;
}

body.epc-layout-mobile .charocha-list-page #listcar .car-details {
    font-size: 11px;
}

body.epc-layout-mobile .charocha-list-page #listcar .car-price strong {
    font-size: 16px;
}

body.epc-layout-mobile .charocha-list-page #listcar .car-installment {
    font-size: 11px;
    line-height: 1.4;
}

