/* navbar css */
.r-header.r-header-strip-02 .container {
    background-color: rgba(255, 255, 255, 0.3);
}

.r-header.r-header-strip-02 .r-nav-section nav ul li a {
    color: #fffcfc;
}

.r-slider-item .r-slider-top-content h1 span {
    font-style: normal;
}

.r-price-discount span {
    text-decoration: line-through;
    color: #777777;
}

.r-average {
    background-color: #ffcd00;
    padding: 7px 16px;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #161515;
}

.r-best-offer-list .r-best-offer-single ul li.green {
    color: #23da26;
    font-size: 0.7rem;
    text-align: initial;
}

.r-best-offer-list .r-best-offer-single ul li.blue {
    color: #4881eb;
    font-size: 0.7rem;
    text-align: initial;
}

/* end navbar css */

/* utilities */
.bg-dark {
    background-color: #333333 !important;
}

.bg-white {
    background-color: white !important;
}

.bg-light {
    background-color: rgb(250, 250, 250) !important;
}

.bg-yellow {
    background-color: #0089B6 !important;
}

.bg-lightpink {
    /* background-color: #f7f5e6 !important; */
    background: linear-gradient(135deg, #f8fafb 0%, #e8f4f8 100%);
}

.bg-gray {
    background-color: #b2b2b2 !important;
}

.bg-darkblue {
    background-color: #465A7D !important;
}

.text-darkblue {
    color: #233e5d !important;
}

.text-yellow {
    color: #0089B6 !important;
}

.text-blue {
    color: #00ABE4 !important;
}

.text-primary {
    color: #0275d8 !important;
}

.text-dark {
    color: #131212 !important;
}

.small-border {
    height: 2px;
    width: 30px;
    background: #0089B6;
    margin: 0px 0 20px 0;
    display: block;
}

.text-decoration-line-through {
    text-decoration: line-through !important;
}

/* end utilities */

/* some css fixes */

/* .r-header .r-header-strip .r-nav-section nav>ul>li.r-has-child>ul>li>a:hover {
    color: white;
    background-color: #465A7D;
} */

.r-sec-head.r-sec-head-r::after {
    content: 'T';
}

.r-slider-serach.r-slider-serach-down {
    box-shadow: none;
    -webkit-box-shadow: none;
}

.r-sec-head.r-sec-head-w::after {
    content: "T";
    color: #0089B6 !important;
}

.r-contact-part .r-contact-address .address-cnt i {
    background: #9b9b9b;
}

.r-get-in-touch {
    background: url(../images/happy2.jpg);
    background-size: cover;
}

.has-icon select {
    /* for Firefox */
    -moz-appearance: none;
    /* for Chrome */
    -webkit-appearance: none;
}

.r-header.r-header-strip-02 .r-header-fixed {
    background: #465A7D !important;
}

.r-form-strip::after {
    height: 100%;
}

.r-form-strip::before {
    height: 100%;
}

.blog-title a {
    color: #333 !important;
}

.blog-title a:hover {
    color: #e1e100 !important;
}

.r-slider-serach.form-search .form-footer a:hover {
    color: #e1e100;
}

.r-slider-serach.form-search .form-footer a {
    color: black;
}

.border-bottom-children:not(:last-child) {
    border-bottom: 1px solid white;
}

.r-newsletter-suscribe {
    background-image: url(../images/news.jpg);
    background-position: center bottom;
}

.r-faq-section .btn-primary {
    color: #131212;
}

.r-faq-section .btn-primary:hover {
    color: white;
}

.r-best-vehicles .r-best-leftbar .r-best-vehicle-types {
    max-width: unset;
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

/* end css fixes */

/* offcanvas (sidebar) */
.sidenav {
    height: 0;
    width: 100%;
    position: fixed;
    z-index: 1001;
    bottom: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
}

.opened-nav {
    height: 60vh;
}

.cart_container {
    max-height: 40vh;
    overflow-y: auto;
}

@media (max-width: 576px) {
    .opened-nav {
        height: 100vh;
    }

    .cart_container {
        max-height: 80vh;
        overflow-y: auto;
    }
}

.cart_overlay {
    height: 100vh;
    width: 100%;
    margin: 0;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

/* glowing button */

.glowing {
    -webkit-animation: glowing_yellow 2000ms infinite;
    -moz-animation: glowing_yellow 2000ms infinite;
    -o-animation: glowing_yellow 2000ms infinite;
    animation: glowing_yellow 2000ms infinite;
}

.glowing-blue {
    -webkit-animation: glowing_blue 2000ms infinite;
    -moz-animation: glowing_blue 2000ms infinite;
    -o-animation: glowing_blue 2000ms infinite;
    animation: glowing_blue 2000ms infinite;
}

@-webkit-keyframes glowing_yellow {
    0% {
        background-color: #b8b800;
        -webkit-box-shadow: 0 0 3px #b8b800;
    }

    50% {
        background-color: #e4e400;
        -webkit-box-shadow: 0 0 15px #e4e400;
    }

    100% {
        background-color: #b8b800;
        -webkit-box-shadow: 0 0 3px #b8b800;
    }
}

@keyframes glowing_yellow {
    0% {
        background-color: #b8b800;
        box-shadow: 0 0 3px #b8b800;
    }

    50% {
        background-color: #e4e400;
        box-shadow: 0 0 15px #e4e400;
    }

    100% {
        background-color: #b8b800;
        box-shadow: 0 0 3px #b8b800;
    }
}

@-webkit-keyframes glowing_blue {
    0% {
        background-color: #00669b;
        -webkit-box-shadow: 0 0 3px #00669b;
    }

    50% {
        background-color: #00ABE4;
        -webkit-box-shadow: 0 0 15px #00ABE4;
    }

    100% {
        background-color: #00669b;
        -webkit-box-shadow: 0 0 3px #00669b;
    }
}

@keyframes glowing_blue {
    0% {
        background-color: #00669b;
        box-shadow: 0 0 3px #00669b;
    }

    50% {
        background-color: #00ABE4;
        box-shadow: 0 0 15px #00ABE4;
    }

    100% {
        background-color: #00669b;
        box-shadow: 0 0 3px #00669b;
    }
}

/* end glowing button */

/* stripe styles */
.StripeElement {
    box-sizing: border-box;
    height: 40px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: white;
    box-shadow: 0 1px 3px 0 #e6ebf1;
    -webkit-transition: box-shadow 150ms ease;
    transition: box-shadow 150ms ease;
}

.StripeElement--focus {
    box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
    border-color: #fa755a;
}

.StripeElement--webkit-autofill {
    background-color: #fefde5 !important;
}

/* end stripe styles */

/* Custom "Back to Top" button styles */
.r-to-top {
    background-color: #00ABE4 !important;
    border: 2px solid #00ABE4 !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.r-to-top:hover {
    background-color: #008fc0 !important;
    border-color: #008fc0 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 171, 228, 0.3) !important;
}

.r-to-top i {
    color: white !important;
    font-size: 16px !important;
}

/* end custom back to top styles */

/* Compact Linear Price Box */
.linear-price-compact {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #0089B6 0%, #00B4E6 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-family: inherit;
    gap: 6px;
    box-shadow: 0 3px 10px rgba(0, 137, 182, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.linear-price-compact:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 137, 182, 0.4);
}

.linear-price-compact .currency {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.linear-price-compact .price {
    font-size: 24px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.linear-price-compact .period {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .linear-price-compact {
        padding: 6px 12px;
        gap: 4px;
    }
    
    .linear-price-compact .currency {
        font-size: 14px;
    }
    
    .linear-price-compact .price {
        font-size: 20px;
    }
    
    .linear-price-compact .period {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .linear-price-compact {
        padding: 5px 10px;
        gap: 3px;
    }
    
    .linear-price-compact .price {
        font-size: 18px;
    }
    
    .linear-price-compact .currency {
        font-size: 12px;
    }
}

/* end compact linear price box */

/* Simple Pricing Card */
.simple-pricing-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 20px 0;
}

.simple-pricing-card .pricing-header {
    background: linear-gradient(135deg, #0089B6, #00ABE4);
    color: white;
    padding: 15px 20px;
    text-align: center;
}

.simple-pricing-card .pricing-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.simple-pricing-card .pricing-header i {
    margin-right: 8px;
}

.pricing-list {
    padding: 20px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    background-color: #f8f9fa;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 -10px;
    border-radius: 5px;
}

.pricing-row.caution-row {
    background-color: #e3f2fd;
    border-radius: 5px;
    padding: 15px 10px;
    margin-bottom: 10px;
    border: 1px solid #0089B6;
}

.pricing-row.caution-row .label {
    font-weight: 600;
    color: #0089B6;
}

.pricing-row.caution-row .value {
    font-weight: 700;
    color: #0089B6;
    font-size: 1.1rem;
}

.pricing-row .label {
    color: #555;
    font-weight: 500;
}

.pricing-row .value {
    color: #333;
    font-weight: 600;
    font-size: 1.05rem;
}

.pricing-footer {
    background-color: #f8f9fa;
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.pricing-footer small {
    color: #666;
    font-size: 0.9rem;
}

.pricing-footer a {
    color: #0089B6;
    text-decoration: none;
    font-weight: 600;
}

.pricing-footer a:hover {
    color: #006a8d;
    text-decoration: underline;
}

.pricing-footer i {
    margin-right: 5px;
    color: #0089B6;
}

/* Responsive */
@media (max-width: 768px) {
    .simple-pricing-card {
        margin: 15px 0;
    }
    
    .pricing-list {
        padding: 15px;
    }
    
    .pricing-row {
        padding: 10px 0;
    }
    
    .pricing-footer {
        padding: 12px 15px;
    }
}

/* end modern pricing card */

/* Modern Car Top Info Section */
.modern-car-top-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

.modern-car-rating {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.rating-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 137, 182, 0.1), transparent);
    transition: left 0.6s;
}

.rating-badge:hover::before {
    left: 100%;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars i {
    font-size: 18px;
    color: #ddd;
    transition: all 0.3s ease;
}

.rating-stars i.active {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: starGlow 2s ease-in-out infinite alternate;
}

@keyframes starGlow {
    from {
        filter: brightness(1);
    }
    to {
        filter: brightness(1.3);
    }
}

.rating-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rating-score {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0089B6;
    line-height: 1;
}

.rating-label {
    font-size: 0.85rem;
    color: #28a745;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rating-details {
    padding-left: 20px;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    opacity: 0.8;
}

.modern-car-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.car-name {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    background: linear-gradient(135deg, #0089B6, #00ABE4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

.car-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0089B6, #00ABE4);
    border-radius: 2px;
}

.car-year-badge {
    background: linear-gradient(135deg, #0089B6, #00ABE4);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 137, 182, 0.3);
    position: relative;
    overflow: hidden;
}

.car-year-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.car-year-badge:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-car-top-info {
        gap: 15px;
        padding: 15px 0;
    }
    
    .rating-badge {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .rating-stars i {
        font-size: 16px;
    }
    
    .rating-score {
        font-size: 1.2rem;
    }
    
    .car-name {
        font-size: 1.6rem;
    }
    
    .modern-car-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .car-year-badge {
        align-self: flex-start;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .rating-badge {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .rating-stars i {
        font-size: 14px;
    }
    
    .rating-score {
        font-size: 1.1rem;
    }
    
    .rating-label {
        font-size: 0.75rem;
    }
    
    .car-name {
        font-size: 1.4rem;
    }
    
    .rating-details {
        padding-left: 10px;
    }
    
    .rating-text {
        font-size: 0.8rem;
    }
}

/* end modern car top info section */

/* Compact Car Info Left-Aligned */
.compact-car-info-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 0;
}

.compact-rating-section {
    display: flex;
    align-items: center;
}

.rating-stars-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.rating-stars-inline i {
    font-size: 14px;
    color: #ddd;
    transition: all 0.3s ease;
}

.rating-stars-inline i.active {
    color: #ffd700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.rating-score-inline {
    font-size: 1rem;
    font-weight: 700;
    color: #0089B6;
    margin-left: 5px;
}

.rating-label-inline {
    font-size: 0.75rem;
    color: #28a745;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 5px;
}

.compact-title-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.compact-car-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.compact-year-badge {
    background: linear-gradient(135deg, #0089B6, #00ABE4);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 137, 182, 0.3);
    white-space: nowrap;
}

/* Hover effects */
.compact-rating-section:hover .rating-stars-inline {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.compact-title-section:hover .compact-year-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 137, 182, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .compact-car-info-left {
        gap: 10px;
        padding: 12px 0;
    }
    
    .rating-stars-inline {
        padding: 6px 12px;
        gap: 6px;
    }
    
    .rating-stars-inline i {
        font-size: 12px;
    }
    
    .rating-score-inline {
        font-size: 0.9rem;
    }
    
    .rating-label-inline {
        font-size: 0.7rem;
    }
    
    .compact-car-name {
        font-size: 1.5rem;
    }
    
    .compact-year-badge {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .compact-title-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .rating-stars-inline {
        padding: 5px 10px;
        gap: 4px;
    }
    
    .compact-car-name {
        font-size: 1.3rem;
    }
    
    .compact-year-badge {
        align-self: flex-start;
        padding: 4px 8px;
        font-size: 0.7rem;
    }
}

/* end compact car info left-aligned */

/* Modern Product Header */
.modern-product-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.modern-product-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0089B6, #00ABE4, #0074D9);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.product-year-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0089B6, #00ABE4);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 137, 182, 0.3);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.product-year-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 137, 182, 0.4);
}

.product-year-badge i {
    font-size: 1rem;
}

.product-title-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modern-product-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: #333;
    margin: 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.modern-product-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0089B6, #00ABE4);
    border-radius: 2px;
}

.product-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-badge.verified {
    background: linear-gradient(135deg, #28a745, #34ce57);
    color: white;
    box-shadow: 0 3px 12px rgba(40, 167, 69, 0.3);
}

.feature-badge.available {
    background: linear-gradient(135deg, #007bff, #0d6efd);
    color: white;
    box-shadow: 0 3px 12px rgba(0, 123, 255, 0.3);
}

.feature-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.2);
}

.feature-badge i {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-product-header {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .modern-product-name {
        font-size: 1.8rem;
    }
    
    .product-year-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .product-features {
        gap: 8px;
    }
    
    .feature-badge {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .modern-product-header {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .modern-product-name {
        font-size: 1.5rem;
    }
    
    .product-title-section {
        gap: 12px;
    }
    
    .product-features {
        gap: 6px;
    }
    
    .feature-badge {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
}

/* end modern product header */

/* Ultra Modern Car Showcase */
.ultra-modern-car-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

/* Hero Section */
.car-hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background: linear-gradient(135deg, #0089B6 0%, #00ABE4 50%, #0074D9 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.car-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: heroGlow 4s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(180deg) scale(1.1); }
}

.hero-left {
    flex: 1;
    z-index: 2;
}

.hero-right {
    z-index: 2;
}

.car-rating-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rating-stars-group {
    display: flex;
    gap: 4px;
}

.rating-stars-group i {
    color: #ffd700;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: starTwinkle 2s ease-in-out infinite alternate;
}

.rating-stars-group i:nth-child(2) { animation-delay: 0.2s; }
.rating-stars-group i:nth-child(3) { animation-delay: 0.4s; }
.rating-stars-group i:nth-child(4) { animation-delay: 0.6s; }
.rating-stars-group i:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.3); }
}

.rating-info-group {
    display: flex;
    flex-direction: column;
}

.rating-number {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
}

.rating-text {
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.car-title-modern h1.car-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 0 15px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.car-meta-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.year-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.verified-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #28a745, #34ce57);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.price-card-hero {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
    text-align: center;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.price-main .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0089B6;
}

.price-main .amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    line-height: 1;
}

.price-main .period {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.price-additional {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #666;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

/* Main Content Section */
.car-content-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    padding: 40px;
}

/* Gallery Styles */
.modern-gallery-wrapper {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.main-gallery {
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-thumbs {
    padding: 15px;
    background: #f8f9fa;
}

.gallery-thumbs ul {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: center;
}

.thumb-item {
    width: 60px;
    height: 45px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumb-item:hover,
.thumb-item.active {
    border-color: #0089B6;
    transform: scale(1.1);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-image-wrapper,
.no-image-wrapper {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.single-image-wrapper img,
.no-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Car Details Modern */
.car-details-modern {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.details-header {
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
}

.car-status-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.available {
    background: linear-gradient(135deg, #28a745, #34ce57);
    color: white;
    box-shadow: 0 3px 12px rgba(40, 167, 69, 0.3);
}

.status-badge.premium {
    background: linear-gradient(135deg, #9C27B0, #BA68C8);
    color: white;
    box-shadow: 0 3px 12px rgba(156, 39, 176, 0.3);
}

.details-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 8px 0;
    color: #333;
}

.details-subtitle {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Ultra Modern Pricing */
.ultra-modern-pricing {
    padding: 30px;
}

.pricing-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.header-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0089B6, #00ABE4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.header-text h3 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

.header-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.caution-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 2px solid #0089B6;
}

.caution-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0089B6, #00ABE4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.caution-content {
    display: flex;
    flex-direction: column;
}

.caution-label {
    font-size: 0.9rem;
    color: #0089B6;
    font-weight: 600;
    margin-bottom: 3px;
}

.caution-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0089B6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.price-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    cursor: pointer;
}

.price-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.price-item.popular {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-color: #ffd700;
    transform: scale(1.05);
}

.price-item.best-value {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    transform: scale(1.05);
}

.price-item.premium {
    background: linear-gradient(135deg, #9C27B0, #BA68C8);
    color: white;
    transform: scale(1.05);
}

.popular-ribbon,
.value-ribbon,
.premium-ribbon {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popular-ribbon {
    background: linear-gradient(45deg, #ff9800, #ffb74d);
    color: white;
}

.value-ribbon {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: white;
}

.premium-ribbon {
    background: linear-gradient(45deg, #9C27B0, #BA68C8);
    color: white;
}

.duration-badge {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #0089B6;
}

.price-item.best-value .duration-badge,
.price-item.premium .duration-badge {
    color: white;
}

.price-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.price-item.best-value .price-amount,
.price-item.premium .price-amount {
    color: white;
}

.price-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-item.best-value .price-label,
.price-item.premium .price-label {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-footer-modern {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.contact-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #666;
    font-size: 0.95rem;
}

.contact-cta i {
    color: #0089B6;
    font-size: 1.1rem;
}

.contact-cta a {
    color: #0089B6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-cta a:hover {
    color: #006a8d;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .car-content-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .car-hero-section {
        flex-direction: column;
        gap: 25px;
        padding: 30px 20px;
    }
    
    .car-title-modern h1.car-main-title {
        font-size: 2rem;
    }
    
    .car-content-section {
        padding: 20px;
        gap: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .price-item.popular,
    .price-item.best-value,
    .price-item.premium {
        transform: none;
    }
}

@media (max-width: 576px) {
    .car-hero-section {
        padding: 20px 15px;
    }
    
    .car-rating-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .car-meta-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .car-content-section {
        padding: 15px;
    }
}

/* end ultra modern car showcase */

/* Simple Car Details */
.simple-car-details {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.simple-header {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.status-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tag.available {
    background: #d4edda;
    color: #155724;
}

.tag.certified {
    background: #cce5ff;
    color: #004085;
}

.simple-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #333;
}

.simple-subtitle {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Simple Pricing */
.simple-pricing {
    padding: 20px;
}

.pricing-title {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.pricing-title h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-title i {
    color: #0089B6;
}

.caution-box {
    background: #e3f2fd;
    border: 1px solid #0089B6;
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0089B6;
    font-weight: 600;
}

.caution-box i {
    font-size: 1.1rem;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.price-row:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.price-row.featured {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffc107;
}

.price-row.best {
    background: linear-gradient(135deg, #d4edda, #a3d977);
    border: 1px solid #28a745;
}

.price-row .duration {
    font-weight: 600;
    color: #333;
}

.price-row .amount {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0089B6;
}

.price-row .badge {
    position: absolute;
    top: -6px;
    right: 10px;
    background: #0089B6;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.price-row.featured .badge {
    background: #ffc107;
    color: #333;
}

.price-row.best .badge {
    background: #28a745;
    color: white;
}

.pricing-note {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.pricing-note i {
    color: #0089B6;
}

.pricing-note a {
    color: #0089B6;
    text-decoration: none;
    font-weight: 600;
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .simple-header {
        padding: 15px;
    }
    
    .simple-pricing {
        padding: 15px;
    }
    
    .simple-title {
        font-size: 1.3rem;
    }
    
    .price-row {
        padding: 10px 12px;
    }
    
    .status-tags {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .simple-header {
        padding: 12px;
    }
    
    .simple-pricing {
        padding: 12px;
    }
    
    .simple-title {
        font-size: 1.2rem;
    }
    
    .pricing-note {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

/* end simple car details */

/* Modern Testimonials */
.modern-testimonials {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 25px;
}

.testimonials-header {
    background: linear-gradient(135deg, #0089B6, #00ABE4);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.testimonials-header i {
    font-size: 2rem;
    opacity: 0.3;
    position: absolute;
    top: 15px;
    left: 20px;
}

.testimonials-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.testimonials-carousel {
    padding: 20px;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin: 0 5px;
    border-left: 4px solid #0089B6;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 15px;
    font-size: 3rem;
    color: #0089B6;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-content {
    font-style: italic;
    color: #333;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.author-rating {
    display: flex;
    gap: 2px;
}

.author-rating i {
    color: #ffd700;
    font-size: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.author-name {
    font-weight: 600;
    color: #0089B6;
    font-size: 0.85rem;
}

/* Modern Discount Card */
.modern-discount-card {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    color: white;
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3);
}

.modern-discount-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: discountGlow 3s ease-in-out infinite alternate;
}

@keyframes discountGlow {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(180deg) scale(1.1); }
}

.discount-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.discount-percent {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.discount-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.9;
}

.discount-content {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.discount-content h5 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.discount-content p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.discount-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.feature i {
    background: rgba(255, 255, 255, 0.2);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.feature span {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-testimonials {
        margin-bottom: 20px;
    }
    
    .testimonials-header {
        padding: 15px;
    }
    
    .testimonials-carousel {
        padding: 15px;
    }
    
    .testimonial-card {
        padding: 15px;
        margin: 0 2px;
    }
    
    .testimonial-content {
        font-size: 0.85rem;
    }
    
    .discount-content {
        padding: 15px;
    }
    
    .discount-percent {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .testimonials-header {
        padding: 12px;
    }
    
    .testimonials-carousel {
        padding: 12px;
    }
    
    .testimonial-card {
        padding: 12px;
    }
    
    .discount-badge {
        padding: 12px;
    }
    
    .discount-content {
        padding: 12px;
    }
    
    .discount-content h5 {
        font-size: 1.1rem;
    }
    
    .feature {
        font-size: 0.8rem;
    }
}

/* end modern testimonials and discount */

/* Modern Car Specifications Styles */
.modern-car-specs {
    margin-bottom: 40px;
}

.specs-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.1);
}

.specs-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.specs-header h3 i {
    margin-right: 15px;
    font-size: 30px;
    opacity: 0.9;
}

.specs-header p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
    font-weight: 300;
}

.specs-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.specs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.specs-category {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 3px solid #f8f9fa;
    position: relative;
}

.specs-category::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.specs-category h4 {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

.specs-category h4 i {
    margin-right: 12px;
    font-size: 22px;
    color: #667eea;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.spec-item:hover {
    background: #e9ecef;
    border-left-color: #667eea;
    transform: translateX(5px);
}

.spec-icon {
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-icon i {
    color: white;
    font-size: 16px;
}

.spec-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-label {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.spec-value {
    font-weight: 500;
    color: #666;
    font-size: 14px;
}

.spec-value.status .available {
    color: #28a745;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.spec-value.status .unavailable {
    color: #dc3545;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.spec-value.status i {
    font-size: 12px;
}

@media (max-width: 768px) {
    .specs-header {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .specs-header h3 {
        font-size: 22px;
    }
    
    .specs-header h3 i {
        font-size: 24px;
    }
    
    .specs-header p {
        font-size: 14px;
    }
    
    .specs-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .specs-category h4 {
        font-size: 18px;
    }
    
    .spec-item {
        padding: 12px;
        flex-direction: row;
        align-items: center;
    }
    
    .spec-icon {
        width: 35px;
        height: 35px;
        margin-right: 12px;
    }
    
    .spec-icon i {
        font-size: 14px;
    }
    
    .spec-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .spec-label {
        font-size: 14px;
    }
    
    .spec-value {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .specs-header h3 {
        font-size: 20px;
    }
    
    .specs-card {
        padding: 15px;
    }
    
    .spec-item {
        padding: 10px;
    }
    
    .spec-content {
        gap: 3px;
    }
}

/* end modern car specifications */