/* ==================================================
   STRAVANTI MOTORS
   MAIN STYLESHEET
================================================== */

:root {
    --white: #ffffff;
    --black: #111111;
    --dark: #0d1012;
    --dark-soft: #17191b;

    --gray-light: #f5f5f5;
    --gray-lighter: #f8f8f8;

    --gray: #777777;
    --gray-dark: #555555;

    --border: #e5e5e5;

    --navbar-height: 82px;

    --page-padding: 7%;
    --max-width: 1250px;
}


/* ==================================================
   RESET
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    width: 100%;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: var(--white);

    color: var(--black);

    overflow-x: hidden;
}


main {
    width: 100%;
    display: block;
}


img {
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
select {
    font: inherit;
}


button {
    cursor: pointer;
}


/* ==================================================
   GLOBAL TEXT
================================================== */

.small-title {
    margin-bottom: 12px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* ==================================================
   NAVBAR
================================================== */

.navbar {
    width: 100%;
    height: var(--navbar-height);

    padding: 0 var(--page-padding);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    position: fixed;

    top: 0;
    left: 0;

    z-index: 1000;

    background:
        rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgba(0, 0, 0, 0.06);
}


.logo {
    flex-shrink: 0;

    font-size: 21px;
    font-weight: 900;

    letter-spacing: 1.5px;
}


.logo span {
    font-weight: 400;
}


.navbar nav {
    display: flex;

    align-items: center;

    gap: 32px;

    margin-left: auto;
}


.navbar nav a {
    position: relative;

    font-size: 13px;
    font-weight: 700;
}


.navbar nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--black);

    transition: width 0.3s ease;
}


.navbar nav a:hover::after {
    width: 100%;
}


/* NAVBAR SEARCH */

.search-toggle {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: none;

    background: transparent;

    color: var(--black);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


.search-toggle svg {
    width: 23px;
    height: 23px;

    display: block;
}


.search-toggle:hover {
    transform: scale(1.08);

    opacity: 0.6;
}


/* ==================================================
   HERO
================================================== */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    padding:
        140px
        var(--page-padding)
        90px;

    background-image:
        url("../assets/images/hero.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    color: var(--white);

    overflow: hidden;
}


.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.84) 0%,
            rgba(0, 0, 0, 0.62) 42%,
            rgba(0, 0, 0, 0.20) 75%,
            rgba(0, 0, 0, 0.08) 100%
        );
}


.hero-content {
    width: 100%;
    max-width: 820px;

    position: relative;

    z-index: 2;

    animation:
        heroEntrance
        0.9s
        ease
        forwards;
}


.hero-label {
    margin-bottom: 22px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 3px;

    opacity: 0.82;
}


.hero h1 {
    max-width: 850px;

    margin-bottom: 28px;

    font-size:
        clamp(
            55px,
            7vw,
            96px
        );

    line-height: 0.94;

    letter-spacing: -4px;

    font-weight: 800;
}


.hero-description {
    max-width: 610px;

    margin-bottom: 36px;

    font-size: 18px;

    line-height: 1.7;

    color:
        rgba(
            255,
            255,
            255,
            0.82
        );
}


.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 45px;
}


.hero-primary-button,
.hero-secondary-button {
    min-height: 52px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0 31px;

    font-size: 13px;
    font-weight: 900;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.hero-primary-button {
    background: var(--white);

    color: var(--black);
}


.hero-secondary-button {
    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.65
        );

    color: var(--white);

    backdrop-filter: blur(7px);
}


.hero-primary-button:hover,
.hero-secondary-button:hover {
    transform: translateY(-4px);
}


.hero-primary-button:hover {
    box-shadow:
        0
        15px
        35px
        rgba(
            0,
            0,
            0,
            0.25
        );
}


.hero-secondary-button:hover {
    background:
        rgba(
            255,
            255,
            255,
            0.12
        );
}


.hero-benefits {
    display: flex;

    flex-wrap: wrap;

    gap: 30px;

    font-size: 12px;
    font-weight: 700;

    color:
        rgba(
            255,
            255,
            255,
            0.72
        );
}


.hero-benefits span {
    position: relative;
}


.hero-benefits
span:not(:last-child)::after {
    content: "•";

    position: absolute;

    right: -18px;

    color:
        rgba(
            255,
            255,
            255,
            0.35
        );
}


@keyframes heroEntrance {

    from {
        opacity: 0;
        transform:
            translateY(30px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }

}


/* ==================================================
   BRANDS
================================================== */

.brands-section {
    width: 100%;

    padding: 85px 0 75px;

    background: var(--dark);

    color: var(--white);

    overflow: hidden;
}


.brands-heading {
    width: 100%;
    max-width: 1000px;

    margin:
        0
        auto
        45px;

    padding:
        0
        25px;

    text-align: center;
}


.brands-heading h2 {
    max-width: 900px;

    margin:
        0
        auto
        18px;

    font-size:
        clamp(
            32px,
            4vw,
            52px
        );

    line-height: 1.05;

    letter-spacing: -2px;
}


.brands-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: #aaaaaa;

    font-size: 16px;

    line-height: 1.6;
}


.brands-slider {
    width: 100%;

    position: relative;

    overflow: hidden;
}


.brands-track {
    width: max-content;

    display: flex;

    flex-direction: row;

    flex-wrap: nowrap;

    align-items: center;

    gap: 65px;

    padding: 20px 0;

    animation:
        brandsInfiniteScroll
        38s
        linear
        infinite;
}


.brand-item {
    width: 145px;
    height: 90px;

    flex:
        0
        0
        145px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: transparent;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


.brand-item img {
    width: auto;
    height: auto;

    max-width: 115px;
    max-height: 62px;

    display: block;

    object-fit: contain;

    opacity: 0.85;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


.brand-item:hover {
    transform: scale(1.10);
}


.brand-item:hover img {
    opacity: 1;

    transform: scale(1.05);
}


.brands-slider:hover
.brands-track {
    animation-play-state:
        paused;
}


.brands-slider::before,
.brands-slider::after {
    content: "";

    width: 100px;
    height: 100%;

    position: absolute;

    top: 0;

    z-index: 5;

    pointer-events: none;
}


.brands-slider::before {
    left: 0;

    background:
        linear-gradient(
            to right,
            var(--dark),
            transparent
        );
}


.brands-slider::after {
    right: 0;

    background:
        linear-gradient(
            to left,
            var(--dark),
            transparent
        );
}


@keyframes brandsInfiniteScroll {

    from {
        transform:
            translateX(0);
    }

    to {
        transform:
            translateX(-50%);
    }

}


/* ==================================================
   GENERAL SECTIONS
================================================== */

.section {
    width: 100%;

    display: block;

    padding:
        110px
        var(--page-padding);

    position: relative;
}


.gray-section {
    background:
        var(--gray-light);
}


.section-heading {
    width: 100%;
    max-width: 750px;

    margin-bottom: 55px;
}


.section-heading h2 {
    margin-bottom: 18px;

    font-size:
        clamp(
            38px,
            5vw,
            58px
        );

    line-height: 1.05;

    letter-spacing: -2px;
}


.section-heading
> p:not(.small-title) {
    color: #666666;

    font-size: 17px;

    line-height: 1.7;
}


/* ==================================================
   PRODUCT / VEHICLE TYPES
================================================== */

.vehicle-types-section {
    width: 100%;

    padding:
        110px
        var(--page-padding);

    background: var(--dark);

    color: var(--white);
}


.vehicle-types-heading {
    width: 100%;
    max-width: 750px;

    margin-bottom: 50px;
}


.vehicle-types-heading h2 {
    margin-bottom: 15px;

    font-size:
        clamp(
            40px,
            5vw,
            60px
        );

    line-height: 1.05;

    letter-spacing: -2px;
}


.vehicle-types-heading
> p:not(.small-title) {
    color: #aaaaaa;

    font-size: 16px;

    line-height: 1.6;
}


.vehicle-types-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 20px;
}


.electric-types-grid {
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );
}


.vehicle-type-card {
    width: 100%;
    height: 420px;

    position: relative;

    display: block;

    overflow: hidden;

    color: var(--white);

    cursor: pointer;
}


a.vehicle-type-card {
    color: inherit;

    text-decoration: none;
}


.vehicle-type-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}


.vehicle-type-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(
                0,
                0,
                0,
                0.84
            ),
            rgba(
                0,
                0,
                0,
                0.08
            )
            65%
        );

    transition:
        background
        0.4s ease;
}


.vehicle-type-content {
    position: absolute;

    left: 35px;
    right: 35px;
    bottom: 32px;

    z-index: 2;
}


.vehicle-type-content p {
    margin-bottom: 7px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 3px;

    opacity: 0.7;
}


.vehicle-type-content h3 {
    margin-bottom: 12px;

    font-size: 38px;

    line-height: 1.05;

    letter-spacing: -1px;
}


.vehicle-type-content span {
    font-size: 13px;
    font-weight: 700;

    opacity: 0.8;
}


.vehicle-type-card:hover img {
    transform:
        scale(1.07);
}


.vehicle-type-card:hover
.vehicle-type-overlay {
    background:
        linear-gradient(
            to top,
            rgba(
                0,
                0,
                0,
                0.92
            ),
            rgba(
                0,
                0,
                0,
                0.15
            )
            65%
        );
}


/* ==================================================
   CATALOG PAGE HEADER
================================================== */

.catalog-page-header {
    width: 100%;

    padding:
        175px
        var(--page-padding)
        85px;

    background: var(--dark);

    color: var(--white);
}


.catalog-page-header h1 {
    width: 100%;
    max-width: 950px;

    margin-bottom: 25px;

    font-size:
        clamp(
            50px,
            7vw,
            88px
        );

    line-height: 0.98;

    letter-spacing: -4px;
}


.catalog-page-header
> p:not(.small-title) {
    max-width: 680px;

    color: #b7b7b7;

    font-size: 17px;

    line-height: 1.7;
}


/* ==================================================
   INVENTORY FILTERS
================================================== */

.inventory-filter-panel {
    width: 100%;
    max-width: var(--max-width);

    margin:
        0
        auto
        65px;

    padding: 25px;

    background: var(--gray-lighter);

    border:
        1px solid
        var(--border);
}


.inventory-search {
    width: 100%;

    margin-bottom: 15px;
}


.inventory-search input {
    width: 100%;
    height: 58px;

    padding: 0 20px;

    border:
        1px solid
        #dddddd;

    background: var(--white);

    color: var(--black);

    font-size: 15px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.inventory-search input:focus {
    border-color: var(--black);

    box-shadow:
        0
        0
        0
        2px
        rgba(
            0,
            0,
            0,
            0.05
        );
}


.filter-row {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(
                155px,
                1fr
            )
        );

    gap: 12px;
}


.filter-field {
    width: 100%;
}


.filter-row select,
.filter-field select,
.advanced-filters select {
    width: 100%;
    height: 52px;

    padding: 0 14px;

    border:
        1px solid
        #dddddd;

    background: var(--white);

    color: #222222;

    font-size: 13px;

    outline: none;

    cursor: pointer;
}


.more-filters-button {
    min-height: 52px;

    padding: 0 22px;

    border: none;

    background: var(--black);

    color: var(--white);

    font-size: 13px;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


.more-filters-button:hover {
    transform:
        translateY(-2px);

    opacity: 0.85;
}


.advanced-filters {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(
                155px,
                1fr
            )
        );

    gap: 12px;

    margin-top: 12px;
}


.advanced-filters.hidden {
    display: none;
}


.car-only-filter.filter-hidden {
    display: none;
}


.filter-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 20px;

    padding-top: 18px;

    border-top:
        1px solid
        #e1e1e1;
}


#results-count,
#car-results-count,
#motorcycle-results-count,
#electric-results-count,
#scooter-results-count {
    color: #666666;

    font-size: 13px;
    font-weight: 700;
}


.reset-filters-button {
    border: none;

    background: transparent;

    color: var(--black);

    font-size: 13px;
    font-weight: 800;

    text-decoration: underline;
}


/* ==================================================
   CATALOG RESULTS HEADER
================================================== */

.catalog-results-header {
    width: 100%;
    max-width: var(--max-width);

    margin:
        90px
        auto
        35px;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}


.catalog-results-header h2 {
    font-size:
        clamp(
            32px,
            4vw,
            48px
        );

    letter-spacing: -1.5px;
}


/* NO RESULTS */

.no-results {
    grid-column: 1 / -1;

    width: 100%;

    padding: 80px 20px;

    text-align: center;

    background: var(--gray-lighter);
}


.no-results h3 {
    margin-bottom: 10px;

    font-size: 28px;
}


.no-results p {
    color: var(--gray);

    line-height: 1.6;
}


/* ==================================================
   BENEFITS / FINANCING
================================================== */

#financing {
    background: var(--gray-light);

    color: var(--black);
}


#financing .section-heading {
    max-width: 900px;

    margin:
        0
        auto
        55px;

    text-align: center;
}


.benefits {
    width: 100%;
    max-width: var(--max-width);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 20px;
}


.benefit-card {
    min-height: 230px;

    padding: 35px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: var(--white);

    border:
        1px solid
        #ededed;

    color: var(--black);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.benefit-card:hover {
    transform:
        translateY(-7px);

    box-shadow:
        0
        18px
        40px
        rgba(
            0,
            0,
            0,
            0.08
        );
}


.benefit-card h3 {
    margin-bottom: 17px;

    font-size: 21px;
}


.benefit-card p {
    color: #666666;

    font-size: 15px;

    line-height: 1.7;
}


/* ==================================================
   ABOUT
================================================== */

#about {
    background: var(--dark);

    color: var(--white);
}


.about {
    width: 100%;
    max-width: var(--max-width);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 100px;

    align-items: start;
}


.about h2 {
    max-width: 580px;

    font-size:
        clamp(
            42px,
            5vw,
            66px
        );

    line-height: 1;

    letter-spacing: -2.5px;
}


.about p {
    margin-bottom: 22px;

    color: #b7b7b7;

    font-size: 16px;

    line-height: 1.8;
}


.about strong {
    color: var(--white);
}

/* ==================================================
   CUSTOMER REVIEWS
================================================== */

.reviews-preview {
    text-align: center;
    background: #f7f7f7;
}

.reviews-preview-content {
    max-width: 760px;
    margin: 0 auto;
}

.reviews-eyebrow {
    margin-bottom: 14px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.6;
}

.reviews-stars {
    margin-bottom: 14px;
    font-size: 2rem;
    letter-spacing: 6px;
}

.reviews-preview h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
}

.reviews-rating {
    margin-bottom: 14px;
    font-size: 1rem;
}

.reviews-rating strong {
    margin-right: 8px;
    font-size: 1.25rem;
}

.reviews-description {
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.7;
    opacity: 0.75;
}

.reviews-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;
    padding: 0 28px;

    border-radius: 999px;

    background: #111;
    color: #fff;

    font-weight: 700;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.reviews-button:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

/* ==================================================
   CONTACT
================================================== */

.contact-section {
    width: 100%;

    padding:
        120px
        var(--page-padding);

    text-align: center;

    background: #080808;

    color: var(--white);
}


.contact-section h2 {
    max-width: 800px;

    margin:
        0
        auto
        20px;

    font-size:
        clamp(
            42px,
            6vw,
            70px
        );

    line-height: 1;

    letter-spacing: -2px;
}


.contact-section
> p:not(.small-title) {
    max-width: 680px;

    margin:
        0
        auto
        40px;

    color: #b9b9b9;

    font-size: 17px;

    line-height: 1.7;
}


.whatsapp-button {
    min-height: 52px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0 32px;

    background: var(--white);

    color: var(--black);

    font-size: 14px;
    font-weight: 900;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.whatsapp-button:hover {
    transform:
        translateY(-4px);

    box-shadow:
        0
        15px
        35px
        rgba(
            255,
            255,
            255,
            0.12
        );
}


/* ==================================================
   FOOTER
================================================== */

footer {
    width: 100%;

    padding:
        42px
        var(--page-padding);

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 30px;

    background: var(--white);
}


footer p {
    color: #777777;

    font-size: 12px;
}


/* ==================================================
   GLOBAL SEARCH OVERLAY
================================================== */

.global-search-overlay {
    position: fixed;

    inset: 0;

    z-index: 5000;

    background:
        rgba(
            10,
            10,
            10,
            0.98
        );

    color: var(--white);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(-15px);

    overflow-y: auto;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
}


.global-search-overlay.active {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.global-search-container {
    width:
        min(
            1100px,
            88%
        );

    margin: 0 auto;

    padding:
        100px
        0
        80px;
}


.global-search-top {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    gap: 30px;

    margin-bottom: 45px;
}


.global-search-label {
    margin-bottom: 12px;

    color: #888888;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;
}


.global-search-top h2 {
    font-size:
        clamp(
            38px,
            6vw,
            70px
        );

    line-height: 1;

    letter-spacing: -3px;
}


.search-close {
    border: none;

    background: transparent;

    color: var(--white);

    font-size: 50px;
    font-weight: 200;

    line-height: 1;
}


.global-search-box {
    width: 100%;
    height: 75px;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 0 24px;

    background: var(--white);

    color: var(--black);
}


.global-search-box input {
    width: 100%;

    border: none;

    outline: none;

    background: transparent;

    color: var(--black);

    font-size: 19px;
}


.global-search-count {
    margin:
        22px
        0
        30px;

    color: #999999;

    font-size: 13px;
}


.global-search-results {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 15px;
}


.global-search-result {
    display: grid;

    grid-template-columns:
        130px
        minmax(0, 1fr);

    gap: 20px;

    align-items: center;

    padding: 15px;

    background: #171717;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.global-search-result:hover {
    background: #222222;

    transform:
        translateY(-3px);
}


.global-search-result img {
    width: 130px;
    height: 90px;

    object-fit: cover;
}


.global-search-result h3 {
    margin-bottom: 7px;

    font-size: 17px;
}


.global-search-result p {
    color: #999999;

    font-size: 13px;
}


.global-search-empty {
    grid-column: 1 / -1;

    padding: 50px 0;

    color: #999999;

    text-align: center;
}


/* ==================================================
   REVEAL
================================================== */

.reveal {
    opacity: 1;

    transform:
        translateY(0);
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1050px) {

    .cars-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }


    .benefits {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }


    .about {
        grid-template-columns:
            1fr;

        gap: 50px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 750px) {

    :root {
        --navbar-height: 72px;
        --page-padding: 6%;
    }


    .navbar {
        padding:
            0
            5%;
    }


    .navbar nav {
        display: none;
    }


    .logo {
        font-size: 18px;
    }


    .hero {
        min-height: 90vh;

        padding:
            120px
            var(--page-padding)
            70px;
    }


    .hero h1 {
        font-size: 49px;

        letter-spacing: -2px;
    }


    .hero-description {
        font-size: 16px;
    }


    .brands-section {
        padding:
            65px
            0;
    }


    .brands-heading {
        margin-bottom: 35px;
    }


    .brands-track {
        gap: 40px;

        animation-duration: 30s;
    }


    .brand-item {
        width: 110px;
        height: 75px;

        flex-basis: 110px;
    }


    .brand-item img {
        max-width: 90px;
        max-height: 50px;
    }


    .brands-slider::before,
    .brands-slider::after {
        width: 45px;
    }


    .section,
    .vehicle-types-section {
        padding:
            80px
            var(--page-padding);
    }


    .vehicle-types-grid,
    .electric-types-grid {
        grid-template-columns:
            1fr;
    }


    .vehicle-type-card {
        height: 330px;
    }


    .vehicle-type-content {
        left: 25px;
        right: 25px;
        bottom: 25px;
    }


    .vehicle-type-content h3 {
        font-size: 32px;
    }


    .catalog-page-header {
        padding:
            135px
            var(--page-padding)
            65px;
    }


    .catalog-page-header h1 {
        font-size: 52px;

        letter-spacing: -2px;
    }


    .inventory-filter-panel {
        padding: 15px;
    }


    .filter-row,
    .advanced-filters {
        grid-template-columns:
            1fr;
    }


    .filter-bottom {
        flex-direction: column;

        align-items: flex-start;
    }


    .catalog-results-header {
        margin-top: 65px;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }


    .cars-grid {
        grid-template-columns:
            1fr;
    }


    .benefits {
        grid-template-columns:
            1fr;
    }


    .benefit-card {
        min-height: auto;
    }


    .about h2 {
        font-size: 44px;
    }


    .contact-section {
        padding:
            90px
            var(--page-padding);
    }


    footer {
        flex-direction: column;

        text-align: center;
    }


    .global-search-container {
        width: 90%;

        padding-top: 70px;
    }


    .global-search-results {
        grid-template-columns:
            1fr;
    }


    .global-search-result {
        grid-template-columns:
            100px
            minmax(0, 1fr);
    }


    .global-search-result img {
        width: 100px;
        height: 75px;
    }

}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (
    prefers-reduced-motion:
    reduce
) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;

        transition-duration: 0.01ms;
    }

}

/* ==================================================
   REVIEWS PAGE
================================================== */

.reviews-hero {
    min-height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 150px 24px 90px;

    background:
        radial-gradient(
            circle at top,
            #303030 0%,
            #171717 45%,
            #0d0d0d 100%
        );

    color: #fff;

    text-align: center;
}


.reviews-hero-content {
    width: 100%;
    max-width: 850px;
}


.reviews-kicker {
    margin-bottom: 20px;

    font-size: 0.76rem;
    font-weight: 700;

    letter-spacing: 0.22em;

    text-transform: uppercase;

    opacity: 0.55;
}


.reviews-main-stars {
    margin-bottom: 22px;

    font-size: 2rem;

    letter-spacing: 8px;
}


.reviews-hero h1 {
    margin: 0 0 25px;

    font-size:
        clamp(
            3rem,
            7vw,
            6rem
        );

    line-height: 0.95;

    letter-spacing: -0.045em;
}


.reviews-rating-text {
    margin-bottom: 20px;

    font-size: 1rem;

    opacity: 0.9;
}


.reviews-rating-text strong {
    margin-right: 8px;

    font-size: 1.35rem;
}


.reviews-hero-description {
    max-width: 560px;

    margin: 0 auto;

    line-height: 1.7;

    opacity: 0.65;
}



/* ==================================================
   TOOLBAR
================================================== */

.reviews-toolbar {
    position: sticky;
    top: 70px;

    z-index: 20;

    padding: 18px 24px;

    border-bottom:
        1px solid
        rgba(0, 0, 0, 0.07);

    background:
        rgba(255, 255, 255, 0.92);

    backdrop-filter:
        blur(18px);
}


.reviews-toolbar-inner {
    max-width: 1250px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.reviews-filter-buttons {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;
}


.review-filter {
    min-height: 42px;

    padding: 0 21px;

    border:
        1px solid
        rgba(0, 0, 0, 0.12);

    border-radius: 999px;

    background: #fff;
    color: #111;

    font: inherit;
    font-size: 0.85rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}


.review-filter:hover {
    transform: translateY(-2px);
}


.review-filter.active {
    background: #111;
    color: #fff;

    border-color: #111;
}


#reviews-count {
    margin: 0;

    font-size: 0.86rem;

    opacity: 0.55;
}



/* ==================================================
   GALLERY
================================================== */

.reviews-gallery {
    max-width: 1250px;

    margin: 0 auto;

    padding: 70px 24px 110px;
}


.reviews-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 26px;
}



/* ==================================================
   CARDS
================================================== */

.review-card {
    overflow: hidden;

    border:
        1px solid
        rgba(0, 0, 0, 0.06);

    border-radius: 24px;

    background: #fff;

    box-shadow:
        0 8px 30px
        rgba(0, 0, 0, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.review-card:hover {
    transform:
        translateY(-7px);

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.12);
}



/* ==================================================
   VIDEO PREVIEW
================================================== */

.review-video-preview {
    width: 100%;

    aspect-ratio: 4 / 3;

    padding: 0;

    border: 0;

    display: block;

    cursor: pointer;

    background: none;
}


.review-video-background {
    width: 100%;
    height: 100%;

    position: relative;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 18px;

    background:
        radial-gradient(
            circle at 50% 35%,
            #424242 0%,
            #252525 42%,
            #151515 100%
        );

    color: #fff;
}


.review-video-number {
    position: absolute;

    top: 20px;
    left: 20px;

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.13em;

    opacity: 0.65;
}


.review-big-play {
    width: 74px;
    height: 74px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding-left: 5px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.95);

    color: #111;

    font-size: 1.4rem;

    box-shadow:
        0 12px 35px
        rgba(0, 0, 0, 0.25);

    transition:
        transform 0.25s ease;
}


.review-video-card:hover
.review-big-play {
    transform: scale(1.08);
}


.review-video-label {
    font-size: 0.8rem;

    opacity: 0.55;
}



/* ==================================================
   PHOTO
================================================== */

.review-photo-preview {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    padding: 0;

    border: 0;

    overflow: hidden;

    display: block;

    background: #eee;

    cursor: pointer;
}


.review-photo-preview img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}


.review-photo-card:hover
.review-photo-preview img {
    transform: scale(1.04);
}


.review-photo-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;
    justify-content: center;

    padding: 22px;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.55),
            transparent 45%
        );

    color: #fff;

    opacity: 0;

    transition:
        opacity 0.25s ease;
}


.review-photo-card:hover
.review-photo-overlay {
    opacity: 1;
}


.review-photo-overlay span {
    font-size: 0.8rem;
    font-weight: 700;
}



/* ==================================================
   CARD BOTTOM
================================================== */

.review-card-bottom {
    padding: 20px 22px 22px;
}


.review-small-stars {
    margin-bottom: 9px;

    font-size: 0.77rem;

    letter-spacing: 2px;
}


.review-card-bottom p {
    margin: 0;

    font-size: 0.9rem;
    font-weight: 600;
}



/* ==================================================
   LOAD MORE
================================================== */

.reviews-load-more-wrapper {
    padding-top: 50px;

    text-align: center;
}


.reviews-load-more {
    min-height: 52px;

    padding: 0 32px;

    border: 0;

    border-radius: 999px;

    background: #111;
    color: #fff;

    font: inherit;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


.reviews-load-more:hover {
    transform:
        translateY(-2px);

    opacity: 0.88;
}



/* ==================================================
   BOTTOM CTA
================================================== */

.reviews-bottom-cta {
    padding: 110px 24px;

    text-align: center;

    background: #f5f5f5;
}


.reviews-bottom-content {
    max-width: 700px;

    margin: 0 auto;
}


.reviews-bottom-content h2 {
    margin-bottom: 18px;

    font-size:
        clamp(
            2.4rem,
            5vw,
            4.5rem
        );

    letter-spacing: -0.035em;
}


.reviews-bottom-content > p:not(
    .reviews-kicker
) {
    max-width: 550px;

    margin:
        0 auto 30px;

    line-height: 1.7;

    opacity: 0.65;
}


.reviews-contact-button {
    display: inline-flex;

    min-height: 52px;

    padding: 0 30px;

    align-items: center;
    justify-content: center;

    border-radius: 999px;

    background: #111;
    color: #fff;

    text-decoration: none;
    font-weight: 700;

    transition:
        transform 0.2s ease;
}


.reviews-contact-button:hover {
    transform:
        translateY(-2px);
}



/* ==================================================
   MODAL
================================================== */

.review-modal {
    position: fixed;

    inset: 0;

    z-index: 10000;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 70px 22px 30px;

    background:
        rgba(5, 5, 5, 0.94);

    backdrop-filter:
        blur(12px);
}


.review-modal.active {
    display: flex;
}


.review-modal-content {
    width: 100%;

    max-width: 960px;

    max-height: 85vh;

    display: flex;

    align-items: center;
    justify-content: center;
}


.review-modal-video,
.review-modal-photo {
    display: block;

    width: auto;

    max-width: 100%;
    max-height: 82vh;

    border-radius: 22px;

    background: #000;

    box-shadow:
        0 25px 80px
        rgba(0, 0, 0, 0.45);
}


.review-modal-close {
    position: absolute;

    top: 20px;
    right: 24px;

    width: 48px;
    height: 48px;

    border: 0;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.12);

    color: #fff;

    font-size: 2rem;

    cursor: pointer;
}



/* ==================================================
   TABLET
================================================== */

@media (
    max-width: 900px
) {

    .reviews-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}



/* ==================================================
   MOBILE
================================================== */

@media (
    max-width: 620px
) {

    .reviews-hero {
        min-height: auto;

        padding:
            130px 20px 75px;
    }


    .reviews-main-stars {
        font-size: 1.6rem;

        letter-spacing: 5px;
    }


    .reviews-toolbar {
        top: 60px;

        padding:
            14px 16px;
    }


    .reviews-toolbar-inner {
        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .reviews-gallery {
        padding:
            45px 17px
            80px;
    }


    .reviews-grid {
        grid-template-columns:
            1fr;

        gap: 20px;
    }


    .review-card {
        border-radius: 20px;
    }


    .reviews-bottom-cta {
        padding:
            80px 20px;
    }

}
/* ==================================================
   SIMPLE FLOATING REVIEWS
================================================== */

.reviews-simple-section {
    max-width: 1350px;

    margin: 0 auto;

    padding: 70px 24px 110px;
}


.reviews-simple-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 40px;
}


.reviews-filter-buttons {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}


.review-filter {
    min-height: 44px;

    padding: 0 22px;

    border:
        1px solid
        rgba(0, 0, 0, 0.12);

    border-radius: 999px;

    background: #fff;
    color: #111;

    font: inherit;
    font-size: 0.85rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}


.review-filter:hover {
    transform:
        translateY(-2px);
}


.review-filter.active {
    background: #111;
    color: #fff;

    border-color: #111;
}


#reviews-count {
    margin: 0;

    font-size: 0.85rem;

    opacity: 0.55;
}


/* ==================================================
   FLOATING GRID
================================================== */

.reviews-floating-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 26px;
}


/* ==================================================
   MEDIA
================================================== */

.review-media-item {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    padding: 0;

    overflow: hidden;

    border: 0;

    border-radius: 22px;

    background: #181818;

    cursor: pointer;

    box-shadow:
        0 10px 28px
        rgba(0, 0, 0, 0.10);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.review-media-item:hover {
    transform:
        translateY(-7px);

    box-shadow:
        0 22px 45px
        rgba(0, 0, 0, 0.16);
}


/* ==================================================
   PHOTOS
================================================== */

.review-photo-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}


.review-photo-item:hover img {
    transform:
        scale(1.035);
}


/* ==================================================
   VIDEO PLACEHOLDER
================================================== */

.review-video-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #404040 0%,
            #252525 45%,
            #111 100%
        );
}


.review-video-icon {
    width: 74px;
    height: 74px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding-left: 5px;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            0.95
        );

    color: #111;

    font-size: 1.35rem;

    box-shadow:
        0 12px 35px
        rgba(0, 0, 0, 0.25);

    transition:
        transform 0.25s ease;
}


.review-video-item:hover
.review-video-icon {
    transform:
        scale(1.1);
}


/* ==================================================
   LOAD MORE
================================================== */

.reviews-load-more-wrapper {
    margin-top: 50px;

    text-align: center;
}


.reviews-load-more {
    min-height: 52px;

    padding: 0 32px;

    border: 0;

    border-radius: 999px;

    background: #111;
    color: #fff;

    font: inherit;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


.reviews-load-more:hover {
    transform:
        translateY(-2px);

    opacity: 0.88;
}


/* ==================================================
   MODAL
================================================== */

.review-modal {
    position: fixed;

    inset: 0;

    z-index: 10000;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 70px 22px 30px;

    background:
        rgba(0, 0, 0, 0.94);

    backdrop-filter:
        blur(12px);
}


.review-modal.active {
    display: flex;
}


.review-modal-content {
    width: 100%;

    max-width: 1000px;

    max-height: 85vh;

    display: flex;

    align-items: center;
    justify-content: center;
}


.review-modal-photo,
.review-modal-video {
    display: block;

    width: auto;

    max-width: 100%;
    max-height: 82vh;

    border-radius: 20px;

    background: #000;

    box-shadow:
        0 30px 90px
        rgba(0, 0, 0, 0.5);
}


.review-modal-close {
    position: absolute;

    top: 20px;
    right: 25px;

    width: 48px;
    height: 48px;

    border: 0;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            0.13
        );

    color: #fff;

    font-size: 2rem;

    cursor: pointer;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .reviews-floating-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 620px) {

    .reviews-simple-section {
        padding:
            50px 16px
            80px;
    }


    .reviews-simple-header {
        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .reviews-floating-grid {
        grid-template-columns:
            1fr;

        gap: 20px;
    }


    .review-media-item {
        border-radius: 18px;
    }

}

/* ==================================================
   MOTORCYCLE INVENTORY
================================================== */

#motorcycle-results {
    max-width: 1250px;

    margin:
        0 auto;

    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 28px;

    padding:
        10px 0
        50px;
}


/* ==================================================
   MOTORCYCLE CARD
================================================== */

.motorcycle-card {
    position: relative;

    overflow: hidden;

    border-radius: 24px;

    background: #fff;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.09);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.motorcycle-card:hover {
    transform:
        translateY(-7px);

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.15);
}


.motorcycle-card-link {
    display: block;

    color: inherit;

    text-decoration: none;
}


/* ==================================================
   IMAGE
================================================== */

.motorcycle-image-wrapper {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 24px;

    background: #f4f4f4;
}


.motorcycle-image-wrapper img {
    width: 100%;

    height: auto;

    display: block;

    object-fit: contain;

    transition:
        transform 0.35s ease;
}


.motorcycle-card:hover
.motorcycle-image-wrapper img {
    transform:
        scale(1.015);
}


/* ==================================================
   DARK GRADIENT
================================================== */

.motorcycle-image-gradient {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 34%;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.42) 50%,
            transparent 100%
        );
}


/* ==================================================
   NAME + PRICE
================================================== */

.motorcycle-card-info {
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 18px;

    z-index: 2;

    color: #fff;
}


.motorcycle-card-info h3 {
    margin: 0 0 5px;

    max-width: 95%;

    font-size: 1rem;
    font-weight: 700;

    line-height: 1.3;

    letter-spacing:
        -0.01em;

    text-transform: uppercase;

    text-shadow:
        0 2px 10px
        rgba(0, 0, 0, 0.45);
}


.motorcycle-card-info p {
    margin: 0;

    font-size: 1.18rem;
    font-weight: 800;

    line-height: 1.2;

    text-shadow:
        0 2px 10px
        rgba(0, 0, 0, 0.45);
}


/* ==================================================
   NO RESULTS
================================================== */

.motorcycle-no-results {
    grid-column:
        1 / -1;

    padding:
        80px 30px;

    border-radius: 22px;

    text-align: center;

    background: #f5f5f5;
}


/* ==================================================
   TABLET
================================================== */

@media (
    max-width: 950px
) {

    #motorcycle-results {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 22px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (
    max-width: 620px
) {

    #motorcycle-results {
        grid-template-columns:
            1fr;

        gap: 20px;
    }


    .motorcycle-card {
        border-radius: 20px;
    }


    .motorcycle-image-wrapper {
        border-radius: 20px;
    }


    .motorcycle-card-info {
        left: 17px;
        right: 17px;
        bottom: 16px;
    }

}

/* ==================================================
   MOTORCYCLES - PREMIUM GRID
================================================== */

.motorcycle-grid {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* ==================================================
   CARD
================================================== */

.motorcycle-card {
    background: #ffffff;

    border-radius: 24px;

    overflow: hidden;

    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.motorcycle-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.14);
}


.motorcycle-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}


/* ==================================================
   IMAGE BLOCK
================================================== */

.motorcycle-card-media {
    position: relative;

    width: 100%;

    background: #111;

    overflow: hidden;
}


.motorcycle-card-media img {
    width: 100%;
    height: auto;

    display: block;

    transition: transform 0.35s ease;
}


.motorcycle-card:hover
.motorcycle-card-media img {
    transform: scale(1.015);
}


/* ==================================================
   OVERLAY
================================================== */

.motorcycle-card-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 38%;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.45) 48%,
            rgba(0, 0, 0, 0) 100%
        );

    pointer-events: none;
}


/* ==================================================
   NAME + PRICE
================================================== */

.motorcycle-card-caption {
    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 18px;

    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.motorcycle-card-caption h3 {
    margin: 0 0 6px;

    color: #ffffff;

    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;

    text-transform: uppercase;

    text-shadow:
        0 3px 12px rgba(0, 0, 0, 0.45);
}


.motorcycle-card-caption p {
    margin: 0;

    color: #ffffff;

    font-size: 1.12rem;
    font-weight: 800;

    text-shadow:
        0 3px 12px rgba(0, 0, 0, 0.45);
}


/* ==================================================
   NO RESULTS
================================================== */

.motorcycle-no-results {
    grid-column: 1 / -1;

    padding: 80px 30px;

    border-radius: 22px;

    text-align: center;

    background: #f5f5f5;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 950px) {

    .motorcycle-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

}

@media (max-width: 620px) {

    .motorcycle-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .motorcycle-card {
        border-radius: 20px;
    }

    .motorcycle-card-caption {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

}
/* ==================================================
   ELECTRIC MOBILITY TYPES
================================================== */

.electric-types-grid {
    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );
}


@media (max-width: 900px) {

    .electric-types-grid {
        grid-template-columns:
            1fr;
    }

}
/* ==================================================
   CARS INVENTORY - PREMIUM CARDS
================================================== */

.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}


/* CARD */

.car-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.09);

    border:
        1px solid rgba(0, 0, 0, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.car-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.14);
}


/* ==================================================
   IMAGE
================================================== */

.car-image-wrapper {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #f2f2f2;
}


.car-image-wrapper img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.35s ease;
}


.car-card:hover
.car-image-wrapper img {
    transform: scale(1.025);
}


/* ==================================================
   GALLERY ARROWS
================================================== */

.car-gallery-arrow {
    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    width: 38px;
    height: 38px;

    border: none;

    border-radius: 50%;

    background:
        rgba(0, 0, 0, 0.58);

    color: #ffffff;

    font-size: 20px;

    cursor: pointer;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 4;

    opacity: 0;

    transition:
        opacity 0.2s ease,
        background 0.2s ease;
}


.car-card:hover
.car-gallery-arrow {
    opacity: 1;
}


.car-gallery-arrow:hover {
    background:
        rgba(0, 0, 0, 0.85);
}


.car-gallery-prev {
    left: 12px;
}


.car-gallery-next {
    right: 12px;
}


/* COUNTER */

.car-gallery-counter {
    position: absolute;

    right: 12px;
    bottom: 12px;

    background:
        rgba(0, 0, 0, 0.72);

    color: #ffffff;

    padding:
        6px 10px;

    border-radius:
        999px;

    font-size:
        12px;

    font-weight:
        700;

    letter-spacing:
        0.03em;

    z-index: 4;
}


/* ==================================================
   CAR INFORMATION
================================================== */

.car-info {
    padding:
        20px 20px 22px;
}


.car-category {
    margin:
        0 0 7px;

    font-size:
        12px;

    font-weight:
        800;

    letter-spacing:
        0.1em;

    text-transform:
        uppercase;

    color:
        #777777;
}


/* TITLE */

.car-info h3 {
    margin:
        0 0 9px;

    font-size:
        21px;

    line-height:
        1.2;

    font-weight:
        800;

    color:
        #111111;
}


/* MILEAGE / AUTOMATIC */

.car-details {
    margin:
        0 0 14px;

    font-size:
        14px;

    line-height:
        1.55;

    color:
        #626262;
}


/* ==================================================
   DOWN PAYMENT
================================================== */

.car-info
.car-category:nth-of-type(2) {
    margin-top:
        18px;

    margin-bottom:
        3px;

    color:
        #777777;
}


.car-price {
    margin:
        0 0 8px;

    font-size:
        29px;

    line-height:
        1;

    font-weight:
        900;

    color:
        #111111;
}


/* MONTHLY PAYMENT */

.car-details strong {
    color:
        #111111;

    font-weight:
        800;
}


/* ==================================================
   DISCLAIMER
================================================== */

.car-disclaimer {
    margin:
        10px 0 18px;

    font-size:
        11px;

    line-height:
        1.45;

    color:
        #929292;
}


/* ==================================================
   WHATSAPP BUTTON
================================================== */

.car-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    min-height:
        48px;

    padding:
        12px 16px;

    border-radius:
        12px;

    background:
        #111111;

    color:
        #ffffff;

    text-decoration:
        none;

    font-size:
        14px;

    font-weight:
        800;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.car-button:hover {
    background:
        #292929;

    transform:
        translateY(-1px);
}


/* ==================================================
   RESULTS HEADER
================================================== */

.catalog-results-header {
    display: flex;

    justify-content:
        space-between;

    align-items:
        end;

    gap:
        20px;

    margin:
        55px 0 24px;
}


.catalog-results-header h2 {
    margin: 0;

    font-size:
        clamp(
            30px,
            4vw,
            46px
        );

    line-height:
        1.05;

    letter-spacing:
        -0.03em;
}


.catalog-results-header p {
    margin: 0;

    font-size:
        13px;

    font-weight:
        700;

    color:
        #666666;
}


/* ==================================================
   TABLET
================================================== */

@media (
    max-width: 1050px
) {

    .cars-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (
    max-width: 680px
) {

    .cars-grid {
        grid-template-columns:
            1fr;

        gap:
            22px;
    }


    .car-gallery-arrow {
        opacity:
            1;
    }


    .car-info {
        padding:
            18px;
    }


    .car-info h3 {
        font-size:
            20px;
    }


    .car-price {
        font-size:
            27px;
    }


    .catalog-results-header {
        align-items:
            flex-start;

        flex-direction:
            column;
    }

}