/* Basic reset and variables */
:root {
    --bg: #ffffff;
    --muted: #666667;
    --accent: #1b1b18;
    --card-: 0 6px 18px rgba(27, 27, 24, 0.06);
    --radius: 12px;
    --container: 1200px;
    font-family: 'DM Sans', sans-serif;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    margin: 0;
    background: var(--bg);
    color: var(--accent)
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px
}

/* Header */
.site-header {
    border-bottom: 1px solid #f0efee;
    background: transparent
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0
}

.brand {
    font-weight: 600;
    font-size: 18px
}

.main-nav {
    display: flex;
    gap: 14px;
    flex: 1;
    justify-content: center
}

.search-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}



.search-input {
    width: 100%;
    padding: 14px 48px 14px 20px;


    background: #fff;
    font-size: 14px;
    box-: 0 2px 8px rgba(16, 24, 40, 0.04);
    outline: none;
}

.search-input::placeholder {
    color: #9aa0a6;
}

.search-input:focus {
    border-color: #d0d7db;
    box-: 0 6px 20px rgba(27, 27, 24, 0.06);
}

.search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    height: 36px;
    width: 36px;
    border-radius: 10px;
    border: none;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


.search-btn svg {
    display: block;
}


.social {
    display: flex;
    gap: 8px
}

.social a {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #f3f3f3;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none
}

/* Search row */
.page-main {
    padding: 20px 0 30px
}

.search-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 18px 0
}

.search-input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fff;
    font-size: 14px
}

.btn {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer
}

.btn.primary {
    background: #1b1b18;
    color: #fff
}

/* Section heading */
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0 20px
}

.section-head h2 {
    margin: 0;
    font-size: 18px
}

.explore-link {
    color: #666;
    text-decoration: none;
    font-size: 14px
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px
}

.card {
    background: #fff;
    border-radius: 12px;
    box-: var(--card-);
    overflow: hidden;
    border: 1px solid #f1f1ef;
    display: flex;
    flex-direction: column
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block
}

.card-body {
    padding: 12px
}

.card-title {
    margin: 0 0 8px;
    font-size: 16px
}

.card-meta {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    align-items: center
}

.card-meta span {
    background: #fafafa;
    padding: 6px 8px;
    border-radius: 6px
}

/* Footer */
.site-footer {
    border-top: 1px solid #f0efee;
    padding: 20px 0;
    text-align: center;
    color: #777;
    font-size: 13px
}

.search-row {
    margin: 24px 0 32px;
}

.search-wrap {
    width: 100%;
}

.search-box {
    width: 628px;
    height: 60px;
    border: 1px solid #ABB7C2;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 18px 0 20px;
    box-sizing: border-box;

}

.search-box:focus-within {
    border-color: #9CA9B8;
    box-shadow: 0 0 0 4px rgba(184, 195, 207, 0.16);
}

.search-input {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 12px;
    line-height: 100%;
    font-weight: 400;
    color: #344054;
    padding: 0;
}

.search-input::placeholder {
    color: #ABB7C2;
    opacity: 1;
}

.search-button {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    flex: 0 0 auto;
    color: #B8C3CF;
}

.search-button svg {
    width: 24px;
    height: 24px;
    display: block;
}

@media (min-width:900px) {
    .search-input {
        max-width: 720px
    }

    /* Brands */
    .explore-brands {
        margin-top: 40px;
    }

    .brands-row {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 32px;
        flex-wrap: wrap;
    }

    .brand-item {
        width: 180px;
        flex: 0 0 180px;
        text-align: center;
    }

    .brand-card {
        width: 180px;
        height: 110px;
        border-radius: 12px;
        border: 1px solid #e2e2e2;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        box-: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .brand-card img {
        display: block;
        max-width: 85%;
        max-height: 100px;
        width: auto;
        height: auto;
        object-fit: contain;
        margin: 0 auto;
    }

    .brand-name {
        color: #666;
        font-size: 13px;
        line-height: 1.4;
        margin-top: 10px;
        font-weight: 500;
    }

    /* Bikes */
    .section-bikes {
        margin-top: 36px
    }

    .bikes-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 18px
    }

    .bike-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #f1f1ef;
        box-: var(--card-);
        display: flex;
        flex-direction: column
    }

    .bike-card img {
        width: 100%;
        height: 160px;
        object-fit: cover
    }

    .bike-card .card-body {
        padding: 12px
    }

    .bike-card .card-title {
        margin: 0 0 8px;
        font-size: 15px
    }

    .bike-card .card-meta {
        display: flex;
        gap: 10px;
        align-items: center
    }

    .bike-card .card-meta span {
        background: #fafafa;
        padding: 6px 8px;
        border-radius: 6px;
        font-size: 13px
    }

    .bike-card .card-meta .details {
        margin-left: auto;
        color: #5b87ff;
        text-decoration: none;
        font-size: 13px
    }

    .section-news {
        margin-top: 36px;
    }

    .news-grid {
        display: grid;
        grid-template-columns: minmax(320px, 1.7fr) 1fr;
        gap: 18px;
    }

    .news-side {
        display: grid;
        gap: 18px;
    }

    .news-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #f1f1ef;
        box-: var(--card-);
        display: flex;
        flex-direction: column;
    }

    .news-card img {
        width: 100%;
        object-fit: cover;
        display: block;
    }

    .news-main-card img {
        height: 280px;
    }

    .news-small-card img {
        height: 140px;
    }

    .news-body {
        padding: 14px 16px;
    }

    .news-label {
        margin: 0 0 10px;
        font-size: 12px;
        color: #5b87ff;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .news-card h3 {
        margin: 0;
        font-size: 16px;
        line-height: 1.4;
    }

    @media (max-width: 900px) {
        .news-grid {
            grid-template-columns: 1fr;
        }

        .news-side {
            grid-template-columns: 1fr;
        }
    }


    .card img {
        height: 180px
    }
}

/* ===== Header Improvements ===== */

.header-inner {
    justify-content: space-between;
    min-height: 72px;
}

.brand {
    width: 160px;
    /* Keeps the menu perfectly centered */
    flex-shrink: 0;
}

.site-logo {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

.main-nav p {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    transition: 0.3s ease;
}


.social {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.social a {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    font-size: 24px;
    color: #111;
    transition: 0.3s ease;
}


/* Individual icon colors */
.social .fa-facebook {
    color: #1877F2;
}

.social .fa-x-twitter {
    color: #000;
}

.social .fa-instagram {
    color: #E4405F;
}

.social .fa-youtube {
    color: #FF0000;
}


.search-input {
    width: 100%;
    height: 42px;
    padding: 0 45px 0 14px;

    outline: none;
    font-size: 13px;
    color: #555;
    background: #fff;
}

.search-input::placeholder {
    color: #9aa0a6;
}

.search-btn {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn svg {
    width: 18px;
    height: 18px;
}

/* ===========================
        AUTO NEWS
=========================== */

.news-section {
    background: #fff;
}

.news-title {
    font-size: 34px;
    font-weight: 700;
    color: #111;
}

.news-buttons {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    transition: .3s;
}



.featured-news {
    cursor: pointer;
}

.featured-news img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    transition: .4s;
}


.featured-news h3 {
    margin-top: 18px;
    font-size: 30px;
    line-height: 1.45;
    font-weight: 700;
    color: #111;
    transition: .3s;
}


.news-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    transition: .3s;
    padding-bottom: 20px;
    border-bottom: 1px solid #ececec;
}

.news-item:last-child {
    border: none;
}



.news-item img {
    width: 180px;
    height: 115px;
    object-fit: cover;
    border-radius: 14px;
    transition: .3s;
}



.news-info h5 {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    color: #111;
    transition: .3s;
}


/* Responsive */

@media(max-width:991px) {

    .featured-news img {
        height: 320px;
    }

    .featured-news h3 {
        font-size: 24px;
    }

    .news-list {
        margin-top: 30px;
    }

    .news-item img {
        width: 140px;
        height: 90px;
    }

    .news-info h5 {
        font-size: 16px;
    }

}

@media(max-width:576px) {

    .news-title {
        font-size: 26px;
    }

    .featured-news img {
        height: 220px;
    }

    .featured-news h3 {
        font-size: 20px;
    }

    .news-item {
        gap: 12px;
    }

    .news-item img {
        width: 110px;
        height: 75px;
    }

    .news-info h5 {
        font-size: 14px;
        line-height: 1.5;
    }

    .arrow-btn {
        width: 36px;
        height: 36px;
    }

}

/* ===========================
        REVIEW SECTION
===========================*/

.review-section {

    background: #fff;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #111;
}

.section-header a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    font-size: 15px;
}

.review-card,
.workshop-card {
    cursor: pointer;
    border: none;
    box-: none;
    transition: .35s;
}

.review-card img,
.workshop-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 18px;
    transition: .4s;
}



.review-card h4 {
    margin-top: 18px;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 600;
    color: #111;
    transition: .3s;
}



.workshop-card h5 {
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    color: #111;
    transition: .3s;
}



/* Responsive */

@media(max-width:992px) {

    .review-card img,
    .workshop-card img {
        height: 200px;
    }

    .review-card h4 {
        font-size: 18px;
    }

    .workshop-card h5 {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

}

@media(max-width:576px) {

    .review-card img,
    .workshop-card img {
        height: 180px;
    }

    .review-card h4 {
        font-size: 17px;
    }

    .workshop-card h5 {
        font-size: 15px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .section-header h2 {
        font-size: 24px;
    }

}

/* Responsive overrides */
body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.page-main {
    width: 100%;
    padding: 0;
}

.site-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .navbar-toggler {
    border: 1px solid #e7e7e3;
    box-: none;
}

.site-header .navbar-toggler:focus {
    box-: none;
}

.site-header .navbar-collapse {
    flex-grow: 0;
}

.site-header .nav-link {
    color: #1b1b18;
    font-weight: 600;
}



.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    color: #111;
    font-size: 20px;
    text-decoration: none;
}

.site-footer {
    padding: 0;
}

.section-head,
.section-header {
    flex-wrap: wrap;
    gap: 10px;
}

.section-head h2,
.section-header h2 {
    line-height: 1.2;
}

.cards-grid,
.bikes-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card,
.bike-card,
.news-card,
.review-card,
.workshop-card {
    height: 100%;
}

.card-meta,
.bike-card .card-meta {
    flex-wrap: wrap;
}

.news-section .container,
.review-section .container {
    max-width: 1200px;
}

.featured-news h3 {
    word-break: break-word;
}

@media (max-width: 991px) {
    .header-inner {
        padding: 10px 0;
    }

    .brand {
        width: auto;
        max-width: 100%;
    }

    .site-logo {
        width: 174px !important;
        max-width: 72vw !important;
        height: auto !important;
        object-fit: contain;
    }

    .site-header .navbar-collapse {
        width: 100%;
        padding: 14px 0 6px;
    }

    .main-nav {
        justify-content: flex-start;
        gap: 2px;
    }

    .main-nav .nav-link {
        padding-left: 0;
        padding-right: 0;
    }

    .social-links {
        margin-top: 12px;
    }

    .search-row {
        margin: 14px 0;
    }

    .news-title {
        font-size: 28px;
    }

    .featured-news img {
        height: 320px;
    }

    .featured-news h3 {
        font-size: 24px;
    }

    .news-item img {
        width: 140px;
        height: 90px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .page-main {
        padding-top: 0;
        padding-bottom: 0;
    }

    .header-inner {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        min-height: auto;
        padding: 0;
    }

    .brand {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 0 !important;
        padding: 0;
    }

    .site-logo {
        width: 174px !important;
        max-width: 72vw !important;
        height: auto !important;
        display: block;
        object-fit: contain;
    }

    .site-header .navbar-toggler {
        display: none;
    }

    .site-header .navbar-collapse {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
    }

    .main-nav {
        order: 2;
        width: 100%;
        flex: 0 0 auto;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap !important;
        margin: 2px 0 0 !important;
        overflow: visible;
    }

    .main-nav .nav-link {
        color: #000;
        font-size: 12px !important;
        font-weight: 800;
        line-height: 1;
        padding: 0 !important;
        white-space: nowrap;
    }

    .social-links {
        order: 1;
        justify-content: center !important;
        margin: -1px 0 0 !important;
        gap: 9px;
        flex-wrap: nowrap;
    }

    .social-links a {
        width: 20px;
        height: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        line-height: 1;
    }

    .social-links .fa-x-twitter {
        width: 20px;
        height: 20px;
        color: #fff;
        background: #000;
        border-radius: 3px;
        font-size: 13px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .social-links .fa-instagram {
        width: 20px;
        height: 20px;
        color: #fff;
        background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 48%, #6228d7 100%);
        border-radius: 5px;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .social-links .fa-youtube {
        font-size: 22px;
    }

    .section-head h2,
    .section-header h2 {
        font-size: 22px;
    }

    .explore-link,
    .section-header a {
        font-size: 13px;
    }

    .search-input {
        height: 44px;
        font-size: 13px;
        padding-left: 16px;
    }

    .search-btn {
        width: 34px;
        height: 34px;
    }

    @media (max-width: 360px) {
        .main-nav {
            gap: 6px;
        }

        .main-nav .nav-link {
            font-size: 11px;
        }
    }

    .cards-grid,
    .bikes-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .cards-grid::-webkit-scrollbar,
    .bikes-grid::-webkit-scrollbar,
    .brands-row::-webkit-scrollbar,
    .review-section .row::-webkit-scrollbar {
        display: none;
    }

    .cards-grid>.card,
    .bikes-grid>.bike-card {
        scroll-snap-align: start;
    }

    .section-cards .cards-grid {
        gap: 12px;
    }

    .section-cards .cards-grid>.card {
        flex: 0 0 32%;
        max-width: 40%;
        min-width: 112px;
        border: 1px solid #e9e9e9;
        border-radius: 8px;
        box-: none;
        overflow: hidden;
    }

    .section-cards .card img {
        height: 76px;
        object-fit: cover;
    }

    .section-cards .card-body {
        padding: 6px 5px 7px;
        text-align: center;
    }

    .section-cards .card-title {
        min-height: 16px;
        margin: 0 0 7px;
        font-size: 12px;
        line-height: 1.1;
        font-weight: 500;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .section-cards .card-meta {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 3px 6px;
        font-size: 8px;
        line-height: 1.1;
        color: #111;
    }

    .section-cards .card-meta span {
        background: transparent;
        border-radius: 0;
        padding: 0;
    }

    .section-cards .card-meta span:last-child {
        grid-column: 1 / -1;
        color: #0d6efd;
        font-size: 8px;
    }

    .bikes-grid>.bike-card {
        flex: 0 0 32%;
        max-width: 32%;
        min-width: 112px;
        border: 1px solid #e9e9e9;
        border-radius: 8px;
        box-: none;
        overflow: hidden;
    }

    .section-bikes .bikes-grid {
        gap: 16px;
    }

    .section-bikes .bike-card img {
        height: 80px;
        object-fit: cover;
    }

    .section-bikes .bike-card .card-body {
        padding: 6px 5px 7px;
        text-align: center;
    }

    .section-bikes .bike-card .card-title {
        min-height: 15px;
        margin: 0 0 7px;
        font-size: 10px;
        line-height: 1.1;
        font-weight: 500;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .section-bikes .bike-card .card-meta {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        align-items: center;
        gap: 3px 6px;
        color: #111;
        font-size: 8px;
        line-height: 1.1;
    }

    .section-bikes .bike-card .card-meta span {
        width: auto;
        background: transparent;
        border-radius: 0;
        padding: 0;
        font-size: 8px;
    }

    .section-bikes .bike-card .card-meta .details {
        grid-column: 1 / -1;
        margin-left: 0;
        color: #0d6efd;
        font-size: 8px;
        line-height: 1.1;
        text-decoration: none;
        white-space: nowrap;
    }

    .section-bikes .bike-card .card-meta .details i {
        font-size: 7px;
    }

    .brands-row {
        display: flex;
        gap: 25px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .brand-item {
        flex: 0 0 28%;
        max-width: 28%;
        text-align: center;
        scroll-snap-align: start;
    }

    .brand-card {
        height: 76px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border: 1px solid #e6e6e6;
        border-radius: 6px;
        box-: none;
    }

    .brand-name {
        margin-top: 7px;
        color: #000;
        font-size: 8px;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-card img {
        max-width: 86%;
        max-height: 58px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .card img,
    .bike-card img,
    .review-card img,
    .workshop-card img {
        height: 190px;
    }

    .card-title,
    .bike-card .card-title {
        font-size: 15px;
    }

    .bike-card .card-body {
        padding: 14px;
    }

    .bike-card .card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .bike-card .card-meta .details {
        margin-left: 0;
    }

    .bike-card .card-meta span {
        width: fit-content;
    }

    .featured-news img {
        height: 225px;
    }

    .featured-news h3 {
        font-size: 16px;
        line-height: 1.45;
        margin-top: 12px;
    }

    .news-list {
        margin-top: 16px;
        gap: 14px;
    }

    .news-item {
        gap: 10px;
        align-items: flex-start;
        padding-bottom: 14px;
    }

    .news-item img {
        width: 96px;
        height: 72px;
        flex: 0 0 96px;
        border-radius: 10px;
    }

    .news-info {
        flex: 1;
        min-width: 0;
    }

    .news-info h5 {
        font-size: 13px;
        line-height: 1.45;
    }

    .arrow-btn {
        width: 36px;
        height: 36px;
    }

    .review-section {
        padding: 44px 0;
    }

    .review-section .row.g-4 {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
        margin-right: -12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .review-section .row.g-4>[class*="col-"] {
        flex: 0 0 82%;
        max-width: 82%;
        scroll-snap-align: start;
    }

    .review-card h4,
    .workshop-card h5 {
        font-size: 15px;
        line-height: 1.45;
    }


}

@media (max-width: 420px) {
    .brands-row {
        display: flex;
    }

    .brand-card {
        height: 68px;
        width: 100%;
    }

    .brand-item {
        flex-basis: 36%;
        max-width: 36%;
    }

    .bike-card img {
        height: 170px;
    }

    .bike-card .card-body {
        padding: 12px;
    }

    .bike-card .card-meta {
        width: 100%;
    }

    .cards-grid>.card,
    .review-section .row.g-4>[class*="col-"] {
        flex-basis: 86%;
        max-width: 86%;
    }

    .section-bikes .bikes-grid>.bike-card {
        flex: 0 0 32%;
        max-width: 32%;
        min-width: 112px;
    }

    .section-bikes .bike-card img {
        height: 80px;
    }

    .section-bikes .bike-card .card-body {
        padding: 6px 5px 7px;
    }

    .news-item {
        flex-direction: row;
    }

    .news-item img {
        width: 110px;
        height: 80px;
        flex: 0 0 110px;
    }
}

@media (max-width: 576px) {
    .news-section.py-5 {
        padding-top: 10px !important;
        padding-bottom: 16px !important;
    }

    .news-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .news-section .mb-4 {
        margin-bottom: 12px !important;
    }

    .news-title {
        margin: 0;
        font-size: 14px;
        line-height: 1.2;
        font-weight: 800;
    }

    .news-buttons {
        display: none;
    }

    .featured-news img {
        height: 187px;
        border-radius: 0;
        object-fit: cover;
    }

    .featured-news h3 {
        margin: 8px 4px 14px;
        font-size: 13px;
        line-height: 1.35;
        font-weight: 800;
    }

    .news-list {
        margin-top: 0;
        gap: 20px;
    }

    .news-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 8px;
        padding: 0 4px;
        border-bottom: 0;
    }

    .news-item img {
        width: 106px;
        height: 80px;
        flex: 0 0 106px;
        border-radius: 0;
        object-fit: cover;
    }

    .news-info h5 {
        font-size: 12px;
        line-height: 1.65;
        font-weight: 800;
    }
}

@media (max-width: 576px) {
    .site-header.navbar {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .site-header .container.header-inner {
        max-width: 100% !important;
        padding-top: 4px !important;
        padding-bottom: 6px !important;
    }

    main.container.page-main {
        width: 100% !important;
        max-width: 100% !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .search-row {
        margin-top: 125px;
        margin-bottom: 14px;
    }

    .section-cards,
    .explore-brands,
    .section-bikes,
    .news-section,
    .review-section {
        margin-top: 0 !important;
    }

    .review-section.py-5 {
        padding-top: 16px !important;
        padding-bottom: 14px !important;
    }

    .review-section .section-header {
        margin-bottom: 16px;
    }

    .review-section .section-header.mt-5 {
        margin-top: 20px !important;
    }

    .review-section .row.g-4 {
        margin-bottom: 0;
    }

    .site-footer {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }
}



.breadcrumb {
    font-size: 14px;
    color: #555;
    padding: 15px 0;
}

.breadcrumb a {
    color: #555;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 8px;
    color: #999;
}

.breadcrumb strong {
    color: #111;
}

/* ===========================
    CAR DETAILS PAGE
=========================== */

.car-details-container {
    max-width: 1040px;
    margin: 40px auto;
    padding: 0 16px;
}

.car-details-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) 360px;
    gap: 28px;
}

.car-details-main {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 26px;
    align-items: start;
}

.car-image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px;
    max-height: 360px;
    border: 1px solid #ececec;
}

.car-main-image {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: fill;
    padding: 12px;
}

.car-info-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.car-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.car-title {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.2;
}

.car-meta-text {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.car-price-text {
    font-size: 18px;
    /* color: #d32f2f; */
    font-weight: 700;
    margin: 0;
}

.car-description {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin: 0;
    max-width: 100%;
}

.price-section {
    display: none;
}

/* Specifications */
.specs-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.specs-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 22px;
    box-: 0 18px 30px rgba(15, 23, 42, 0.06);
}

.specs-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #f3f4f6;
}

.specs-grid {
    display: grid;
    gap: 10px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    text-transform: none;
    letter-spacing: 0;
}

.spec-value {
    font-size: 14px;
    color: #111;
    font-weight: 600;
    text-align: right;
}

.review-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.review-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 20px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.review-card p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

/* Sidebar */
.car-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-: 0 8px 25px rgba(17, 17, 17, 0.04);
}

.sidebar-ad-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.sidebar-title {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin: 0;
    padding: 18px 18px 14px;
    border-bottom: 1px solid #f0f0f0;
}

.news-items {
    display: flex;
    flex-direction: column;
    max-height: 520px;
    overflow-y: auto;
}

.news-item-card {
    display: flex;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: 0.2s ease;
}

.news-item-card:last-child {
    border-bottom: none;
}


.news-item-card img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.news-item-body {
    flex: 1;
    min-width: 0;
}

.news-item-body h5 {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #111;
    font-weight: 600;
}

.latest-cars-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px 18px 18px;
}

.latest-car-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.2s ease;
}



.latest-car-card img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.latest-car-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.latest-car-body h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.latest-car-body p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.latest-car-body a {
    color: #3366ff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    margin-top: auto;
}


/* Responsive */
@media (max-width: 1024px) {
    .car-details-wrapper {
        grid-template-columns: 1fr;
    }

    .car-details-main {
        grid-template-columns: 1fr;
    }

    .car-sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .car-details-container {
        margin: 24px auto;
    }

    .car-details-main {
        grid-template-columns: 1fr;
    }

    .car-title {
        font-size: 24px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .car-image-section {
        min-height: 300px;
    }

    .price-label {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .car-details-container {
        margin: 16px auto;
        padding: 0 12px;
    }

    .car-details-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .car-image-section {
        min-height: 240px;
    }

    .car-main-image {
        padding: 12px;
    }

    .car-title {
        font-size: 18px;
    }

    .car-description {
        font-size: 13px;
    }

    .price-section {
        padding: 16px;
    }

    .price-label {
        font-size: 18px;
    }

    .price-note {
        font-size: 11px;
    }

    .specs-title {
        font-size: 14px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .spec-label {
        font-size: 11px;
    }

    .spec-value {
        font-size: 13px;
    }

    .sidebar-title {
        font-size: 14px;
    }

    .news-item-card {
        gap: 10px;
        padding: 10px;
    }

    .news-item-card img {
        width: 70px;
        height: 50px;
    }

    .news-item-body h5 {
        font-size: 11px;
    }

    .latest-car-card {
        gap: 10px;
        padding: 10px;
    }

    .latest-car-card img {
        width: 70px;
        height: 50px;
    }

    .latest-car-body h5 {
        font-size: 12px;
    }

    .latest-car-body p {
        font-size: 11px;
    }

    .latest-car-body a {
        font-size: 11px;
    }
}

/* =========================
   PAGE
========================= */

body {
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    color: #222;
}

.page-wrap {
    max-width: 1280px;
    margin: 20px auto;
    padding: 0 12px;
}

.breadcrumb-nav {
    margin-bottom: 18px;
}

.breadcrumb {
    background: none;
    padding: 0;
    font-size: 14px;
}

.breadcrumb-item a {
    color: #000;
    text-decoration: none;
}

.breadcrumb-item.active {
    font-weight: 600;
    color: #111;
}


/* =========================
   HERO
========================= */

/* .car-image-box {
    background: #f4f4f4;
    border-radius: 6px;
    overflow: hidden;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.car-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* .car-summary h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 10px;
} */

.car-summary p {
    color: #555;
    line-height: 2;
    font-size: 15px;
}





.price-note span {
    color: #666;
    margin-left: 5px;
}




/* =========================
   SPEC GRID
========================= */

.spec-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.spec-card {
    background: #fff;
}

.spec-card h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.spec-list {
    border: 1px solid #dadada;
    border-radius: 18px;
    padding: 25px;
}

.spec-list div {
    display: grid;
    grid-template-columns: 150px 1fr;
    padding: 14px 0;
    border-bottom: 1px solid #ececec;
    align-items: center;
}

.spec-list div:last-child {
    border-bottom: none;
}

/* Remove spec borders only on the two-wheeler detail page */
.twowheeler-page .spec-list,
.twowheeler-page .spec-list div {
    border: none !important;
}

.twowheeler-page .spec-list div {
    padding: 10px 0;
}

/* Left-align two-wheeler page content on mobile */
@media (max-width: 576px) {

    .twowheeler-page .spec-card h3,
    .twowheeler-page .car-summary,
    .twowheeler-page .car-summary h1,
    .twowheeler-page .car-summary p,
    .twowheeler-page .car-summary h2,
    .twowheeler-page .price-note,
    .twowheeler-page .bike-item,
    .twowheeler-page .review-section,
    .twowheeler-page .review-section h2,
    .twowheeler-page .review-summary,
    .twowheeler-page .user-review {
        text-align: left;
    }

    .twowheeler-page .spec-list div {
        grid-template-columns: 1fr;
        gap: 6px;
        text-align: left;
    }

    .twowheeler-page .bike-item {
        text-align: left;
    }

    .twowheeler-page .car-summary .price-note {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px;
    }
}

.sidebar-stack {
    position: sticky;
    top: 20px;
}

.ad-box {
    margin-bottom: 25px;
}

.ad-box img {
    width: 100%;
    border-radius: 6px;
}


/* =========================
   WIDGET
========================= */

.sidebar-widget {

    margin-bottom: 22px;
    background: #fff;
}

.sidebar-widget h3 {
    font-size: 26px;
    color: #d20000;
    font-weight: 700;
    padding: 16px 18px;
    margin: 0;
}


/* =========================
   NEWS
========================= */

.news-list {
    padding: 0 16px 18px;
}

.news-item {
    display: flex;
    gap: 14px;
    text-decoration: none;
    color: #222;
    margin-bottom: 18px;
}

.news-item img {
    width: 92px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.news-item span {
    font-size: 14px;
    line-height: 1.6;
}


/* =========================
   LATEST CARS
========================= */

.latest-list {
    padding: 0 16px 18px;
}

.latest-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: #222;
    margin-bottom: 18px;
}

.latest-item img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.latest-item span {
    display: flex;
    flex-direction: column;
}

.latest-item strong {
    font-size: 15px;
    margin-bottom: 4px;
}

.latest-item small {
    color: #555;
    font-size: 13px;
    margin-bottom: 6px;
}

.latest-item em {
    color: #0066ff;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
}

.faq-section {
    margin-top: 40px;
}

.faq-section h2 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #111;
}

.faq-card {
    background: #fff;
    border: 1px solid #dadada;
    border-radius: 18px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #ececec;
    padding: 10px 15px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 700;
    font-size: 16px;
    color: #111;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
}

.photo-section {
    margin-top: 40px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.section-heading h2 {
    font-size: 26px;
    margin: 0;
    color: #111;
}

.view-all {
    color: #0066ff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.photo-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
}


.review-section h2 {
    font-size: 26px;
    margin-bottom: 14px;
    color: #111;
}

.review-summary {

    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

.user-reviews {
    display: grid;
    gap: 5px;
}

.user-review {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    background: #fff;

    border-radius: 18px;
    padding: 10px;
    align-items: start;
}

.review-avatar {
    width: auto;
    height: auto;
    background: transparent;
    color: #111;
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-weight: 700;
    font-size: 14px;
    border-radius: 0;
    padding: 0;
    line-height: 1.2;
}

.user-review strong {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #111;
}

.user-review p {
    margin: 0;
    color: #555;
    line-height: 1.8;
    font-size: 14px;
}

@media (max-width: 991px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-stack {
        position: static;
    }

    .car-summary h1 {
        font-size: 34px;
    }

    .car-summary h2 {
        font-size: 30px;
    }

    .photo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {

    .spec-list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .car-image-box {
        height: 240px;
    }

    .car-summary h1 {
        font-size: 28px;
    }

    .car-summary p {
        line-height: 1.8;
    }

    .sidebar-widget h3 {
        font-size: 22px;
    }

}




/* ==========================================
   FAQ + GALLERY ENHANCEMENT
   (Add below your existing CSS)
========================================== */

.faq-gallery-section {

    background: #fff;
}

.faq-gallery-section .container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

/* Heading */

.faq-area h2,
.gallery-area h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 24px;
}

/* FAQ */

.faq-box {
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-: 0 8px 20px rgba(0, 0, 0, .05);
}

.faq-item {
    border-bottom: 1px solid #ededed;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    border: none;
    background: #fff;

    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 11px;
    font-weight: 200;
    color: #111;
    transition: .3s;
}



.faq-question span {
    width: 30px;
    height: 30px;


    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    transition: .3s;
    flex-shrink: 0;
}


.faq-answer {

    font-size: 11px;
    color: #666;
    line-height: 1.8;
}

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.photo-card {
    position: relative;
    overflow: hidden;

    cursor: pointer;
}

.photo-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
    transition: .4s;
}


.photo-card span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .85));
    color: #fff;
    padding: 14px 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.view-btn {
    display: block;
    margin-top: 22px;
    text-align: center;
    background: #111;
    color: #fff;
    text-decoration: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}


/* Responsive */

@media(max-width:992px) {

    .faq-gallery-section .container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hide desktop-only sidebar and photo content on smaller screens */
    .faq-gallery-section .gallery-area,
    .sidebar-widget,
    .ad-box {
        display: none !important;
    }

}

@media(max-width:768px) {

    .faq-area h2,
    .gallery-area h2 {
        font-size: 23px;
    }

    .faq-question {
        padding: 18px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 18px 18px;
        font-size: 14px;
    }

    .photo-card img {
        height: 160px;
    }

}

@media(max-width:576px) {

    .faq-gallery-section {
        padding: 35px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .photo-card img {
        height: 220px;
    }

    .faq-area h2,
    .gallery-area h2 {
        font-size: 23px;
    }

    .view-btn {
        font-size: 14px;
        padding: 12px;
    }

}





.review-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;

}

.user-review {
    display: flex;
    align-items: flex-start;
    gap: 18px;

}

.review-avatar {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: #111;
    font-weight: 700;
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    padding: 0;
    line-height: 1.2;
}

.review-content {
    flex: 1;
}

.review-content strong {
    display: block;
    font-size: 15px;
    color: #111;
    margin-bottom: 4px;
}

.review-date {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 14px;
}

.review-content p {
    margin: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.8;
}

/* Mobile */

@media(max-width:768px) {

    .user-review {
        gap: 14px;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .review-content p {
        font-size: 15px;
    }

}

/* ==========================
   Footer
========================== */

.site-footer {
    background: #f2f2f2;
    border-top: 1px solid #ddd;
    padding: 12px 0;
    text-align: center;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-links {
    margin-bottom: 4px;
}

.footer-links a {
    color: #222;
    text-decoration: none;
    font-size: 12px;
    margin: 0 10px;
    transition: color .3s;
}



.footer-copy {
    font-size: 12px;
    color: #666;
}



.brand-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
}

.brand-search {
    position: relative;
    margin-bottom: 25px;
}

.brand-search input {
    width: 100%;
    height: 46px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0 45px 0 18px;
    outline: none;
}

.brand-search i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.brand-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.brand-car {
    display: flex;
    border: 1px solid #e5e5e5;
    margin-bottom: 22px;
    background: #fff;
}

.brand-car-image {
    width: 230px;
    flex-shrink: 0;
}

.brand-car-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.brand-car-content {
    flex: 1;
    padding: 16px;
}

.brand-car-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.price {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

.brand-car-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.car-bottom {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.specs {
    display: flex;
    gap: 25px;
}

.specs span {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    color: #555;
}

.specs i {
    margin-bottom: 6px;
}

.details-btn {
    border: 1px solid #bbb;
    padding: 9px 18px;
    border-radius: 5px;
    color: #111;
    text-decoration: none;
    font-size: 13px;
}


.sidebar-ad {
    width: 100%;
    margin-bottom: 25px;
}

.sidebar-box {
    margin-bottom: 30px;
}

.sidebar-box h3 {
    color: #d40000;
    font-size: 28px;
    margin-bottom: 18px;
}

.side-post {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.side-post img {
    width: 95px;
    height: 70px;
    object-fit: cover;
}

.side-post p {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.side-post strong {
    display: block;
    font-size: 14px;
}

.side-post small {
    display: block;
    margin: 4px 0;
    color: #777;
}

.side-post a {
    color: #2468ff;
    text-decoration: none;
    font-size: 13px;
}

@media(max-width:992px) {

    .brand-layout {
        grid-template-columns: 1fr;
    }

    .brand-sidebar {
        display: none;
    }

    .brand-car {
        flex-direction: column;
    }

    .brand-car-image {
        width: 100%;
    }

    .brand-car-image img {
        height: 220px;
    }

    .car-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

/* ===============================
   PHOTO PAGE
=================================*/

.photos-page {
    padding: 30px 0 50px;
}

.photos-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 35px;
    align-items: start;
}

/* ===============================
      TABS
=================================*/

.photo-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
}

.photo-tabs a {
    display: inline-block;
    padding: 9px 18px;
    text-decoration: none;
    background: #f2f2f2;
    color: #222;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.photo-tabs a.active {
    background: #240404;
    color: #fff;
}


/* ===============================
      GALLERY
=================================*/

.photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}

.photo-card {
    text-align: center;
}

.photo-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: .35s;
}



.photo-card h4 {
    margin-top: 14px;
    font-size: 28px;
    font-weight: 700;
    color: #222;
}

.photo-card p {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

/* ===============================
      SIDEBAR
=================================*/

.sidebar {
    width: 100%;
}

/* Advertisement */

.sidebar-ad {
    margin-bottom: 28px;
}

.sidebar-ad img {
    width: 100%;
    display: block;
}

/* ===============================
      AUTO NEWS
=================================*/

.sidebar-title {
    color: #e00000;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.news-item {
    display: flex;
    gap: 5px;
    text-decoration: none;
}

.news-item img {
    width: 105px;
    height: 72px;
    object-fit: cover;
    flex-shrink: 0;
}

.news-item span {
    font-size: 13px;
    color: #333;
    line-height: 1.6;
}


/* ===============================
      LATEST CARS
=================================*/

.latest-title {
    color: #e00000;
    font-size: 32px;
    font-weight: 700;
    margin: 35px 0 18px;
}

.latest-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.latest-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
}

.latest-item img {
    width: 95px;
    height: 72px;
    object-fit: cover;
}

.latest-content {
    display: flex;
    flex-direction: column;
}

.latest-content h5 {
    margin: 0;
    font-size: 15px;
    color: #222;
    font-weight: 700;
}

.latest-content small {
    color: #666;
    margin: 6px 0;
    font-size: 12px;
}

.latest-content span {
    color: #276dff;
    font-size: 13px;
    font-weight: 600;
}







/* ===============================
      RESPONSIVE
=================================*/

@media(max-width:991px) {

    .photos-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        margin-top: 40px;
    }

}

@media(max-width:768px) {

    .photos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .photo-card img {
        height: 220px;
    }

    .sidebar-title,
    .latest-title {
        font-size: 26px;
    }

}

@media(max-width:576px) {

    .photo-tabs {
        gap: 8px;
    }

    .photo-tabs a {
        font-size: 14px;
        padding: 8px 14px;
    }

    .photo-card img {
        height: 200px;
    }

    .news-item img,
    .latest-item img {
        width: 90px;
        height: 65px;
    }

    .sidebar-title,
    .latest-title {
        font-size: 22px;
    }

}


/* Mobile Gallery */
@media (max-width:576px) {

    .photos-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 14px;
    }

    .photo-card {
        text-align: center;
    }

    .photo-card img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: 0;
        display: block;
    }

    .photo-card h4 {
        margin-top: 8px;
        font-size: 11px;
        font-weight: 700;
        line-height: 1.4;
        color: #222;
    }

    .photo-tabs {
        margin-bottom: 18px;
        gap: 10px;
    }

    .photo-tabs a {
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 600;
    }

    /* Hide sidebar on mobile */
    .sidebar {
        display: none;
    }
}

/* Section */

.car-photo-section {
    max-width: 100%;
}

/* Title */

.photo-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #111;
}

/* Card */

.photo-view-card {
    width: 100%;

}

/* Image */

.photo-image {
    position: relative;
    overflow: hidden;
    background: #f3f3f3;
}

.photo-image img {
    width: 100%;
    display: block;
}

/* 1/4 Badge */

.photo-count {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #111;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 10px;
    z-index: 2;
}

/* Description */

.photo-info {
    border: 1px solid #d8d8d8;
    padding: 10px;
    background: #fff;
    margin: 10px 0px 60px 0;
}

.photo-info p {
    margin: 0;
    color: #333;
    font-size: 17px;
    line-height: 1.8;
}

.bike-category {
    margin-bottom: 40px;
}

.category-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

.bike-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.bike-item {
    text-align: center;
}

.bike-image {
    background: #f3f3f3;
    border: 1px solid #e5e5e5;
    padding: 12px;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .3s;
}



.bike-image img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.bike-item h4 {
    margin-top: 12px;
    font-size: 17px;
    font-weight: 600;
    color: #111;
}

/* Tablet */

@media(max-width:992px) {

    .bike-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */

@media(max-width:576px) {

    .bike-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .bike-image {
        height: 90px;
        padding: 10px;
    }

    .bike-image img {
        max-height: 65px;
    }

    .bike-item h4 {
        font-size: 14px;
        margin-top: 8px;
    }

}

/* ===========================
   Bike Section
=========================== */

.bike-category {
    margin: 30px 0;
}

.category-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.bike-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.bike-item {
    text-align: center;
}

.bike-image {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    padding: 10px;
}

.bike-image img {
    width: 100%;
    height: 90px;
    object-fit: contain;
    display: block;
}

.bike-item h4 {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 600;
}

/* ===========================
   Mobile Slider
=========================== */

@media (max-width:768px) {

    .bike-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 10px;

        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .bike-grid::-webkit-scrollbar {
        display: none;
    }

    .bike-item {
        flex: 0 0 150px;
        min-width: 150px;
        scroll-snap-align: start;
    }

    .bike-image {
        padding: 8px;
    }

    .bike-image img {
        height: 80px;
    }

    .bike-item h4 {
        font-size: 14px;
    }

}

.photos-content {
    overflow: hidden;
}

/* ===========================
   Bikes Brands Page - Scoped Responsive Fixes
   Ensures left-aligned content and stacked layout on small screens
=========================== */

.bikes-page .photos-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 35px;
    align-items: start;
}

.bikes-page {
    margin-top: 10px;
}

.bikes-page .bikes-article {
    min-width: 0;
}

.bikes-page .news-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.25;
}

.bikes-page .news-meta p {
    color: #555;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 24px;
    word-break: break-word;
}

.bikes-page .news-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 20px;
}

.bikes-page .news-banner {
    margin: 22px 0 26px;
}

.bikes-page .news-banner img {
    width: 100%;
    height: auto;
    max-height: 520px;
    border-radius: 18px;
    display: block;
    object-fit: cover;
}

.bikes-page .bike-category {
    margin-top: 40px;
}

.bikes-page .category-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.bikes-page .bike-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.bikes-page .bike-item {
    text-align: left;
    min-height: 220px;
}

.bikes-page .bike-image {
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    min-height: 100px;
}

.bikes-page .bike-image img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    display: block;
}

.bikes-page .bike-item p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #222;
}

.bikes-page .brand-sidebar {
    width: 100%;
}

.bikes-page .sidebar-ad,
.bikes-page .sidebar-box img {
    max-width: 100%;
    height: auto;
    display: block;
}

.bikes-page .side-post {
    align-items: flex-start;
}

.bikes-page .side-post img {
    border-radius: 12px;
}

.bikes-page .related-news-card {
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .bikes-page .photos-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .bikes-page .brand-sidebar {
        margin-top: 36px;
    }

    .bikes-page .news-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .bikes-page {
        margin-top: 0;
        padding: 0 0 20px;
    }

    .bikes-page .photos-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .bikes-page .brand-sidebar {
        display: none;
    }

    .bikes-page .news-content {
        width: 100%;
    }

    .bikes-page .news-title {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .bikes-page .news-meta p,
    .bikes-page .news-content p {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 16px;
    }

    .bikes-page .news-banner {
        margin: 18px 0 22px;
    }

    .bikes-page .news-banner img {
        border-radius: 14px;
        max-height: 360px;
    }

    .bikes-page .bike-category {
        margin-top: 28px;
    }

    .bikes-page .category-title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .bikes-page .bike-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .bikes-page .bike-grid::-webkit-scrollbar {
        display: none;
    }

    .bikes-page .bike-item {
        flex: 0 0 82%;
        min-width: 240px;
        max-width: 280px;
        scroll-snap-align: start;
        text-align: left;
        min-height: auto;
    }

    .bikes-page .bike-image {
        min-height: 170px;
        padding: 0;
        border-radius: 16px;
    }

    .bikes-page .bike-item p {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .bikes-page {
        padding-bottom: 16px;
    }

    .bikes-page .photos-layout {
        gap: 14px;
    }

    .bikes-page .news-title {
        font-size: 21px;
        line-height: 1.35;
    }

    .bikes-page .news-meta p {
        font-size: 13px;
        line-height: 1.65;
    }

    .bikes-page .news-content p {
        font-size: 13px;
        line-height: 1.75;
    }

    .bikes-page .news-banner img {
        border-radius: 12px;
        max-height: 240px;
    }

    .bikes-page .category-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .bikes-page .bike-item {
        flex-basis: 84%;
        min-width: 220px;
        max-width: 240px;
    }

    .bikes-page .bike-image {
        min-height: 150px;
    }

    .bikes-page .bike-image img {
        height: 150px;
        object-fit: cover;
    }

    .bikes-page .bike-item p {
        font-size: 13px;
        line-height: 1.45;
    }
}

@media (max-width: 420px) {
    .bikes-page .bike-item {
        flex-basis: 88%;
        min-width: 210px;
    }

    .bikes-page .bike-image {
        min-height: 138px;
    }

    .bikes-page .bike-image img {
        height: 138px;
    }
}

/* ============================
   BRAND PAGE (Cars & Bikes Listing)
============================ */

.brand-page {
    margin-top: 10px;
    padding-bottom: 40px;
}

.brand-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

.brand-left {
    min-width: 0;
}

.brand-search {
    position: relative;
    max-width: 400px;
    margin-bottom: 28px;
}

.brand-search input {
    width: 100%;
    height: 44px;
    padding: 0 40px 0 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    color: #333;
    background: #fff;
}

.brand-search input::placeholder {
    color: #999;
}

.brand-search input:focus {
    border-color: #0d6efd;
}

.brand-search i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
}

.brand-heading {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin: 32px 0 20px;
    padding-bottom: 10px;

}

.brand-heading:first-of-type {
    margin-top: 0;
}

.brand-car {
    width: 100%;
    height: 206px;
    border-width: 1px;


}

.brand-car-image {
    width: 309px;
    height: 206px;
    angle: 0 deg;
    opacity: 1;
    top: 1100px;
    left: 50px;
}

.brand-car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-car-content {
    flex: 1;
    padding: 18px 18px 18px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.brand-car-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.3;
}

.brand-car-content .price {
    font-size: 18px;
    font-weight: 700;

    margin: 0;
}

.brand-car-content p {
    font-size: 14px;
    color: #666;
    line-height: 25px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 300px;
    font-style: light;
    letter-spacing: 0%;
}

.car-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 12px;

    flex-wrap: wrap;
}



.icon-fuel {
    width: 16.92px;
    height: 18px;
}

.icon-gearshift {
    width: 18px;
    height: 18px;
}


.specs span i {
    font-size: 12px;
    color: #888;
}

.details-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: #fff;

    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
    white-space: nowrap;
}

/* =========================================================
       CAR LIST PAGE
    ========================================================= */

.car-card-box {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: #fff;
    border: 1px solid #E7E7E7;
    margin-bottom: 28px;
    overflow: hidden;
}

.car-card-image {
    width: 320px;
    min-width: 320px;
}

.car-card-image img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.car-card-body {
    flex: 1;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
}

.car-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px;
    line-height: 1.3;
}

.car-card-price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.car-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.car-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.car-card-specs {
    display: flex;
    gap: 32px;
}

.car-spec-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.car-spec-box svg {
    width: 22px;
    height: 22px;
    color: #222;
    margin-bottom: 8px;
}

.car-spec-box span {
    font-size: 13px;
    color: #444;
    line-height: 1.3;
}





/* =========================================================
       992px
    ========================================================= */

@media (max-width:992px) {

    .brand-layout {
        display: block;
    }

    .brand-sidebar {
        display: none !important;
    }

    .brand-left {
        width: 100%;
    }

    .car-card-box {
        display: block;
    }

    .car-card-image {
        width: 100%;
        min-width: 100%;
    }

    .car-card-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .car-card-body {
        padding: 18px;
    }

    .car-card-title {
        font-size: 28px;
    }

    .car-card-price {
        font-size: 24px;
    }

    .car-card-desc {
        font-size: 15px;
    }

}

/* =========================================================
       768px
    ========================================================= */

@media (max-width:768px) {

    .search-wrap {
        padding: 0 15px;
    }

    .car-card-body {
        padding: 16px;
    }

    .car-card-title {
        font-size: 22px;
    }

    .car-card-price {
        font-size: 20px;
    }

    .car-card-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .car-card-specs {
        gap: 22px;
    }

    .car-spec-box svg {
        width: 20px;
        height: 20px;
    }

    .car-card-btn {
        width: 120px;
        height: 38px;
        font-size: 13px;
    }

}

/* =========================================================
       567px
    ========================================================= */

@media (max-width:567px) {

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .brand-sidebar {
        display: none !important;
    }

    .section-head h2 {
        font-size: 22px;
    }

    .car-card-box {
        margin-bottom: 20px;
    }

    .car-card-image img {
        aspect-ratio: 16/10;
    }

    .car-card-body {
        padding: 12px;
    }

    .car-card-title {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .car-card-price {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .car-card-desc {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .car-card-footer {
        align-items: flex-end;
    }

    .car-card-specs {
        gap: 16px;
    }

    .car-spec-box svg {
        width: 16px;
        height: 16px;
        margin-bottom: 5px;
    }

    .car-spec-box span {
        font-size: 11px;
    }

    .car-card-btn {
        width: 92px;
        height: 30px;
        border-radius: 8px;
        font-size: 11px;
    }

}

Vehicle Bottom Section==========================*/ .vehicle-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 18px;

}

.vehicle-meta-group {
    display: flex;
    align-items: flex-start;
    gap: 42px;
}

.vehicle-meta-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vehicle-meta-icon {
    margin-bottom: 8px;
    color: #1b1b1b;
}

.vehicle-meta-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.vehicle-meta-text {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    line-height: 1.3;
}

.vehicle-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 135px;
    height: 40px;
    padding: 0 22px;
    background: #fff;
    border: 1px solid #d7d7d7;
    border-radius: 12px;
    color: #111;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
}


@media (max-width:992px) {

    .vehicle-meta-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .vehicle-meta-group {
        gap: 26px;
    }

    .vehicle-detail-btn {
        min-width: 120px;
        height: 38px;
        font-size: 14px;
    }

}

@media (max-width:576px) {

    .vehicle-meta-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    .vehicle-meta-group {
        gap: 18px;
    }

    .vehicle-meta-icon svg {
        width: 18px;
        height: 18px;
    }

    .vehicle-meta-text {
        font-size: 12px;
    }

    .vehicle-detail-btn {
        min-width: 110px;
        height: 36px;
        padding: 0 16px;
        font-size: 13px;
    }

}

/*=============================
                                                  Car Card Design
                                            ==============================*/

.car-card-box {
    width: 100%;
    margin-bottom: 30px;
    border: 1px solid #E9E9E9;
    background: #fff;
}

.car-card-image {
    width: 100%;
}

.car-card-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.car-card-body {
    padding: 18px;
}

.car-card-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.car-card-price {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.car-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.car-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.car-card-specs {
    display: flex;
    gap: 34px;
}

.car-spec-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.car-spec-box svg {
    width: 22px;
    height: 22px;
    margin-bottom: 8px;
}

.car-spec-box span {
    font-size: 14px;
    color: #444;
}

.car-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 135px;
    height: 42px;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    color: #111;
    background: #fff;
}


@media(max-width:992px) {

    .brand-sidebar {
        display: none;
    }

    .brand-layout {
        display: block;
    }

    .car-card-title {
        font-size: 28px;
    }

    .car-card-price {
        font-size: 24px;
    }

    .car-card-desc {
        font-size: 15px;
    }

}

@media(max-width:768px) {

    .car-card-body {
        padding: 16px;
    }

    .car-card-title {
        font-size: 24px;
    }

    .car-card-price {
        font-size: 22px;
    }

    .car-card-desc {
        font-size: 14px;
    }

    .car-card-footer {
        align-items: center;
    }

    .car-card-specs {
        gap: 25px;
    }

    .car-card-btn {
        min-width: 125px;
        height: 40px;
    }

}

@media(max-width:567px) {

    .brand-sidebar {
        display: none !important;
    }

    .car-card-body {
        padding: 12px;
    }

    .car-card-title {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .car-card-price {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .car-card-desc {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .car-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .car-card-specs {
        gap: 16px;
    }

    .car-spec-box svg {
        width: 16px;
        height: 16px;
    }

    .car-spec-box span {
        font-size: 11px;
    }

    .car-card-btn {
        min-width: 92px;
        height: 30px;
        font-size: 11px;
        border-radius: 8px;
    }

}

.brand-car {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid #E6E6E6;
    margin-bottom: 28px;
    overflow: hidden;
}

.brand-car-image {
    width: 320px;
    flex-shrink: 0;
}

.brand-car-image img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
    display: block;
}

.brand-car-content {
    flex: 1;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
}

.brand-car-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.brand-car-content .price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.brand-car-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.brand-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 90px;
}



.sidebar-ad {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.sidebar-box {
    background: #fff;


    overflow: hidden;
    box: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.sidebar-box h3 {
    margin: 0;
    padding: 16px 18px 12px;

    font-family: DM Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 25px;
    color: #D3050F;

    line-height: 40px;

}

.sidebar-box img {
    max-width: 100%;
    height: auto;
    display: block;
}

.side-post {
    display: flex;
    gap: 14px;
    padding: 14px 18px;

    align-items: flex-start;
    transition: 0.2s ease;
}

.side-post:last-child {
    border-bottom: none;
}


.side-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;

    flex-shrink: 0;
}

.side-post p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    font-weight: 500;
}

.side-post div {
    flex: 1;
    min-width: 0;
}

.side-post strong {
    display: block;
    font-size: 14px;
    color: #111;
    margin-bottom: 4px;
}

.side-post small {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
}

.side-post a {
    color: #0d6efd;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}


@media (max-width: 1024px) {
    .brand-layout {
        grid-template-columns: 1fr 300px;
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .brand-layout {
        grid-template-columns: 1fr;
    }

    .brand-sidebar {
        position: static;
        order: 2;
    }

    .brand-car-image {
        width: 100%;
        height: 428px;

    }
}

@media (max-width: 768px) {
    .brand-heading {
        font-size: 22px;
        margin-top: 24px;
        margin-bottom: 16px;
    }

    .brand-car {
        flex-direction: column;
        gap: 0;
    }

    .brand-car-image {
        width: 100%;
        height: 428px;
    }
}




.brand-car-content {
    padding: 16px;
}

.brand-car-content h3 {
    font-size: 18px;
}

.brand-car-content .price {
    font-size: 16px;
}

.brand-car-content p {
    font-size: 13px;
}

.car-bottom {
    flex-direction: column;
    align-items: flex-start;
}

.specs {
    gap: 8px;
}

.specs span {
    font-size: 12px;
    padding: 5px 10px;
}

.details-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 13px;
}


@media (max-width: 576px) {
    .brand-car-image {
        width: 100%;
        height: 428px;



    }

    .brand-search {
        max-width: 100%;
        margin-bottom: 18px;
    }

    .brand-heading {
        font-size: 18px;
        margin: 18px 0 12px;
        padding-bottom: 8px;
    }

    .brand-car {

        margin-bottom: 14px;
    }



    .brand-car-content {
        padding: 12px;
        gap: 6px;
    }

    .brand-car-content h3 {
        font-size: 16px;
    }

    .brand-car-content .price {
        font-size: 14px;
    }

    .brand-car-content p {
        font-size: 12px;
        line-height: 1.5;
    }

    .car-bottom {
        padding-top: 8px;
        gap: 10px;
    }

    .specs {
        gap: 6px;
    }

    .specs span {
        font-size: 11px;
        padding: 4px 8px;
    }

    .specs span i {
        font-size: 10px;
    }

    .details-btn {
        font-size: 12px;
        padding: 8px 14px;
    }

    .sidebar-box h3 {
        font-size: 15px;
        padding: 12px 14px;
    }

    .side-post {
        padding: 10px 14px;
        gap: 10px;
    }

    .side-post img {
        width: 64px;
        height: 48px;
    }

    .side-post p {
        font-size: 12px;
    }

    .side-post strong {
        font-size: 13px;
    }

    .side-post small {
        font-size: 11px;
    }
}

/* Hide sidebar on mobile for bikesbrands page */
@media (max-width: 768px) {
    .bikesbrands-page .brand-sidebar {
        display: none;
    }
}

/* Override: hide sidebar on mobile/tablet for bikesbrands page */
@media (max-width: 900px) {
    .bikesbrands-page .brand-sidebar {
        display: none !important;
    }
}

/* Frontend button theme for all pages except the homepage override */
.btn:not(.btn-close):not(.btn-link):not(.nav-link),
.explore-link,
.section-header a,

.view-btn,
.view-all-btn,
.btn-watch-now,
.btn-load-more,
.arrow-btn,
.search-btn {
    background: #d3cccc !important;
    color: #030303 !important;


}

.search-btn svg path,
.search-btn svg circle {
    stroke: #fff !important;
}

/* =========================
   GLOBAL RESPONSIVE SYSTEM
========================= */

img,
video,
iframe,
svg {
    max-width: 100%;
}

img {
    height: auto;
}

.container {
    width: min(100%, 1200px);
    padding-left: 16px;
    padding-right: 16px;
}

.page-wrap {
    width: 100%;
}

.table-responsive-wrapper,
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive table {
    min-width: 640px;
}


*,
*::before,
*::after {
    box-: none !important;
    text-: none !important;
}

* {
    transition: none !important;
    animation: none !important;
}


*:focus,
*:active {
    box-: none !important;
    text-: none !important;
    transform: none !important;
    filter: none !important;
}

@media (max-width: 1199.98px) {
    .spec-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 991.98px) {
    .car-summary h1 {
        font-size: 34px;
    }

    .car-summary h2 {
        font-size: 30px;
    }

    .car-image-box,
    .car-main-image,
    .car-slider,
    .car-slider-image,
    .bike-slider,
    .bike-slider-image {
        min-height: 260px;
    }

    .sidebar-stack {
        position: static;
        top: auto;
    }

    .sidebar-widget h3 {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .search-row {
        flex-direction: column;
        align-items: stretch;
    }


    .car-hero .row.g-4,
    .review-section .row.g-4 {
        row-gap: 18px;
    }

    .car-image-box,
    .car-main-image,
    .car-slider,
    .car-slider-image,
    .bike-slider,
    .bike-slider-image {
        min-height: 220px;
    }

    .car-slider-btn,
    .bike-slider-btn {
        width: 38px;
        height: 38px;
    }

    .car-slider-thumbs,
    .bike-slider-thumbs {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    }

    .spec-list {
        padding: 18px;
    }

    .spec-list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .news-item,
    .latest-item {
        align-items: flex-start;
    }

    .news-item img,
    .latest-item img {
        width: 78px;
        height: 60px;
        flex: 0 0 auto;
    }
}

@media (max-width: 575.98px) {
    .car-summary h1 {
        font-size: 28px;
    }

    .car-summary h2 {
        font-size: 24px;
    }

    .price-note {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .sidebar-widget h3 {
        font-size: 20px;
        padding: 14px 16px;
    }

    .news-list,
    .latest-list {
        padding-left: 12px;
        padding-right: 12px;
    }

    .search-suggestions-dropdown {
        max-height: 320px;
    }
}

/* Basic reset and variables */
:root {
    --bg: #ffffff;
    --muted: #666667;
    --accent: #1b1b18;
    --card-: 0 6px 18px rgba(27, 27, 24, 0.06);
    --radius: 12px;
    --container: 1200px;
    font-family: 'DM Sans', sans-serif;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    margin: 0;
    background: var(--bg);
    color: var(--accent)
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px
}

/* Header */
.site-header {
    border-bottom: 1px solid #f0efee;
    background: transparent
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0
}

.brand {
    font-weight: 600;
    font-size: 18px
}

.main-nav {
    display: flex;
    gap: 14px;
    flex: 1;
    justify-content: center
}

.search-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}



.search-input {
    width: 100%;
    padding: 14px 48px 14px 20px;


    background: #fff;
    font-size: 14px;
    box-: 0 2px 8px rgba(16, 24, 40, 0.04);
    outline: none;
}

.search-input::placeholder {
    color: #9aa0a6;
}

.search-input:focus {
    border-color: #d0d7db;
    box-: 0 6px 20px rgba(27, 27, 24, 0.06);
}

.search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    height: 36px;
    width: 36px;
    border-radius: 10px;
    border: none;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


.search-btn svg {
    display: block;
}


.social {
    display: flex;
    gap: 8px
}

.social a {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #f3f3f3;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none
}

/* Search row */
.page-main {
    padding: 20px 0 30px
}

.search-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 18px 0
}

.search-input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fff;
    font-size: 14px
}

.btn {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer
}

.btn.primary {
    background: #1b1b18;
    color: #fff
}

/* Section heading */
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0 20px
}

.section-head h2 {
    margin: 0;
    font-size: 18px
}

.explore-link {
    color: #666;
    text-decoration: none;
    font-size: 14px
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px
}

.card {
    background: #fff;
    border-radius: 12px;
    box-: var(--card-);
    overflow: hidden;
    border: 1px solid #f1f1ef;
    display: flex;
    flex-direction: column
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block
}

.card-body {
    padding: 12px
}

.card-title {
    margin: 0 0 8px;
    font-size: 16px
}

.card-meta {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    align-items: center
}

.card-meta span {
    background: #fafafa;
    padding: 6px 8px;
    border-radius: 6px
}

/* Footer */
.site-footer {
    border-top: 1px solid #f0efee;
    padding: 20px 0;
    text-align: center;
    color: #777;
    font-size: 13px
}

.search-row {
    margin: 24px 0 32px;
}

.search-wrap {
    width: 100%;
}

.search-box {
    width: 628px;
    height: 60px;
    border: 1px solid #ABB7C2;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 18px 0 20px;
    box-sizing: border-box;

}

.search-box:focus-within {
    border-color: #9CA9B8;
    box-shadow: 0 0 0 4px rgba(184, 195, 207, 0.16);
}

.search-input {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 12px;
    line-height: 100%;
    font-weight: 400;
    color: #344054;
    padding: 0;
}

.search-input::placeholder {
    color: #ABB7C2;
    opacity: 1;
}

.search-button {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    flex: 0 0 auto;
    color: #B8C3CF;
}

.search-button svg {
    width: 24px;
    height: 24px;
    display: block;
}

@media (min-width:900px) {
    .search-input {
        max-width: 720px
    }

    /* Brands */
    .explore-brands {
        margin-top: 40px;
    }

    .brands-row {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 32px;
        flex-wrap: wrap;
    }

    .brand-item {
        width: 180px;
        flex: 0 0 180px;
        text-align: center;
    }

    .brand-card {
        width: 180px;
        height: 110px;
        border-radius: 12px;
        border: 1px solid #e2e2e2;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        box-: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .brand-card img {
        display: block;
        max-width: 85%;
        max-height: 100px;
        width: auto;
        height: auto;
        object-fit: contain;
        margin: 0 auto;
    }

    .brand-name {
        color: #666;
        font-size: 13px;
        line-height: 1.4;
        margin-top: 10px;
        font-weight: 500;
    }

    /* Bikes */
    .section-bikes {
        margin-top: 36px
    }

    .bikes-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 18px
    }

    .bike-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #f1f1ef;
        box-: var(--card-);
        display: flex;
        flex-direction: column
    }

    .bike-card img {
        width: 100%;
        height: 160px;
        object-fit: cover
    }

    .bike-card .card-body {
        padding: 12px
    }

    .bike-card .card-title {
        margin: 0 0 8px;
        font-size: 15px
    }

    .bike-card .card-meta {
        display: flex;
        gap: 10px;
        align-items: center
    }

    .bike-card .card-meta span {
        background: #fafafa;
        padding: 6px 8px;
        border-radius: 6px;
        font-size: 13px
    }

    .bike-card .card-meta .details {
        margin-left: auto;
        color: #5b87ff;
        text-decoration: none;
        font-size: 13px
    }

    .section-news {
        margin-top: 36px;
    }

    .news-grid {
        display: grid;
        grid-template-columns: minmax(320px, 1.7fr) 1fr;
        gap: 18px;
    }

    .news-side {
        display: grid;
        gap: 18px;
    }

    .news-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #f1f1ef;
        box-: var(--card-);
        display: flex;
        flex-direction: column;
    }

    .news-card img {
        width: 100%;
        object-fit: cover;
        display: block;
    }

    .news-main-card img {
        height: 280px;
    }

    .news-small-card img {
        height: 140px;
    }

    .news-body {
        padding: 14px 16px;
    }

    .news-label {
        margin: 0 0 10px;
        font-size: 12px;
        color: #5b87ff;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .news-card h3 {
        margin: 0;
        font-size: 16px;
        line-height: 1.4;
    }

    @media (max-width: 900px) {
        .news-grid {
            grid-template-columns: 1fr;
        }

        .news-side {
            grid-template-columns: 1fr;
        }
    }


    .card img {
        height: 180px
    }
}

/* ===== Header Improvements ===== */

.header-inner {
    justify-content: space-between;
    min-height: 72px;
}

.brand {
    width: 160px;
    /* Keeps the menu perfectly centered */
    flex-shrink: 0;
}

.site-logo {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

.main-nav p {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    transition: 0.3s ease;
}


.social {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.social a {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    font-size: 24px;
    color: #111;
    transition: 0.3s ease;
}


/* Individual icon colors */
.social .fa-facebook {
    color: #1877F2;
}

.social .fa-x-twitter {
    color: #000;
}

.social .fa-instagram {
    color: #E4405F;
}

.social .fa-youtube {
    color: #FF0000;
}


.search-input {
    width: 100%;
    height: 42px;
    padding: 0 45px 0 14px;

    outline: none;
    font-size: 13px;
    color: #555;
    background: #fff;
}

.search-input::placeholder {
    color: #9aa0a6;
}

.search-btn {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn svg {
    width: 18px;
    height: 18px;
}

/* ===========================
        AUTO NEWS
=========================== */

.news-section {
    background: #fff;
}

.news-title {
    font-size: 34px;
    font-weight: 700;
    color: #111;
}

.news-buttons {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    transition: .3s;
}



.featured-news {
    cursor: pointer;
}

.featured-news img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    transition: .4s;
}


.featured-news h3 {
    margin-top: 18px;
    font-size: 30px;
    line-height: 1.45;
    font-weight: 700;
    color: #111;
    transition: .3s;
}


.news-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    transition: .3s;
    padding-bottom: 20px;
    border-bottom: 1px solid #ececec;
}

.news-item:last-child {
    border: none;
}



.news-item img {
    width: 180px;
    height: 115px;
    object-fit: cover;
    border-radius: 14px;
    transition: .3s;
}



.news-info h5 {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    color: #111;
    transition: .3s;
}


/* Responsive */

@media(max-width:991px) {

    .featured-news img {
        height: 320px;
    }

    .featured-news h3 {
        font-size: 24px;
    }

    .news-list {
        margin-top: 30px;
    }

    .news-item img {
        width: 140px;
        height: 90px;
    }

    .news-info h5 {
        font-size: 16px;
    }

}

@media(max-width:576px) {

    .news-title {
        font-size: 26px;
    }

    .featured-news img {
        height: 220px;
    }

    .featured-news h3 {
        font-size: 20px;
    }

    .news-item {
        gap: 12px;
    }

    .news-item img {
        width: 110px;
        height: 75px;
    }

    .news-info h5 {
        font-size: 14px;
        line-height: 1.5;
    }

    .arrow-btn {
        width: 36px;
        height: 36px;
    }

}

/* ===========================
        REVIEW SECTION
===========================*/

.review-section {

    background: #fff;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #111;
}

.section-header a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    font-size: 15px;
}

.review-card,
.workshop-card {
    cursor: pointer;
    border: none;
    box-: none;
    transition: .35s;
}

.review-card img,
.workshop-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 18px;
    transition: .4s;
}



.review-card h4 {
    margin-top: 18px;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 600;
    color: #111;
    transition: .3s;
}



.workshop-card h5 {
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    color: #111;
    transition: .3s;
}



/* Responsive */

@media(max-width:992px) {

    .review-card img,
    .workshop-card img {
        height: 200px;
    }

    .review-card h4 {
        font-size: 18px;
    }

    .workshop-card h5 {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

}

@media(max-width:576px) {

    .review-card img,
    .workshop-card img {
        height: 180px;
    }

    .review-card h4 {
        font-size: 17px;
    }

    .workshop-card h5 {
        font-size: 15px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .section-header h2 {
        font-size: 24px;
    }

}

/* Responsive overrides */
body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.page-main {
    width: 100%;
    padding: 0;
}

.site-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .navbar-toggler {
    border: 1px solid #e7e7e3;
    box-: none;
}

.site-header .navbar-toggler:focus {
    box-: none;
}

.site-header .navbar-collapse {
    flex-grow: 0;
}

.site-header .nav-link {
    color: #1b1b18;
    font-weight: 600;
}



.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    color: #111;
    font-size: 20px;
    text-decoration: none;
}

.site-footer {
    padding: 0;
}

.section-head,
.section-header {
    flex-wrap: wrap;
    gap: 10px;
}

.section-head h2,
.section-header h2 {
    line-height: 1.2;
}

.cards-grid,
.bikes-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card,
.bike-card,
.news-card,
.review-card,
.workshop-card {
    height: 100%;
}

.card-meta,
.bike-card .card-meta {
    flex-wrap: wrap;
}

.news-section .container,
.review-section .container {
    max-width: 1200px;
}

.featured-news h3 {
    word-break: break-word;
}

@media (max-width: 991px) {
    .header-inner {
        padding: 10px 0;
    }

    .brand {
        width: auto;
        max-width: 100%;
    }

    .site-logo {
        width: 174px !important;
        max-width: 72vw !important;
        height: auto !important;
        object-fit: contain;
    }

    .site-header .navbar-collapse {
        width: 100%;
        padding: 14px 0 6px;
    }

    .main-nav {
        justify-content: flex-start;
        gap: 2px;
    }

    .main-nav .nav-link {
        padding-left: 0;
        padding-right: 0;
    }

    .social-links {
        margin-top: 12px;
    }

    .search-row {
        margin: 14px 0;
    }

    .news-title {
        font-size: 28px;
    }

    .featured-news img {
        height: 320px;
    }

    .featured-news h3 {
        font-size: 24px;
    }

    .news-item img {
        width: 140px;
        height: 90px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .page-main {
        padding-top: 0;
        padding-bottom: 0;
    }

    .header-inner {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        min-height: auto;
        padding: 0;
    }

    .brand {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 0 !important;
        padding: 0;
    }

    .site-logo {
        width: 174px !important;
        max-width: 72vw !important;
        height: auto !important;
        display: block;
        object-fit: contain;
    }

    .site-header .navbar-toggler {
        display: none;
    }

    .site-header .navbar-collapse {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
    }

    .main-nav {
        order: 2;
        width: 100%;
        flex: 0 0 auto;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap !important;
        margin: 2px 0 0 !important;
        overflow: visible;
    }

    .main-nav .nav-link {
        color: #000;
        font-size: 12px !important;
        font-weight: 800;
        line-height: 1;
        padding: 0 !important;
        white-space: nowrap;
    }

    .social-links {
        order: 1;
        justify-content: center !important;
        margin: -1px 0 0 !important;
        gap: 9px;
        flex-wrap: nowrap;
    }

    .social-links a {
        width: 20px;
        height: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        line-height: 1;
    }

    .social-links .fa-x-twitter {
        width: 20px;
        height: 20px;
        color: #fff;
        background: #000;
        border-radius: 3px;
        font-size: 13px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .social-links .fa-instagram {
        width: 20px;
        height: 20px;
        color: #fff;
        background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 48%, #6228d7 100%);
        border-radius: 5px;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .social-links .fa-youtube {
        font-size: 22px;
    }

    .section-head h2,
    .section-header h2 {
        font-size: 22px;
    }

    .explore-link,
    .section-header a {
        font-size: 13px;
    }

    .search-input {
        height: 44px;
        font-size: 13px;
        padding-left: 16px;
    }

    .search-btn {
        width: 34px;
        height: 34px;
    }

    @media (max-width: 360px) {
        .main-nav {
            gap: 6px;
        }

        .main-nav .nav-link {
            font-size: 11px;
        }
    }

    .cards-grid,
    .bikes-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .cards-grid::-webkit-scrollbar,
    .bikes-grid::-webkit-scrollbar,
    .brands-row::-webkit-scrollbar,
    .review-section .row::-webkit-scrollbar {
        display: none;
    }

    .cards-grid>.card,
    .bikes-grid>.bike-card {
        scroll-snap-align: start;
    }

    .section-cards .cards-grid {
        gap: 12px;
    }

    .section-cards .cards-grid>.card {
        flex: 0 0 32%;
        max-width: 40%;
        min-width: 112px;
        border: 1px solid #e9e9e9;
        border-radius: 8px;
        box-: none;
        overflow: hidden;
    }

    .section-cards .card img {
        height: 76px;
        object-fit: cover;
    }

    .section-cards .card-body {
        padding: 6px 5px 7px;
        text-align: center;
    }

    .section-cards .card-title {
        min-height: 16px;
        margin: 0 0 7px;
        font-size: 12px;
        line-height: 1.1;
        font-weight: 500;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .section-cards .card-meta {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 3px 6px;
        font-size: 8px;
        line-height: 1.1;
        color: #111;
    }

    .section-cards .card-meta span {
        background: transparent;
        border-radius: 0;
        padding: 0;
    }

    .section-cards .card-meta span:last-child {
        grid-column: 1 / -1;
        color: #0d6efd;
        font-size: 8px;
    }

    .bikes-grid>.bike-card {
        flex: 0 0 32%;
        max-width: 32%;
        min-width: 112px;
        border: 1px solid #e9e9e9;
        border-radius: 8px;
        box-: none;
        overflow: hidden;
    }

    .section-bikes .bikes-grid {
        gap: 16px;
    }

    .section-bikes .bike-card img {
        height: 80px;
        object-fit: cover;
    }

    .section-bikes .bike-card .card-body {
        padding: 6px 5px 7px;
        text-align: center;
    }

    .section-bikes .bike-card .card-title {
        min-height: 15px;
        margin: 0 0 7px;
        font-size: 10px;
        line-height: 1.1;
        font-weight: 500;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .section-bikes .bike-card .card-meta {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        align-items: center;
        gap: 3px 6px;
        color: #111;
        font-size: 8px;
        line-height: 1.1;
    }

    .section-bikes .bike-card .card-meta span {
        width: auto;
        background: transparent;
        border-radius: 0;
        padding: 0;
        font-size: 8px;
    }

    .section-bikes .bike-card .card-meta .details {
        grid-column: 1 / -1;
        margin-left: 0;
        color: #0d6efd;
        font-size: 8px;
        line-height: 1.1;
        text-decoration: none;
        white-space: nowrap;
    }

    .section-bikes .bike-card .card-meta .details i {
        font-size: 7px;
    }

    .brands-row {
        display: flex;
        gap: 25px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .brand-item {
        flex: 0 0 28%;
        max-width: 28%;
        text-align: center;
        scroll-snap-align: start;
    }

    .brand-card {
        height: 76px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border: 1px solid #e6e6e6;
        border-radius: 6px;
        box-: none;
    }

    .brand-name {
        margin-top: 7px;
        color: #000;
        font-size: 8px;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-card img {
        max-width: 86%;
        max-height: 58px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .card img,
    .bike-card img,
    .review-card img,
    .workshop-card img {
        height: 190px;
    }

    .card-title,
    .bike-card .card-title {
        font-size: 15px;
    }

    .bike-card .card-body {
        padding: 14px;
    }

    .bike-card .card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .bike-card .card-meta .details {
        margin-left: 0;
    }

    .bike-card .card-meta span {
        width: fit-content;
    }

    .featured-news img {
        height: 225px;
    }

    .featured-news h3 {
        font-size: 16px;
        line-height: 1.45;
        margin-top: 12px;
    }

    .news-list {
        margin-top: 16px;
        gap: 14px;
    }

    .news-item {
        gap: 10px;
        align-items: flex-start;
        padding-bottom: 14px;
    }

    .news-item img {
        width: 96px;
        height: 72px;
        flex: 0 0 96px;
        border-radius: 10px;
    }

    .news-info {
        flex: 1;
        min-width: 0;
    }

    .news-info h5 {
        font-size: 13px;
        line-height: 1.45;
    }

    .arrow-btn {
        width: 36px;
        height: 36px;
    }

    .review-section {
        padding: 44px 0;
    }

    .review-section .row.g-4 {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
        margin-right: -12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .review-section .row.g-4>[class*="col-"] {
        flex: 0 0 82%;
        max-width: 82%;
        scroll-snap-align: start;
    }

    .review-card h4,
    .workshop-card h5 {
        font-size: 15px;
        line-height: 1.45;
    }


}

@media (max-width: 420px) {
    .brands-row {
        display: flex;
    }

    .brand-card {
        height: 68px;
        width: 100%;
    }

    .brand-item {
        flex-basis: 36%;
        max-width: 36%;
    }

    .bike-card img {
        height: 170px;
    }

    .bike-card .card-body {
        padding: 12px;
    }

    .bike-card .card-meta {
        width: 100%;
    }

    .cards-grid>.card,
    .review-section .row.g-4>[class*="col-"] {
        flex-basis: 86%;
        max-width: 86%;
    }

    .section-bikes .bikes-grid>.bike-card {
        flex: 0 0 32%;
        max-width: 32%;
        min-width: 112px;
    }

    .section-bikes .bike-card img {
        height: 80px;
    }

    .section-bikes .bike-card .card-body {
        padding: 6px 5px 7px;
    }

    .news-item {
        flex-direction: row;
    }

    .news-item img {
        width: 110px;
        height: 80px;
        flex: 0 0 110px;
    }
}

@media (max-width: 576px) {
    .news-section.py-5 {
        padding-top: 10px !important;
        padding-bottom: 16px !important;
    }

    .news-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .news-section .mb-4 {
        margin-bottom: 12px !important;
    }

    .news-title {
        margin: 0;
        font-size: 14px;
        line-height: 1.2;
        font-weight: 800;
    }

    .news-buttons {
        display: none;
    }

    .featured-news img {
        height: 187px;
        border-radius: 0;
        object-fit: cover;
    }

    .featured-news h3 {
        margin: 8px 4px 14px;
        font-size: 13px;
        line-height: 1.35;
        font-weight: 800;
    }

    .news-list {
        margin-top: 0;
        gap: 20px;
    }

    .news-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 8px;
        padding: 0 4px;
        border-bottom: 0;
    }

    .news-item img {
        width: 106px;
        height: 80px;
        flex: 0 0 106px;
        border-radius: 0;
        object-fit: cover;
    }

    .news-info h5 {
        font-size: 12px;
        line-height: 1.65;
        font-weight: 800;
    }
}

@media (max-width: 576px) {
    .site-header.navbar {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .site-header .container.header-inner {
        max-width: 100% !important;
        padding-top: 4px !important;
        padding-bottom: 6px !important;
    }

    main.container.page-main {
        width: 100% !important;
        max-width: 100% !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .search-row {
        margin-top: 12px;
        margin-bottom: 14px;
    }

    .section-cards,
    .explore-brands,
    .section-bikes,
    .news-section,
    .review-section {
        margin-top: 0 !important;
    }

    .review-section.py-5 {
        padding-top: 16px !important;
        padding-bottom: 14px !important;
    }

    .review-section .section-header {
        margin-bottom: 16px;
    }

    .review-section .section-header.mt-5 {
        margin-top: 20px !important;
    }

    .review-section .row.g-4 {
        margin-bottom: 0;
    }

    .site-footer {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }
}



.breadcrumb {
    font-size: 14px;
    color: #555;
    padding: 15px 0;
}

.breadcrumb a {
    color: #555;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 8px;
    color: #999;
}

.breadcrumb strong {
    color: #111;
}

/* ===========================
    CAR DETAILS PAGE
=========================== */

.car-details-container {
    max-width: 1040px;
    margin: 40px auto;
    padding: 0 16px;
}

.car-details-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) 360px;
    gap: 28px;
}

.car-details-main {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 26px;
    align-items: start;
}

.car-image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px;
    max-height: 360px;
    border: 1px solid #ececec;
}

.car-main-image {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: fill;
    padding: 12px;
}

.car-info-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.car-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.car-title {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.2;
}

.car-meta-text {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.car-price-text {
    font-size: 18px;
    /* color: #d32f2f; */
    font-weight: 700;
    margin: 0;
}

.car-description {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin: 0;
    max-width: 100%;
}

.price-section {
    display: none;
}

/* Specifications */
.specs-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.specs-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 22px;
    box-: 0 18px 30px rgba(15, 23, 42, 0.06);
}

.specs-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #f3f4f6;
}

.specs-grid {
    display: grid;
    gap: 10px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    text-transform: none;
    letter-spacing: 0;
}

.spec-value {
    font-size: 14px;
    color: #111;
    font-weight: 600;
    text-align: right;
}

.review-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.review-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 20px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.review-card p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

/* Sidebar */
.car-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-: 0 8px 25px rgba(17, 17, 17, 0.04);
}

.sidebar-ad-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.sidebar-title {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin: 0;
    padding: 18px 18px 14px;
    border-bottom: 1px solid #f0f0f0;
}

.news-items {
    display: flex;
    flex-direction: column;
    max-height: 520px;
    overflow-y: auto;
}

.news-item-card {
    display: flex;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: 0.2s ease;
}

.news-item-card:last-child {
    border-bottom: none;
}


.news-item-card img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.news-item-body {
    flex: 1;
    min-width: 0;
}

.news-item-body h5 {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #111;
    font-weight: 600;
}

.latest-cars-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px 18px 18px;
}

.latest-car-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.2s ease;
}



.latest-car-card img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.latest-car-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.latest-car-body h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.latest-car-body p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.latest-car-body a {
    color: #3366ff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    margin-top: auto;
}


/* Responsive */
@media (max-width: 1024px) {
    .car-details-wrapper {
        grid-template-columns: 1fr;
    }

    .car-details-main {
        grid-template-columns: 1fr;
    }

    .car-sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .car-details-container {
        margin: 24px auto;
    }

    .car-details-main {
        grid-template-columns: 1fr;
    }

    .car-title {
        font-size: 24px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .car-image-section {
        min-height: 300px;
    }

    .price-label {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .car-details-container {
        margin: 16px auto;
        padding: 0 12px;
    }

    .car-details-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .car-image-section {
        min-height: 240px;
    }

    .car-main-image {
        padding: 12px;
    }

    .car-title {
        font-size: 18px;
    }

    .car-description {
        font-size: 13px;
    }

    .price-section {
        padding: 16px;
    }

    .price-label {
        font-size: 18px;
    }

    .price-note {
        font-size: 11px;
    }

    .specs-title {
        font-size: 14px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .spec-label {
        font-size: 11px;
    }

    .spec-value {
        font-size: 13px;
    }

    .sidebar-title {
        font-size: 14px;
    }

    .news-item-card {
        gap: 10px;
        padding: 10px;
    }

    .news-item-card img {
        width: 70px;
        height: 50px;
    }

    .news-item-body h5 {
        font-size: 11px;
    }

    .latest-car-card {
        gap: 10px;
        padding: 10px;
    }

    .latest-car-card img {
        width: 70px;
        height: 50px;
    }

    .latest-car-body h5 {
        font-size: 12px;
    }

    .latest-car-body p {
        font-size: 11px;
    }

    .latest-car-body a {
        font-size: 11px;
    }
}

/* =========================
   PAGE
========================= */

body {
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    color: #222;
}

.page-wrap {
    max-width: 1280px;
    margin: 20px auto;
    padding: 0 12px;
}

.breadcrumb-nav {
    margin-bottom: 18px;
}

.breadcrumb {
    background: none;
    padding: 0;
    font-size: 14px;
}

.breadcrumb-item a {
    color: #000;
    text-decoration: none;
}

.breadcrumb-item.active {
    font-weight: 600;
    color: #111;
}


/* =========================
   HERO
========================= */

/* .car-image-box {
    background: #f4f4f4;
    border-radius: 6px;
    overflow: hidden;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.car-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* .car-summary h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 10px;
} */

.car-summary p {
    color: #555;
    line-height: 2;
    font-size: 15px;
}





.price-note span {
    color: #666;
    margin-left: 5px;
}




/* =========================
   SPEC GRID
========================= */

.spec-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.spec-card {
    background: #fff;
}

.spec-card h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.spec-list {
    border: 1px solid #dadada;
    border-radius: 18px;
    padding: 25px;
}

.spec-list div {
    display: grid;
    grid-template-columns: 150px 1fr;
    padding: 14px 0;
    border-bottom: 1px solid #ececec;
    align-items: center;
}

.spec-list div:last-child {
    border-bottom: none;
}

/* Remove spec borders only on the two-wheeler detail page */
.twowheeler-page .spec-list,
.twowheeler-page .spec-list div {
    border: none !important;
}

.twowheeler-page .spec-list div {
    padding: 10px 0;
}

/* Left-align two-wheeler page content on mobile */
@media (max-width: 576px) {

    .twowheeler-page .spec-card h3,
    .twowheeler-page .car-summary,
    .twowheeler-page .car-summary h1,
    .twowheeler-page .car-summary p,
    .twowheeler-page .car-summary h2,
    .twowheeler-page .price-note,
    .twowheeler-page .bike-item,
    .twowheeler-page .review-section,
    .twowheeler-page .review-section h2,
    .twowheeler-page .review-summary,
    .twowheeler-page .user-review {
        text-align: left;
    }

    .twowheeler-page .spec-list div {
        grid-template-columns: 1fr;
        gap: 6px;
        text-align: left;
    }

    .twowheeler-page .bike-item {
        text-align: left;
    }

    .twowheeler-page .car-summary .price-note {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px;
    }
}

.sidebar-stack {
    position: sticky;
    top: 20px;
}

.ad-box {
    margin-bottom: 25px;
}

.ad-box img {
    width: 100%;
    border-radius: 6px;
}


/* =========================
   WIDGET
========================= */

.sidebar-widget {

    margin-bottom: 22px;
    background: #fff;
}

.sidebar-widget h3 {
    font-size: 26px;
    color: #d20000;
    font-weight: 700;
    padding: 16px 18px;
    margin: 0;
}


/* =========================
   NEWS
========================= */

.news-list {
    padding: 0 16px 18px;
}

.news-item {
    display: flex;
    gap: 14px;
    text-decoration: none;
    color: #222;
    margin-bottom: 18px;
}

.news-item img {
    width: 92px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.news-item span {
    font-size: 14px;
    line-height: 1.6;
}


/* =========================
   LATEST CARS
========================= */

.latest-list {
    padding: 0 16px 18px;
}

.latest-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: #222;
    margin-bottom: 18px;
}

.latest-item img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.latest-item span {
    display: flex;
    flex-direction: column;
}

.latest-item strong {
    font-size: 15px;
    margin-bottom: 4px;
}

.latest-item small {
    color: #555;
    font-size: 13px;
    margin-bottom: 6px;
}

.latest-item em {
    color: #0066ff;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
}

.faq-section {
    margin-top: 40px;
}

.faq-section h2 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #111;
}

.faq-card {
    background: #fff;
    border: 1px solid #dadada;
    border-radius: 18px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #ececec;
    padding: 10px 15px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 700;
    font-size: 16px;
    color: #111;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
}

.photo-section {
    margin-top: 40px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.section-heading h2 {
    font-size: 26px;
    margin: 0;
    color: #111;
}

.view-all {
    color: #0066ff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.photo-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
}


.review-section h2 {
    font-size: 26px;
    margin-bottom: 14px;
    color: #111;
}

.review-summary {

    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

.user-reviews {
    display: grid;
    gap: 5px;
}

.user-review {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    background: #fff;

    border-radius: 18px;
    padding: 10px;
    align-items: start;
}

.review-avatar {
    width: auto;
    height: auto;
    background: transparent;
    color: #111;
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-weight: 700;
    font-size: 14px;
    border-radius: 0;
    padding: 0;
    line-height: 1.2;
}

.user-review strong {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #111;
}

.user-review p {
    margin: 0;
    color: #555;
    line-height: 1.8;
    font-size: 14px;
}

@media (max-width: 991px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-stack {
        position: static;
    }

    .car-summary h1 {
        font-size: 34px;
    }

    .car-summary h2 {
        font-size: 30px;
    }

    .photo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {

    .spec-list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .car-image-box {
        height: 240px;
    }

    .car-summary h1 {
        font-size: 28px;
    }

    .car-summary p {
        line-height: 1.8;
    }

    .sidebar-widget h3 {
        font-size: 22px;
    }

}




/* ==========================================
   FAQ + GALLERY ENHANCEMENT
   (Add below your existing CSS)
========================================== */

.faq-gallery-section {

    background: #fff;
}

.faq-gallery-section .container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

/* Heading */

.faq-area h2,
.gallery-area h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 24px;
}

/* FAQ */

.faq-box {
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-: 0 8px 20px rgba(0, 0, 0, .05);
}

.faq-item {
    border-bottom: 1px solid #ededed;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    border: none;
    background: #fff;

    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 11px;
    font-weight: 200;
    color: #111;
    transition: .3s;
}



.faq-question span {
    width: 30px;
    height: 30px;


    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    transition: .3s;
    flex-shrink: 0;
}


.faq-answer {

    font-size: 11px;
    color: #666;
    line-height: 1.8;
}

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.photo-card {
    position: relative;
    overflow: hidden;

    cursor: pointer;
}

.photo-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
    transition: .4s;
}


.photo-card span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .85));
    color: #fff;
    padding: 14px 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.view-btn {
    display: block;
    margin-top: 22px;
    text-align: center;
    background: #111;
    color: #fff;
    text-decoration: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}


/* Responsive */

@media(max-width:992px) {

    .faq-gallery-section .container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hide desktop-only sidebar and photo content on smaller screens */
    .faq-gallery-section .gallery-area,
    .sidebar-widget,
    .ad-box {
        display: none !important;
    }

}

@media(max-width:768px) {

    .faq-area h2,
    .gallery-area h2 {
        font-size: 23px;
    }

    .faq-question {
        padding: 18px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 18px 18px;
        font-size: 14px;
    }

    .photo-card img {
        height: 160px;
    }

}

@media(max-width:576px) {

    .faq-gallery-section {
        padding: 35px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .photo-card img {
        height: 220px;
    }

    .faq-area h2,
    .gallery-area h2 {
        font-size: 23px;
    }

    .view-btn {
        font-size: 14px;
        padding: 12px;
    }

}





.review-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;

}

.user-review {
    display: flex;
    align-items: flex-start;
    gap: 18px;

}

.review-avatar {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: #111;
    font-weight: 700;
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    padding: 0;
    line-height: 1.2;
}

.review-content {
    flex: 1;
}

.review-content strong {
    display: block;
    font-size: 15px;
    color: #111;
    margin-bottom: 4px;
}

.review-date {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 14px;
}

.review-content p {
    margin: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.8;
}

/* Mobile */

@media(max-width:768px) {

    .user-review {
        gap: 14px;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .review-content p {
        font-size: 15px;
    }

}

/* ==========================
   Footer
========================== */

.site-footer {
    background: #f2f2f2;
    border-top: 1px solid #ddd;
    padding: 12px 0;
    text-align: center;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-links {
    margin-bottom: 4px;
}

.footer-links a {
    color: #222;
    text-decoration: none;
    font-size: 12px;
    margin: 0 10px;
    transition: color .3s;
}



.footer-copy {
    font-size: 12px;
    color: #666;
}




.brand-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
}

.brand-search {
    position: relative;
    margin-bottom: 25px;
}

.brand-search input {
    width: 100%;
    height: 46px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0 45px 0 18px;
    outline: none;
}

.brand-search i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.brand-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.brand-car {
    display: flex;
    border: 1px solid #e5e5e5;
    margin-bottom: 22px;
    background: #fff;
}

.brand-car-image {
    width: 230px;
    flex-shrink: 0;
}

.brand-car-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.brand-car-content {
    flex: 1;
    padding: 16px;
}

.brand-car-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.price {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

.brand-car-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.car-bottom {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.specs {
    display: flex;
    gap: 25px;
}

.specs span {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    color: #555;
}

.specs i {
    margin-bottom: 6px;
}

.details-btn {
    border: 1px solid #bbb;
    padding: 9px 18px;
    border-radius: 5px;
    color: #111;
    text-decoration: none;
    font-size: 13px;
}


.sidebar-ad {
    width: 100%;
    margin-bottom: 25px;
}

.sidebar-box {
    margin-bottom: 30px;
}

.sidebar-box h3 {
    color: #d40000;
    font-size: 28px;
    margin-bottom: 18px;
}

.side-post {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.side-post img {
    width: 95px;
    height: 70px;
    object-fit: cover;
}

.side-post p {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.side-post strong {
    display: block;
    font-size: 14px;
}

.side-post small {
    display: block;
    margin: 4px 0;
    color: #777;
}

.side-post a {
    color: #2468ff;
    text-decoration: none;
    font-size: 13px;
}

@media(max-width:992px) {

    .brand-layout {
        grid-template-columns: 1fr;
    }

    .brand-sidebar {
        display: none;
    }

    .brand-car {
        flex-direction: column;
    }

    .brand-car-image {
        width: 100%;
    }

    .brand-car-image img {
        height: 220px;
    }

    .car-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

/* ===============================
   PHOTO PAGE
=================================*/

.photos-page {
    padding: 30px 0 50px;
}

.photos-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 35px;
    align-items: start;
}

/* ===============================
      TABS
=================================*/

.photo-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
}

.photo-tabs a {
    display: inline-block;
    padding: 9px 18px;
    text-decoration: none;
    background: #f2f2f2;
    color: #222;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.photo-tabs a.active {
    background: #240404;
    color: #fff;
}


/* ===============================
      GALLERY
=================================*/

.photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}

.photo-card {
    text-align: center;
}

.photo-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: .35s;
}



.photo-card h4 {
    margin-top: 14px;
    font-size: 28px;
    font-weight: 700;
    color: #222;
}

.photo-card p {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

/* ===============================
      SIDEBAR
=================================*/

.sidebar {
    width: 100%;
}

/* Advertisement */

.sidebar-ad {
    margin-bottom: 28px;
}

.sidebar-ad img {
    width: 100%;
    display: block;
}

/* ===============================
      AUTO NEWS
=================================*/

.sidebar-title {
    color: #e00000;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.news-item {
    display: flex;
    gap: 5px;
    text-decoration: none;
}

.news-item img {
    width: 105px;
    height: 72px;
    object-fit: cover;
    flex-shrink: 0;
}

.news-item span {
    font-size: 13px;
    color: #333;
    line-height: 1.6;
}


/* ===============================
      LATEST CARS
=================================*/

.latest-title {
    color: #e00000;
    font-size: 32px;
    font-weight: 700;
    margin: 35px 0 18px;
}

.latest-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.latest-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
}

.latest-item img {
    width: 95px;
    height: 72px;
    object-fit: cover;
}

.latest-content {
    display: flex;
    flex-direction: column;
}

.latest-content h5 {
    margin: 0;
    font-size: 15px;
    color: #222;
    font-weight: 700;
}

.latest-content small {
    color: #666;
    margin: 6px 0;
    font-size: 12px;
}

.latest-content span {
    color: #276dff;
    font-size: 13px;
    font-weight: 600;
}







/* ===============================
      RESPONSIVE
=================================*/

@media(max-width:991px) {

    .photos-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        margin-top: 40px;
    }

}

@media(max-width:768px) {

    .photos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .photo-card img {
        height: 220px;
    }

    .sidebar-title,
    .latest-title {
        font-size: 26px;
    }

}

@media(max-width:576px) {

    .photo-tabs {
        gap: 8px;
    }

    .photo-tabs a {
        font-size: 14px;
        padding: 8px 14px;
    }

    .photo-card img {
        height: 200px;
    }

    .news-item img,
    .latest-item img {
        width: 90px;
        height: 65px;
    }

    .sidebar-title,
    .latest-title {
        font-size: 22px;
    }

}


/* Mobile Gallery */
@media (max-width:576px) {

    .photos-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 14px;
    }

    .photo-card {
        text-align: center;
    }

    .photo-card img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: 0;
        display: block;
    }

    .photo-card h4 {
        margin-top: 8px;
        font-size: 11px;
        font-weight: 700;
        line-height: 1.4;
        color: #222;
    }

    .photo-tabs {
        margin-bottom: 18px;
        gap: 10px;
    }

    .photo-tabs a {
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 600;
    }

    /* Hide sidebar on mobile */
    .sidebar {
        display: none;
    }
}

/* Section */

.car-photo-section {
    max-width: 100%;
}

/* Title */

.photo-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #111;
}

/* Card */

.photo-view-card {
    width: 100%;

}

/* Image */

.photo-image {
    position: relative;
    overflow: hidden;
    background: #f3f3f3;
}

.photo-image img {
    width: 100%;
    display: block;
}

/* 1/4 Badge */

.photo-count {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #111;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 10px;
    z-index: 2;
}

/* Description */

.photo-info {
    border: 1px solid #d8d8d8;
    padding: 10px;
    background: #fff;
    margin: 10px 0px 60px 0;
}

.photo-info p {
    margin: 0;
    color: #333;
    font-size: 17px;
    line-height: 1.8;
}

.bike-category {
    margin-bottom: 40px;
}

.category-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

.bike-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.bike-item {
    text-align: center;
}

.bike-image {
    background: #f3f3f3;
    border: 1px solid #e5e5e5;
    padding: 12px;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .3s;
}



.bike-image img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.bike-item h4 {
    margin-top: 12px;
    font-size: 17px;
    font-weight: 600;
    color: #111;
}

/* Tablet */

@media(max-width:992px) {

    .bike-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */

@media(max-width:576px) {

    .bike-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .bike-image {
        height: 90px;
        padding: 10px;
    }

    .bike-image img {
        max-height: 65px;
    }

    .bike-item h4 {
        font-size: 14px;
        margin-top: 8px;
    }

}

/* ===========================
   Bike Section
=========================== */

.bike-category {
    margin: 30px 0;
}

.category-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.bike-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.bike-item {
    text-align: center;
}

.bike-image {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    padding: 10px;
}

.bike-image img {
    width: 100%;
    height: 90px;
    object-fit: contain;
    display: block;
}

.bike-item h4 {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 600;
}

/* ===========================
   Mobile Slider
=========================== */

@media (max-width:768px) {

    .bike-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 10px;

        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .bike-grid::-webkit-scrollbar {
        display: none;
    }

    .bike-item {
        flex: 0 0 150px;
        min-width: 150px;
        scroll-snap-align: start;
    }

    .bike-image {
        padding: 8px;
    }

    .bike-image img {
        height: 80px;
    }

    .bike-item h4 {
        font-size: 14px;
    }

}

.photos-content {
    overflow: hidden;
}

/* ===========================
   Bikes Brands Page - Scoped Responsive Fixes
   Ensures left-aligned content and stacked layout on small screens
=========================== */

.bikes-page .photos-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 35px;
    align-items: start;
}

.bikes-page {
    margin-top: 10px;
}

.bikes-page .bikes-article {
    min-width: 0;
}

.bikes-page .news-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.25;
}

.bikes-page .news-meta p {
    color: #555;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 24px;
    word-break: break-word;
}

.bikes-page .news-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 20px;
}

.bikes-page .news-banner {
    margin: 22px 0 26px;
}

.bikes-page .news-banner img {
    width: 100%;
    height: auto;
    max-height: 520px;
    border-radius: 18px;
    display: block;
    object-fit: cover;
}

.bikes-page .bike-category {
    margin-top: 40px;
}

.bikes-page .category-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.bikes-page .bike-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.bikes-page .bike-item {
    text-align: left;
    min-height: 220px;
}

.bikes-page .bike-image {
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    min-height: 100px;
}

.bikes-page .bike-image img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    display: block;
}

.bikes-page .bike-item p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #222;
}

.bikes-page .brand-sidebar {
    width: 100%;
}

.bikes-page .sidebar-ad,
.bikes-page .sidebar-box img {
    max-width: 100%;
    height: auto;
    display: block;
}

.bikes-page .side-post {
    align-items: flex-start;
}

.bikes-page .side-post img {
    border-radius: 12px;
}

.bikes-page .related-news-card {
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .bikes-page .photos-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .bikes-page .brand-sidebar {
        margin-top: 36px;
    }

    .bikes-page .news-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .bikes-page {
        margin-top: 0;
        padding: 0 0 20px;
    }

    .bikes-page .photos-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .bikes-page .brand-sidebar {
        display: none;
    }

    .bikes-page .news-content {
        width: 100%;
    }

    .bikes-page .news-title {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .bikes-page .news-meta p,
    .bikes-page .news-content p {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 16px;
    }

    .bikes-page .news-banner {
        margin: 18px 0 22px;
    }

    .bikes-page .news-banner img {
        border-radius: 14px;
        max-height: 360px;
    }

    .bikes-page .bike-category {
        margin-top: 28px;
    }

    .bikes-page .category-title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .bikes-page .bike-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .bikes-page .bike-grid::-webkit-scrollbar {
        display: none;
    }

    .bikes-page .bike-item {
        flex: 0 0 82%;
        min-width: 240px;
        max-width: 280px;
        scroll-snap-align: start;
        text-align: left;
        min-height: auto;
    }

    .bikes-page .bike-image {
        min-height: 170px;
        padding: 0;
        border-radius: 16px;
    }

    .bikes-page .bike-item p {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .bikes-page {
        padding-bottom: 16px;
    }

    .bikes-page .photos-layout {
        gap: 14px;
    }

    .bikes-page .news-title {
        font-size: 21px;
        line-height: 1.35;
    }

    .bikes-page .news-meta p {
        font-size: 13px;
        line-height: 1.65;
    }

    .bikes-page .news-content p {
        font-size: 13px;
        line-height: 1.75;
    }

    .bikes-page .news-banner img {
        border-radius: 12px;
        max-height: 240px;
    }

    .bikes-page .category-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .bikes-page .bike-item {
        flex-basis: 84%;
        min-width: 220px;
        max-width: 240px;
    }

    .bikes-page .bike-image {
        min-height: 150px;
    }

    .bikes-page .bike-image img {
        height: 150px;
        object-fit: cover;
    }

    .bikes-page .bike-item p {
        font-size: 13px;
        line-height: 1.45;
    }
}

@media (max-width: 420px) {
    .bikes-page .bike-item {
        flex-basis: 88%;
        min-width: 210px;
    }

    .bikes-page .bike-image {
        min-height: 138px;
    }

    .bikes-page .bike-image img {
        height: 138px;
    }
}

/* ============================
   BRAND PAGE (Cars & Bikes Listing)
============================ */

.brand-page {
    margin-top: 10px;
    padding-bottom: 40px;
}

.brand-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

.brand-left {
    min-width: 0;
}

.brand-search {
    position: relative;
    max-width: 400px;
    margin-bottom: 28px;
}

.brand-search input {
    width: 100%;
    height: 44px;
    padding: 0 40px 0 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    color: #333;
    background: #fff;
}

.brand-search input::placeholder {
    color: #999;
}

.brand-search input:focus {
    border-color: #0d6efd;
}

.brand-search i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
}

.brand-heading {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin: 32px 0 20px;
    padding-bottom: 10px;

}

.brand-heading:first-of-type {
    margin-top: 0;
}

.brand-car {
    width: 100%;
    height: 206px;
    border-width: 1px;


}

.brand-car-image {
    width: 309px;
    height: 206px;
    angle: 0 deg;
    opacity: 1;
    top: 1100px;
    left: 50px;
}

.brand-car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-car-content {
    flex: 1;
    padding: 18px 18px 18px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.brand-car-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.3;
}

.brand-car-content .price {
    font-size: 18px;
    font-weight: 700;

    margin: 0;
}

.brand-car-content p {
    font-size: 14px;
    color: #666;
    line-height: 25px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 300px;
    font-style: light;
    letter-spacing: 0%;
}

.car-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 12px;

    flex-wrap: wrap;
}



.icon-fuel {
    width: 16.92px;
    height: 18px;
}

.icon-gearshift {
    width: 18px;
    height: 18px;
}


.specs span i {
    font-size: 12px;
    color: #888;
}

.details-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: #fff;

    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
    white-space: nowrap;
}

/* =========================================================
       CAR LIST PAGE
    ========================================================= */

.car-card-box {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: #fff;
    border: 1px solid #E7E7E7;
    margin-bottom: 28px;
    overflow: hidden;
}

.car-card-image {
    width: 320px;
    min-width: 320px;
}

.car-card-image img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.car-card-body {
    flex: 1;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
}

.car-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px;
    line-height: 1.3;
}

.car-card-price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.car-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.car-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.car-card-specs {
    display: flex;
    gap: 32px;
}

.car-spec-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.car-spec-box svg {
    width: 22px;
    height: 22px;
    color: #222;
    margin-bottom: 8px;
}

.car-spec-box span {
    font-size: 13px;
    color: #444;
    line-height: 1.3;
}




/* =========================================================
       992px
    ========================================================= */

@media (max-width:992px) {

    .brand-layout {
        display: block;
    }

    .brand-sidebar {
        display: none !important;
    }

    .brand-left {
        width: 100%;
    }

    .car-card-box {
        display: block;
    }

    .car-card-image {
        width: 100%;
        min-width: 100%;
    }

    .car-card-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .car-card-body {
        padding: 18px;
    }

    .car-card-title {
        font-size: 28px;
    }

    .car-card-price {
        font-size: 24px;
    }

    .car-card-desc {
        font-size: 15px;
    }

}

/* =========================================================
       768px
    ========================================================= */

@media (max-width:768px) {

    .search-wrap {
        padding: 0 15px;
    }

    .car-card-body {
        padding: 16px;
    }

    .car-card-title {
        font-size: 22px;
    }

    .car-card-price {
        font-size: 20px;
    }

    .car-card-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .car-card-specs {
        gap: 22px;
    }

    .car-spec-box svg {
        width: 20px;
        height: 20px;
    }

    .car-card-btn {
        width: 120px;
        height: 38px;
        font-size: 13px;
    }

}

/* =========================================================
       567px
    ========================================================= */

@media (max-width:567px) {

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .brand-sidebar {
        display: none !important;
    }

    .section-head h2 {
        font-size: 22px;
    }

    .car-card-box {
        margin-bottom: 20px;
    }

    .car-card-image img {
        aspect-ratio: 16/10;
    }

    .car-card-body {
        padding: 12px;
    }

    .car-card-title {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .car-card-price {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .car-card-desc {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .car-card-footer {
        align-items: flex-end;
    }

    .car-card-specs {
        gap: 16px;
    }

    .car-spec-box svg {
        width: 16px;
        height: 16px;
        margin-bottom: 5px;
    }

    .car-spec-box span {
        font-size: 11px;
    }

    .car-card-btn {
        width: 92px;
        height: 30px;
        border-radius: 8px;
        font-size: 11px;
    }

}

Vehicle Bottom Section==========================*/ .vehicle-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 18px;

}

.vehicle-meta-group {
    display: flex;
    align-items: flex-start;
    gap: 42px;
}

.vehicle-meta-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vehicle-meta-icon {
    margin-bottom: 8px;
    color: #1b1b1b;
}

.vehicle-meta-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.vehicle-meta-text {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    line-height: 1.3;
}

.vehicle-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 135px;
    height: 40px;
    padding: 0 22px;
    background: #fff;
    border: 1px solid #d7d7d7;
    border-radius: 12px;
    color: #111;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
}


@media (max-width:992px) {

    .vehicle-meta-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .vehicle-meta-group {
        gap: 26px;
    }

    .vehicle-detail-btn {
        min-width: 120px;
        height: 38px;
        font-size: 14px;
    }

}

@media (max-width:576px) {

    .vehicle-meta-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    .vehicle-meta-group {
        gap: 18px;
    }

    .vehicle-meta-icon svg {
        width: 18px;
        height: 18px;
    }

    .vehicle-meta-text {
        font-size: 12px;
    }

    .vehicle-detail-btn {
        min-width: 110px;
        height: 36px;
        padding: 0 16px;
        font-size: 13px;
    }

}

/*=============================
                                                  Car Card Design
                                            ==============================*/

.car-card-box {
    width: 100%;
    margin-bottom: 30px;
    border: 1px solid #E9E9E9;
    background: #fff;
}

.car-card-image {
    width: 100%;
}

.car-card-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.car-card-body {
    padding: 18px;
}

.car-card-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.car-card-price {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.car-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.car-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.car-card-specs {
    display: flex;
    gap: 34px;
}

.car-spec-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.car-spec-box svg {
    width: 22px;
    height: 22px;
    margin-bottom: 8px;
}

.car-spec-box span {
    font-size: 14px;
    color: #444;
}



@media(max-width:992px) {

    .brand-sidebar {
        display: none;
    }

    .brand-layout {
        display: block;
    }

    .car-card-title {
        font-size: 28px;
    }

    .car-card-price {
        font-size: 24px;
    }

    .car-card-desc {
        font-size: 15px;
    }

}

@media(max-width:768px) {

    .car-card-body {
        padding: 16px;
    }

    .car-card-title {
        font-size: 24px;
    }

    .car-card-price {
        font-size: 22px;
    }

    .car-card-desc {
        font-size: 14px;
    }

    .car-card-footer {
        align-items: center;
    }

    .car-card-specs {
        gap: 25px;
    }

    .car-card-btn {
        min-width: 125px;
        height: 40px;
    }

}

@media(max-width:567px) {

    .brand-sidebar {
        display: none !important;
    }

    .car-card-body {
        padding: 12px;
    }

    .car-card-title {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .car-card-price {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .car-card-desc {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .car-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .car-card-specs {
        gap: 16px;
    }

    .car-spec-box svg {
        width: 16px;
        height: 16px;
    }

    .car-spec-box span {
        font-size: 11px;
    }

    .car-card-btn {
        min-width: 92px;
        height: 30px;
        font-size: 11px;
        border-radius: 8px;
    }

}

.brand-car {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid #E6E6E6;
    margin-bottom: 28px;
    overflow: hidden;
}

.brand-car-image {
    width: 320px;
    flex-shrink: 0;
}

.brand-car-image img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
    display: block;
}

.brand-car-content {
    flex: 1;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
}

.brand-car-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.brand-car-content .price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.brand-car-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.brand-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 90px;
}



.sidebar-ad {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.sidebar-box {
    background: #fff;


    overflow: hidden;
    box: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.sidebar-box h3 {
    margin: 0;
    padding: 16px 18px 12px;

    font-family: DM Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 25px;
    color: #D3050F;

    line-height: 40px;

}

.sidebar-box img {
    max-width: 100%;
    height: auto;
    display: block;
}

.side-post {
    display: flex;
    gap: 14px;
    padding: 14px 18px;

    align-items: flex-start;
    transition: 0.2s ease;
}

.side-post:last-child {
    border-bottom: none;
}


.side-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;

    flex-shrink: 0;
}

.side-post p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    font-weight: 500;
}

.side-post div {
    flex: 1;
    min-width: 0;
}

.side-post strong {
    display: block;
    font-size: 14px;
    color: #111;
    margin-bottom: 4px;
}

.side-post small {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
}

.side-post a {
    color: #0d6efd;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}


@media (max-width: 1024px) {
    .brand-layout {
        grid-template-columns: 1fr 300px;
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .brand-layout {
        grid-template-columns: 1fr;
    }

    .brand-sidebar {
        position: static;
        order: 2;
    }

    .brand-car-image {
        width: 100%;
        height: 428px;

    }
}

@media (max-width: 768px) {
    .brand-heading {
        font-size: 22px;
        margin-top: 24px;
        margin-bottom: 16px;
    }

    .brand-car {
        flex-direction: column;
        gap: 0;
    }

    .brand-car-image {
        width: 100%;
        height: 428px;
    }
}




.brand-car-content {
    padding: 16px;
}

.brand-car-content h3 {
    font-size: 18px;
}

.brand-car-content .price {
    font-size: 16px;
}

.brand-car-content p {
    font-size: 13px;
}

.car-bottom {
    flex-direction: column;
    align-items: flex-start;
}

.specs {
    gap: 8px;
}

.specs span {
    font-size: 12px;
    padding: 5px 10px;
}

.details-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 13px;
}


@media (max-width: 576px) {
    .brand-car-image {
        width: 100%;
        height: 428px;



    }

    .brand-search {
        max-width: 100%;
        margin-bottom: 18px;
    }

    .brand-heading {
        font-size: 18px;
        margin: 18px 0 12px;
        padding-bottom: 8px;
    }

    .brand-car {

        margin-bottom: 14px;
    }



    .brand-car-content {
        padding: 12px;
        gap: 6px;
    }

    .brand-car-content h3 {
        font-size: 16px;
    }

    .brand-car-content .price {
        font-size: 14px;
    }

    .brand-car-content p {
        font-size: 12px;
        line-height: 1.5;
    }

    .car-bottom {
        padding-top: 8px;
        gap: 10px;
    }

    .specs {
        gap: 6px;
    }

    .specs span {
        font-size: 11px;
        padding: 4px 8px;
    }

    .specs span i {
        font-size: 10px;
    }

    .details-btn {
        font-size: 12px;
        padding: 8px 14px;
    }

    .sidebar-box h3 {
        font-size: 15px;
        padding: 12px 14px;
    }

    .side-post {
        padding: 10px 14px;
        gap: 10px;
    }

    .side-post img {
        width: 64px;
        height: 48px;
    }

    .side-post p {
        font-size: 12px;
    }

    .side-post strong {
        font-size: 13px;
    }

    .side-post small {
        font-size: 11px;
    }
}

/* Hide sidebar on mobile for bikesbrands page */
@media (max-width: 768px) {
    .bikesbrands-page .brand-sidebar {
        display: none;
    }
}

/* Override: hide sidebar on mobile/tablet for bikesbrands page */
@media (max-width: 900px) {
    .bikesbrands-page .brand-sidebar {
        display: none !important;
    }
}

/* Frontend button theme for all pages except the homepage override */
.btn:not(.btn-close):not(.btn-link):not(.nav-link),
.explore-link,
.section-header a,

.view-btn,
.view-all-btn,
.btn-watch-now,
.btn-load-more,
.arrow-btn,
.search-btn {
    background: #d3cccc !important;
    color: #030303 !important;


}

.search-btn svg path,
.search-btn svg circle {
    stroke: #fff !important;
}

/* =========================
   GLOBAL RESPONSIVE SYSTEM
========================= */

img,
video,
iframe,
svg {
    max-width: 100%;
}

img {
    height: auto;
}

.container {
    width: min(100%, 1200px);
    padding-left: 16px;
    padding-right: 16px;
}

.page-wrap {
    width: 100%;
}

.table-responsive-wrapper,
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive table {
    min-width: 640px;
}


*,
*::before,
*::after {
    box-: none !important;
    text-: none !important;
}

* {
    transition: none !important;
    animation: none !important;
}


*:focus,
*:active {
    box-: none !important;
    text-: none !important;
    transform: none !important;
    filter: none !important;
}

@media (max-width: 1199.98px) {
    .spec-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 991.98px) {
    .car-summary h1 {
        font-size: 34px;
    }

    .car-summary h2 {
        font-size: 30px;
    }

    .car-image-box,
    .car-main-image,
    .car-slider,
    .car-slider-image,
    .bike-slider,
    .bike-slider-image {
        min-height: 260px;
    }

    .sidebar-stack {
        position: static;
        top: auto;
    }

    .sidebar-widget h3 {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .search-row {
        flex-direction: column;
        align-items: stretch;
    }


    .car-hero .row.g-4,
    .review-section .row.g-4 {
        row-gap: 18px;
    }

    .car-image-box,
    .car-main-image,
    .car-slider,
    .car-slider-image,
    .bike-slider,
    .bike-slider-image {
        min-height: 220px;
    }

    .car-slider-btn,
    .bike-slider-btn {
        width: 38px;
        height: 38px;
    }

    .car-slider-thumbs,
    .bike-slider-thumbs {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    }

    .spec-list {
        padding: 18px;
    }

    .spec-list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .news-item,
    .latest-item {
        align-items: flex-start;
    }

    .news-item img,
    .latest-item img {
        width: 78px;
        height: 60px;
        flex: 0 0 auto;
    }
}

@media (max-width: 575.98px) {
    .car-summary h1 {
        font-size: 28px;
    }

    .car-summary h2 {
        font-size: 24px;
    }

    .price-note {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .sidebar-widget h3 {
        font-size: 20px;
        padding: 14px 16px;
    }

    .news-list,
    .latest-list {
        padding-left: 12px;
        padding-right: 12px;
    }

    .search-suggestions-dropdown {
        max-height: 320px;
    }
}

/* Basic reset and variables */
:root {
    --bg: #ffffff;
    --muted: #666667;
    --accent: #1b1b18;
    --card-: 0 6px 18px rgba(27, 27, 24, 0.06);
    --radius: 12px;
    --container: 1200px;
    font-family: 'DM Sans', sans-serif;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    margin: 0;
    background: var(--bg);
    color: var(--accent)
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px
}

/* Header */
.site-header {
    border-bottom: 1px solid #f0efee;
    background: transparent
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0
}

.brand {
    font-weight: 600;
    font-size: 18px
}

.main-nav {
    display: flex;
    gap: 14px;
    flex: 1;
    justify-content: center
}

.search-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}



.search-input {
    width: 100%;
    padding: 14px 48px 14px 20px;


    background: #fff;
    font-size: 14px;
    box-: 0 2px 8px rgba(16, 24, 40, 0.04);
    outline: none;
}

.search-input::placeholder {
    color: #9aa0a6;
}

.search-input:focus {
    border-color: #d0d7db;
    box-: 0 6px 20px rgba(27, 27, 24, 0.06);
}

.search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    height: 36px;
    width: 36px;
    border-radius: 10px;
    border: none;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


.search-btn svg {
    display: block;
}


.social {
    display: flex;
    gap: 8px
}

.social a {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #f3f3f3;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none
}

/* Search row */
.page-main {
    padding: 20px 0 30px
}

.search-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 18px 0
}

.search-input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fff;
    font-size: 14px
}

.btn {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer
}

.btn.primary {
    background: #1b1b18;
    color: #fff
}

/* Section heading */
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0 20px
}

.section-head h2 {
    margin: 0;
    font-size: 18px
}

.explore-link {
    color: #666;
    text-decoration: none;
    font-size: 14px
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px
}

.card {
    background: #fff;
    border-radius: 12px;
    box-: var(--card-);
    overflow: hidden;
    border: 1px solid #f1f1ef;
    display: flex;
    flex-direction: column
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block
}

.card-body {
    padding: 15px;
}

.card-title {
    margin: 0 0 8px;
    font-size: 16px
}

.card-meta {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    align-items: center
}

.card-meta span {
    background: #fafafa;
    padding: 6px 8px;
    border-radius: 6px
}

/* Footer */
.site-footer {
    border-top: 1px solid #f0efee;
    padding: 20px 0;
    text-align: center;
    color: #777;
    font-size: 13px
}



.search-wrap {
    width: 100%;
}

.search-box {
    width: 628px;
    height: 60px;
    border: 1px solid #ABB7C2;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 18px 0 20px;
    box-sizing: border-box;

}

.search-box:focus-within {
    border-color: #9CA9B8;
    box-shadow: 0 0 0 4px rgba(184, 195, 207, 0.16);
}

.search-input {
    flex: 1;
    min-width: 0;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 12px;
    line-height: 100%;
    font-weight: 400;
    color: #344054;
    padding: 0;
}

.search-input::placeholder {
    color: #ABB7C2;
    opacity: 1;
}

.search-button {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    flex: 0 0 auto;
    color: #B8C3CF;
}

.search-button svg {
    width: 24px;
    height: 24px;
    display: block;
}

@media (min-width:900px) {
    .search-input {
        max-width: 720px
    }

    /* Brands */
    .explore-brands {
        margin-top: 40px;
    }

    .brands-row {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 32px;
        flex-wrap: wrap;
    }

    .brand-item {
        width: 180px;
        flex: 0 0 180px;
        text-align: center;
    }

    .brand-card {
        width: 180px;
        height: 110px;
        border-radius: 12px;
        border: 1px solid #e2e2e2;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        box-: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .brand-card img {
        display: block;
        max-width: 85%;
        max-height: 100px;
        width: auto;
        height: auto;
        object-fit: contain;
        margin: 0 auto;
    }

    .brand-name {
        color: #666;
        font-size: 13px;
        line-height: 1.4;
        margin-top: 10px;
        font-weight: 500;
    }

    /* Bikes */
    .section-bikes {
        margin-top: 36px
    }

    .bikes-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 18px
    }

    .bike-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #f1f1ef;
        box-: var(--card-);
        display: flex;
        flex-direction: column
    }

    .bike-card img {
        width: 100%;
        height: 160px;
        object-fit: cover
    }

    .bike-card .card-body {
        padding: 12px
    }

    .bike-card .card-title {
        margin: 0 0 8px;
        font-size: 15px
    }

    .bike-card .card-meta {
        display: flex;
        gap: 10px;
        align-items: center
    }

    .bike-card .card-meta span {
        background: #fafafa;
        padding: 6px 8px;
        border-radius: 6px;
        font-size: 13px
    }

    .bike-card .card-meta .details {
        margin-left: auto;
        color: #5b87ff;
        text-decoration: none;
        font-size: 13px
    }

    .section-news {
        margin-top: 36px;
    }

    .news-grid {
        display: grid;
        grid-template-columns: minmax(320px, 1.7fr) 1fr;
        gap: 18px;
    }

    .news-side {
        display: grid;
        gap: 18px;
    }

    .news-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #f1f1ef;
        box-: var(--card-);
        display: flex;
        flex-direction: column;
    }

    .news-card img {
        width: 100%;
        object-fit: cover;
        display: block;
    }

    .news-main-card img {
        height: 280px;
    }

    .news-small-card img {
        height: 140px;
    }

    .news-body {
        padding: 14px 16px;
    }

    .news-label {
        margin: 0 0 10px;
        font-size: 12px;
        color: #5b87ff;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .news-card h3 {
        margin: 0;
        font-size: 16px;
        line-height: 1.4;
    }

    @media (max-width: 900px) {
        .news-grid {
            grid-template-columns: 1fr;
        }

        .news-side {
            grid-template-columns: 1fr;
        }
    }


    .card img {
        height: 180px
    }
}

/* ===== Header Improvements ===== */

.header-inner {
    justify-content: space-between;
    min-height: 72px;
}

.brand {
    width: 160px;
    /* Keeps the menu perfectly centered */
    flex-shrink: 0;
}

.site-logo {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

.main-nav p {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    transition: 0.3s ease;
}


.social {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.social a {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    font-size: 24px;
    color: #111;
    transition: 0.3s ease;
}


/* Individual icon colors */
.social .fa-facebook {
    color: #1877F2;
}

.social .fa-x-twitter {
    color: #000;
}

.social .fa-instagram {
    color: #E4405F;
}

.social .fa-youtube {
    color: #FF0000;
}


.search-input {
    width: 100%;
    height: 42px;
    padding: 0 45px 0 14px;

    outline: none;
    font-size: 13px;
    color: #555;
    background: #fff;
}

.search-input::placeholder {
    color: #9aa0a6;
}

.search-btn {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn svg {
    width: 18px;
    height: 18px;
}

/* ===========================
        AUTO NEWS
=========================== */

.news-section {
    background: #fff;
}

.news-title {
    font-size: 34px;
    font-weight: 700;
    color: #111;
}

.news-buttons {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    transition: .3s;
}



.featured-news {
    cursor: pointer;
}

.featured-news img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    transition: .4s;
}


.featured-news h3 {
    margin-top: 18px;
    font-size: 30px;
    line-height: 1.45;
    font-weight: 700;
    color: #111;
    transition: .3s;
}


.news-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    transition: .3s;
    padding-bottom: 20px;
    border-bottom: 1px solid #ececec;
}

.news-item:last-child {
    border: none;
}



.news-item img {
    width: 180px;
    height: 115px;
    object-fit: cover;
    border-radius: 14px;
    transition: .3s;
}



.news-info h5 {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    color: #111;
    transition: .3s;
}


/* Responsive */

@media(max-width:991px) {

    .featured-news img {
        height: 320px;
    }

    .featured-news h3 {
        font-size: 24px;
    }

    .news-list {
        margin-top: 30px;
    }

    .news-item img {
        width: 140px;
        height: 90px;
    }

    .news-info h5 {
        font-size: 16px;
    }

}

@media(max-width:576px) {

    .news-title {
        font-size: 26px;
    }

    .featured-news img {
        height: 220px;
    }

    .featured-news h3 {
        font-size: 20px;
    }

    .news-item {
        gap: 12px;
    }

    .news-item img {
        width: 110px;
        height: 75px;
    }

    .news-info h5 {
        font-size: 14px;
        line-height: 1.5;
    }

    .arrow-btn {
        width: 36px;
        height: 36px;
    }

}

/* ===========================
        REVIEW SECTION
===========================*/

.review-section {

    background: #fff;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #111;
}

.section-header a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    font-size: 15px;
}

.review-card,
.workshop-card {
    cursor: pointer;
    border: none;
    box-: none;
    transition: .35s;
}

.review-card img,
.workshop-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 18px;
    transition: .4s;
}



.review-card h4 {
    margin-top: 18px;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 600;
    color: #111;
    transition: .3s;
}



.workshop-card h5 {
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    color: #111;
    transition: .3s;
}



/* Responsive */

@media(max-width:992px) {

    .review-card img,
    .workshop-card img {
        height: 200px;
    }

    .review-card h4 {
        font-size: 18px;
    }

    .workshop-card h5 {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

}

@media(max-width:576px) {

    .review-card img,
    .workshop-card img {
        height: 180px;
    }

    .review-card h4 {
        font-size: 17px;
    }

    .workshop-card h5 {
        font-size: 15px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .section-header h2 {
        font-size: 24px;
    }

}

/* Responsive overrides */
body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.page-main {
    width: 100%;
    padding: 0;
}

.site-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .navbar-toggler {
    border: 1px solid #e7e7e3;
    box-: none;
}

.site-header .navbar-toggler:focus {
    box-: none;
}

.site-header .navbar-collapse {
    flex-grow: 0;
}

.site-header .nav-link {
    color: #1b1b18;
    font-weight: 600;
}



.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    color: #111;
    font-size: 20px;
    text-decoration: none;
}

.site-footer {
    padding: 0;
}

.section-head,
.section-header {
    flex-wrap: wrap;
    gap: 10px;
}

.section-head h2,
.section-header h2 {
    line-height: 1.2;
    font-size: 30px;
    font-family: DM Sans;
    font-weight: bold;
    color: 000000;
}

.cards-grid,
.bikes-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card,
.bike-card,
.news-card,
.review-card,
.workshop-card {
    height: 100%;
}

.card-meta,
.bike-card .card-meta {
    flex-wrap: wrap;
}

.news-section .container,
.review-section .container {
    max-width: 1200px;
}

.featured-news h3 {
    word-break: break-word;
}

@media (max-width: 991px) {
    .header-inner {
        padding: 10px 0;
    }

    .brand {
        width: auto;
        max-width: 100%;
    }

    .site-logo {
        width: 174px !important;
        max-width: 72vw !important;
        height: auto !important;
        object-fit: contain;
    }

    .site-header .navbar-collapse {
        width: 100%;
        padding: 14px 0 6px;
    }

    .main-nav {
        justify-content: flex-start;
        gap: 2px;
    }

    .main-nav .nav-link {
        padding-left: 0;
        padding-right: 0;
    }

    .social-links {
        margin-top: 12px;
    }

    .search-row {
        margin: 14px 0;
    }

    .news-title {
        font-size: 28px;
    }

    .featured-news img {
        height: 320px;
    }

    .featured-news h3 {
        font-size: 24px;
    }

    .news-item img {
        width: 140px;
        height: 90px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .page-main {
        padding-top: 0;
        padding-bottom: 0;
    }

    .header-inner {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        min-height: auto;
        padding: 0;
    }

    .brand {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 0 !important;
        padding: 0;
    }

    .site-logo {
        width: 174px !important;
        max-width: 72vw !important;
        height: auto !important;
        display: block;
        object-fit: contain;
    }

    .site-header .navbar-toggler {
        display: none;
    }

    .site-header .navbar-collapse {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
    }

    .main-nav {
        order: 2;
        width: 100%;
        flex: 0 0 auto;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap !important;
        margin: 2px 0 0 !important;
        overflow: visible;
    }

    .main-nav .nav-link {
        color: #000;
        font-size: 12px !important;
        font-weight: 800;
        line-height: 1;
        padding: 0 !important;
        white-space: nowrap;
    }

    .social-links {
        order: 1;
        justify-content: center !important;
        margin: -1px 0 0 !important;
        gap: 9px;
        flex-wrap: nowrap;
    }

    .social-links a {
        width: 20px;
        height: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        line-height: 1;
    }

    .social-links .fa-x-twitter {
        width: 20px;
        height: 20px;
        color: #fff;
        background: #000;
        border-radius: 3px;
        font-size: 13px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .social-links .fa-instagram {
        width: 20px;
        height: 20px;
        color: #fff;
        background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 48%, #6228d7 100%);
        border-radius: 5px;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .social-links .fa-youtube {
        font-size: 22px;
    }

    .section-head h2,
    .section-header h2 {
        font-size: 22px;
    }

    .explore-link,
    .section-header a {
        font-size: 13px;
    }

    .search-input {
        height: 44px;
        font-size: 13px;
        padding-left: 16px;
    }

    .search-btn {
        width: 34px;
        height: 34px;
    }

    @media (max-width: 360px) {
        .main-nav {
            gap: 6px;
        }

        .main-nav .nav-link {
            font-size: 11px;
        }
    }

    .cards-grid,
    .bikes-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .cards-grid::-webkit-scrollbar,
    .bikes-grid::-webkit-scrollbar,
    .brands-row::-webkit-scrollbar,
    .review-section .row::-webkit-scrollbar {
        display: none;
    }

    .cards-grid>.card,
    .bikes-grid>.bike-card {
        scroll-snap-align: start;
    }

    .section-cards .cards-grid {
        gap: 12px;
    }

    .section-cards .cards-grid>.card {
        flex: 0 0 32%;
        max-width: 40%;
        min-width: 112px;
        border: 1px solid #e9e9e9;
        border-radius: 8px;
        box-: none;
        overflow: hidden;
    }

    .section-cards .card img {
        height: 76px;
        object-fit: cover;
    }

    .section-cards .card-body {
        padding: 6px 5px 7px;
        text-align: center;
    }

    .section-cards .card-title {
        min-height: 16px;
        margin: 0 0 7px;
        font-size: 12px;
        line-height: 1.1;
        font-weight: 500;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .section-cards .card-meta {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 3px 6px;
        font-size: 8px;
        line-height: 1.1;
        color: #111;
    }

    .section-cards .card-meta span {
        background: transparent;
        border-radius: 0;
        padding: 0;
    }

    .section-cards .card-meta span:last-child {
        grid-column: 1 / -1;
        color: #0d6efd;
        font-size: 8px;
    }

    .bikes-grid>.bike-card {
        flex: 0 0 32%;
        max-width: 32%;
        min-width: 112px;
        border: 1px solid #e9e9e9;
        border-radius: 8px;
        box-: none;
        overflow: hidden;
    }

    .section-bikes .bikes-grid {
        gap: 16px;
    }

    .section-bikes .bike-card img {
        height: 80px;
        object-fit: cover;
    }

    .section-bikes .bike-card .card-body {
        padding: 6px 5px 7px;
        text-align: center;
    }

    .section-bikes .bike-card .card-title {
        min-height: 15px;
        margin: 0 0 7px;
        font-size: 10px;
        line-height: 1.1;
        font-weight: 500;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .section-bikes .bike-card .card-meta {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        align-items: center;
        gap: 3px 6px;
        color: #111;
        font-size: 8px;
        line-height: 1.1;
    }

    .section-bikes .bike-card .card-meta span {
        width: auto;
        background: transparent;
        border-radius: 0;
        padding: 0;
        font-size: 8px;
    }

    .section-bikes .bike-card .card-meta .details {
        grid-column: 1 / -1;
        margin-left: 0;
        color: #0d6efd;
        font-size: 8px;
        line-height: 1.1;
        text-decoration: none;
        white-space: nowrap;
    }

    .section-bikes .bike-card .card-meta .details i {
        font-size: 7px;
    }

    .brands-row {
        display: flex;
        gap: 25px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .brand-item {
        flex: 0 0 28%;
        max-width: 28%;
        text-align: center;
        scroll-snap-align: start;
    }

    .brand-card {
        height: 76px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border: 1px solid #e6e6e6;
        border-radius: 6px;
        box-: none;
    }

    .brand-name {
        margin-top: 7px;
        color: #000;
        font-size: 8px;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-card img {
        max-width: 86%;
        max-height: 58px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .card img,
    .bike-card img,
    .review-card img,
    .workshop-card img {
        height: 190px;
    }

    .card-title,
    .bike-card .card-title {
        font-size: 15px;
    }

    .bike-card .card-body {
        padding: 14px;
    }

    .bike-card .card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .bike-card .card-meta .details {
        margin-left: 0;
    }

    .bike-card .card-meta span {
        width: fit-content;
    }

    .featured-news img {
        height: 225px;
    }

    .featured-news h3 {
        font-size: 16px;
        line-height: 1.45;
        margin-top: 12px;
    }

    .news-list {
        margin-top: 16px;
        gap: 14px;
    }

    .news-item {
        gap: 10px;
        align-items: flex-start;
        padding-bottom: 14px;
    }

    .news-item img {
        width: 96px;
        height: 72px;
        flex: 0 0 96px;
        border-radius: 10px;
    }

    .news-info {
        flex: 1;
        min-width: 0;
    }

    .news-info h5 {
        font-size: 13px;
        line-height: 1.45;
    }

    .arrow-btn {
        width: 36px;
        height: 36px;
    }

    .review-section {
        padding: 44px 0;
    }

    .review-section .row.g-4 {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
        margin-right: -12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .review-section .row.g-4>[class*="col-"] {
        flex: 0 0 82%;
        max-width: 82%;
        scroll-snap-align: start;
    }

    .review-card h4,
    .workshop-card h5 {
        font-size: 15px;
        line-height: 1.45;
    }


}

@media (max-width: 420px) {
    .brands-row {
        display: flex;
    }

    .brand-card {
        height: 68px;
        width: 100%;
    }

    .brand-item {
        flex-basis: 36%;
        max-width: 36%;
    }

    .bike-card img {
        height: 170px;
    }

    .bike-card .card-body {
        padding: 12px;
    }

    .bike-card .card-meta {
        width: 100%;
    }

    .cards-grid>.card,
    .review-section .row.g-4>[class*="col-"] {
        flex-basis: 86%;
        max-width: 86%;
    }

    .section-bikes .bikes-grid>.bike-card {
        flex: 0 0 32%;
        max-width: 32%;
        min-width: 112px;
    }

    .section-bikes .bike-card img {
        height: 80px;
    }

    .section-bikes .bike-card .card-body {
        padding: 6px 5px 7px;
    }

    .news-item {
        flex-direction: row;
    }

    .news-item img {
        width: 110px;
        height: 80px;
        flex: 0 0 110px;
    }
}

@media (max-width: 576px) {
    .news-section.py-5 {
        padding-top: 10px !important;
        padding-bottom: 16px !important;
    }

    .news-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .news-section .mb-4 {
        margin-bottom: 12px !important;
    }

    .news-title {
        margin: 0;
        font-size: 14px;
        line-height: 1.2;
        font-weight: 800;
    }

    .news-buttons {
        display: none;
    }

    .featured-news img {
        height: 187px;
        border-radius: 0;
        object-fit: cover;
    }

    .featured-news h3 {
        margin: 8px 4px 14px;
        font-size: 13px;
        line-height: 1.35;
        font-weight: 800;
    }

    .news-list {
        margin-top: 0;
        gap: 20px;
    }

    .news-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 8px;
        padding: 0 4px;
        border-bottom: 0;
    }

    .news-item img {
        width: 106px;
        height: 80px;
        flex: 0 0 106px;
        border-radius: 0;
        object-fit: cover;
    }

    .news-info h5 {
        font-size: 12px;
        line-height: 1.65;
        font-weight: 800;
    }
}

@media (max-width: 576px) {
    .site-header.navbar {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .site-header .container.header-inner {
        max-width: 100% !important;
        padding-top: 4px !important;
        padding-bottom: 6px !important;
    }

    main.container.page-main {
        width: 100% !important;
        max-width: 100% !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .search-row {
        margin-top: 12px;
        margin-bottom: 14px;
    }

    .section-cards,
    .explore-brands,
    .section-bikes,
    .news-section,
    .review-section {
        margin-top: 0 !important;
    }

    .review-section.py-5 {
        padding-top: 16px !important;
        padding-bottom: 14px !important;
    }

    .review-section .section-header {
        margin-bottom: 16px;
    }

    .review-section .section-header.mt-5 {
        margin-top: 20px !important;
    }

    .review-section .row.g-4 {
        margin-bottom: 0;
    }

    .site-footer {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }
}



.breadcrumb {
    font-size: 14px;
    color: #555;
    padding: 15px 0;
}

.breadcrumb a {
    color: #555;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 8px;
    color: #999;
}

.breadcrumb strong {
    color: #111;
}

/* ===========================
    CAR DETAILS PAGE
=========================== */

.car-details-container {
    max-width: 1040px;
    margin: 40px auto;
    padding: 0 16px;
}

.car-details-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) 360px;
    gap: 28px;
}

.car-details-main {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 26px;
    align-items: start;
}

.car-image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    min-height: 320px;
    max-height: 360px;
    border: 1px solid #ececec;
}

.car-main-image {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: fill;
    padding: 12px;
}

.car-info-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.car-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.car-title {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.2;
}

.car-meta-text {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.car-price-text {
    font-size: 18px;
    /* color: #d32f2f; */
    font-weight: 700;
    margin: 0;
}

.car-description {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin: 0;
    max-width: 100%;
}

.price-section {
    display: none;
}

/* Specifications */
.specs-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.specs-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 22px;
    box-: 0 18px 30px rgba(15, 23, 42, 0.06);
}

.specs-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #f3f4f6;
}

.specs-grid {
    display: grid;
    gap: 10px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    text-transform: none;
    letter-spacing: 0;
}

.spec-value {
    font-size: 14px;
    color: #111;
    font-weight: 600;
    text-align: right;
}

.review-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.review-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 20px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.review-card p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

/* Sidebar */
.car-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-: 0 8px 25px rgba(17, 17, 17, 0.04);
}

.sidebar-ad-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.sidebar-title {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin: 0;
    padding: 18px 18px 14px;
    border-bottom: 1px solid #f0f0f0;
}

.news-items {
    display: flex;
    flex-direction: column;
    max-height: 520px;
    overflow-y: auto;
}

.news-item-card {
    display: flex;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: 0.2s ease;
}

.news-item-card:last-child {
    border-bottom: none;
}


.news-item-card img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.news-item-body {
    flex: 1;
    min-width: 0;
}

.news-item-body h5 {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #111;
    font-weight: 600;
}

.latest-cars-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px 18px 18px;
}

.latest-car-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.2s ease;
}



.latest-car-card img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.latest-car-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.latest-car-body h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.latest-car-body p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.latest-car-body a {
    color: #3366ff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    margin-top: auto;
}


/* Responsive */
@media (max-width: 1024px) {
    .car-details-wrapper {
        grid-template-columns: 1fr;
    }

    .car-details-main {
        grid-template-columns: 1fr;
    }

    .car-sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .car-details-container {
        margin: 24px auto;
    }

    .car-details-main {
        grid-template-columns: 1fr;
    }

    .car-title {
        font-size: 24px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .car-image-section {
        min-height: 300px;
    }

    .price-label {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .car-details-container {
        margin: 16px auto;
        padding: 0 12px;
    }

    .car-details-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .car-image-section {
        min-height: 240px;
    }

    .car-main-image {
        padding: 12px;
    }

    .car-title {
        font-size: 18px;
    }

    .car-description {
        font-size: 13px;
    }

    .price-section {
        padding: 16px;
    }

    .price-label {
        font-size: 18px;
    }

    .price-note {
        font-size: 11px;
    }

    .specs-title {
        font-size: 14px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .spec-label {
        font-size: 11px;
    }

    .spec-value {
        font-size: 13px;
    }

    .sidebar-title {
        font-size: 14px;
    }

    .news-item-card {
        gap: 10px;
        padding: 10px;
    }

    .news-item-card img {
        width: 70px;
        height: 50px;
    }

    .news-item-body h5 {
        font-size: 11px;
    }

    .latest-car-card {
        gap: 10px;
        padding: 10px;
    }

    .latest-car-card img {
        width: 70px;
        height: 50px;
    }

    .latest-car-body h5 {
        font-size: 12px;
    }

    .latest-car-body p {
        font-size: 11px;
    }

    .latest-car-body a {
        font-size: 11px;
    }
}

/* =========================
   PAGE
========================= */

body {
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    color: #222;
}

.page-wrap {
    max-width: 1280px;
    margin: 20px auto;
    padding: 0 12px;
}

.breadcrumb-nav {
    margin-bottom: 18px;
}

.breadcrumb {
    background: none;
    padding: 0;
    font-size: 14px;
}

.breadcrumb-item a {
    color: #000;
    text-decoration: none;
}

.breadcrumb-item.active {
    font-weight: 600;
    color: #111;
}


/* =========================
   HERO
========================= */

/* .car-image-box {
    background: #f4f4f4;
    border-radius: 6px;
    overflow: hidden;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.car-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* .car-summary h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 10px;
} */

.car-summary p {
    color: #555;
    line-height: 2;
    font-size: 15px;
}





.price-note span {
    color: #666;
    margin-left: 5px;
}




/* =========================
   SPEC GRID
========================= */

.spec-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.spec-card {
    background: #fff;
}

.spec-card h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.spec-list {
    border: 1px solid #dadada;
    border-radius: 18px;
    padding: 25px;
}

.spec-list div {
    display: grid;
    grid-template-columns: 150px 1fr;
    padding: 14px 0;
    border-bottom: 1px solid #ececec;
    align-items: center;
}

.spec-list div:last-child {
    border-bottom: none;
}

/* Remove spec borders only on the two-wheeler detail page */
.twowheeler-page .spec-list,
.twowheeler-page .spec-list div {
    border: none !important;
}

.twowheeler-page .spec-list div {
    padding: 10px 0;
}

/* Left-align two-wheeler page content on mobile */
@media (max-width: 576px) {

    .twowheeler-page .spec-card h3,
    .twowheeler-page .car-summary,
    .twowheeler-page .car-summary h1,
    .twowheeler-page .car-summary p,
    .twowheeler-page .car-summary h2,
    .twowheeler-page .price-note,
    .twowheeler-page .bike-item,
    .twowheeler-page .review-section,
    .twowheeler-page .review-section h2,
    .twowheeler-page .review-summary,
    .twowheeler-page .user-review {
        text-align: left;
    }

    .twowheeler-page .spec-list div {
        grid-template-columns: 1fr;
        gap: 6px;
        text-align: left;
    }

    .twowheeler-page .bike-item {
        text-align: left;
    }

    .twowheeler-page .car-summary .price-note {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px;
    }
}

.sidebar-stack {
    position: sticky;
    top: 20px;
}

.ad-box {
    margin-bottom: 25px;
}

.ad-box img {
    width: 100%;
    border-radius: 6px;
}


/* =========================
   WIDGET
========================= */

.sidebar-widget {

    margin-bottom: 22px;
    background: #fff;
}

.sidebar-widget h3 {
    font-size: 26px;
    color: #d20000;
    font-weight: 700;
    padding: 16px 18px;
    margin: 0;
}


/* =========================
   NEWS
========================= */

.news-list {
    padding: 0 16px 18px;
}

.news-item {
    display: flex;
    gap: 14px;
    text-decoration: none;
    color: #222;
    margin-bottom: 18px;
}

.news-item img {
    width: 92px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.news-item span {
    font-size: 14px;
    line-height: 1.6;
}


/* =========================
   LATEST CARS
========================= */

.latest-list {
    padding: 0 16px 18px;
}

.latest-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: #222;
    margin-bottom: 18px;
}

.latest-item img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.latest-item span {
    display: flex;
    flex-direction: column;
}

.latest-item strong {
    font-size: 15px;
    margin-bottom: 4px;
}

.latest-item small {
    color: #555;
    font-size: 13px;
    margin-bottom: 6px;
}

.latest-item em {
    color: #0066ff;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
}

.faq-section {
    margin-top: 40px;
}

.faq-section h2 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #111;
}

.faq-card {
    background: #fff;
    border: 1px solid #dadada;
    border-radius: 18px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #ececec;
    padding: 10px 15px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 700;
    font-size: 16px;
    color: #111;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
}

.photo-section {
    margin-top: 40px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.section-heading h2 {
    font-size: 26px;
    margin: 0;
    color: #111;
}

.view-all {
    color: #0066ff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.photo-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
}


.review-section h2 {
    font-size: 26px;
    margin-bottom: 14px;
    color: #111;
}

.review-summary {

    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

.user-reviews {
    display: grid;
    gap: 5px;
}

.user-review {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    background: #fff;

    border-radius: 18px;
    padding: 10px;
    align-items: start;
}

.review-avatar {
    width: auto;
    height: auto;
    background: transparent;
    color: #111;
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-weight: 700;
    font-size: 14px;
    border-radius: 0;
    padding: 0;
    line-height: 1.2;
}

.user-review strong {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #111;
}

.user-review p {
    margin: 0;
    color: #555;
    line-height: 1.8;
    font-size: 14px;
}

@media (max-width: 991px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-stack {
        position: static;
    }

    .car-summary h1 {
        font-size: 34px;
    }

    .car-summary h2 {
        font-size: 30px;
    }

    .photo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {

    .spec-list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .car-image-box {
        height: 240px;
    }

    .car-summary h1 {
        font-size: 28px;
    }

    .car-summary p {
        line-height: 1.8;
    }

    .sidebar-widget h3 {
        font-size: 22px;
    }

}




/* ==========================================
   FAQ + GALLERY ENHANCEMENT
   (Add below your existing CSS)
========================================== */

.faq-gallery-section {

    background: #fff;
}

.faq-gallery-section .container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

/* Heading */

.faq-area h2,
.gallery-area h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 24px;
}

/* FAQ */

.faq-box {
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-: 0 8px 20px rgba(0, 0, 0, .05);
}

.faq-item {
    border-bottom: 1px solid #ededed;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    border: none;
    background: #fff;

    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 11px;
    font-weight: 200;
    color: #111;
    transition: .3s;
}



.faq-question span {
    width: 30px;
    height: 30px;


    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    transition: .3s;
    flex-shrink: 0;
}


.faq-answer {

    font-size: 11px;
    color: #666;
    line-height: 1.8;
}

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.photo-card {
    position: relative;
    overflow: hidden;

    cursor: pointer;
}

.photo-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
    transition: .4s;
}


.photo-card span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .85));
    color: #fff;
    padding: 14px 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.view-btn {
    display: block;
    margin-top: 22px;
    text-align: center;
    background: #111;
    color: #fff;
    text-decoration: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}


/* Responsive */

@media(max-width:992px) {

    .faq-gallery-section .container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hide desktop-only sidebar and photo content on smaller screens */
    .faq-gallery-section .gallery-area,
    .sidebar-widget,
    .ad-box {
        display: none !important;
    }

}

@media(max-width:768px) {

    .faq-area h2,
    .gallery-area h2 {
        font-size: 23px;
    }

    .faq-question {
        padding: 18px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 18px 18px;
        font-size: 14px;
    }

    .photo-card img {
        height: 160px;
    }

}

@media(max-width:576px) {

    .faq-gallery-section {
        padding: 35px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .photo-card img {
        height: 220px;
    }

    .faq-area h2,
    .gallery-area h2 {
        font-size: 23px;
    }

    .view-btn {
        font-size: 14px;
        padding: 12px;
    }

}





.review-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;

}

.user-review {
    display: flex;
    align-items: flex-start;
    gap: 18px;

}

.review-avatar {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: #111;
    font-weight: 700;
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    padding: 0;
    line-height: 1.2;
}

.review-content {
    flex: 1;
}

.review-content strong {
    display: block;
    font-size: 15px;
    color: #111;
    margin-bottom: 4px;
}

.review-date {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 14px;
}

.review-content p {
    margin: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.8;
}

/* Mobile */

@media(max-width:768px) {

    .user-review {
        gap: 14px;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .review-content p {
        font-size: 15px;
    }

}

/* ==========================
   Footer
========================== */

.site-footer {
    background: #f2f2f2;
    border-top: 1px solid #ddd;
    padding: 12px 0;
    text-align: center;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-links {
    margin-bottom: 4px;
}

.footer-links a {
    color: #222;
    text-decoration: none;
    font-size: 12px;
    margin: 0 10px;
    transition: color .3s;
}



.footer-copy {
    font-size: 12px;
    color: #666;
}




.brand-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
}

.brand-search {
    position: relative;
    margin-bottom: 25px;
}

.brand-search input {
    width: 100%;
    height: 46px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0 45px 0 18px;
    outline: none;
}

.brand-search i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.brand-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.brand-car {
    display: flex;
    border: 1px solid #e5e5e5;
    margin-bottom: 22px;
    background: #fff;
}

.brand-car-image {
    width: 230px;
    flex-shrink: 0;
}

.brand-car-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.brand-car-content {
    flex: 1;
    padding: 16px;
}

.brand-car-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.price {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

.brand-car-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.car-bottom {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.specs {
    display: flex;
    gap: 25px;
}

.specs span {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    color: #555;
}

.specs i {
    margin-bottom: 6px;
}

.details-btn {
    border: 1px solid #bbb;
    padding: 9px 18px;
    border-radius: 5px;
    color: #111;
    text-decoration: none;
    font-size: 13px;
}


.sidebar-ad {
    width: 100%;
    margin-bottom: 25px;
}

.sidebar-box {
    margin-bottom: 30px;
}

.sidebar-box h3 {
    color: #d40000;
    font-size: 28px;
    margin-bottom: 18px;
}

.side-post {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.side-post img {
    width: 95px;
    height: 70px;
    object-fit: cover;
}

.side-post p {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.side-post strong {
    display: block;
    font-size: 14px;
}

.side-post small {
    display: block;
    margin: 4px 0;
    color: #777;
}

.side-post a {
    color: #2468ff;
    text-decoration: none;
    font-size: 13px;
}

@media(max-width:992px) {

    .brand-layout {
        grid-template-columns: 1fr;
    }

    .brand-sidebar {
        display: none;
    }

    .brand-car {
        flex-direction: column;
    }

    .brand-car-image {
        width: 100%;
    }

    .brand-car-image img {
        height: 220px;
    }

    .car-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

/* ===============================
   PHOTO PAGE
=================================*/

.photos-page {
    padding: 30px 0 50px;
}

.photos-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 35px;
    align-items: start;
}

/* ===============================
      TABS
=================================*/

.photo-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
}

.photo-tabs a {
    display: inline-block;
    padding: 9px 18px;
    text-decoration: none;
    background: #f2f2f2;
    color: #222;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.photo-tabs a.active {
    background: #240404;
    color: #fff;
}


/* ===============================
      GALLERY
=================================*/

.photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}

.photo-card {
    text-align: center;
}

.photo-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: .35s;
}



.photo-card h4 {
    margin-top: 14px;
    font-size: 28px;
    font-weight: 700;
    color: #222;
}

.photo-card p {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

/* ===============================
      SIDEBAR
=================================*/

.sidebar {
    width: 100%;
}

/* Advertisement */

.sidebar-ad {
    margin-bottom: 28px;
}

.sidebar-ad img {
    width: 100%;
    display: block;
}

/* ===============================
      AUTO NEWS
=================================*/

.sidebar-title {
    color: #e00000;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.news-item {
    display: flex;
    gap: 5px;
    text-decoration: none;
}

.news-item img {
    width: 105px;
    height: 72px;
    object-fit: cover;
    flex-shrink: 0;
}

.news-item span {
    font-size: 13px;
    color: #333;
    line-height: 1.6;
}


/* ===============================
      LATEST CARS
=================================*/

.latest-title {
    color: #e00000;
    font-size: 32px;
    font-weight: 700;
    margin: 35px 0 18px;
}

.latest-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.latest-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
}

.latest-item img {
    width: 95px;
    height: 72px;
    object-fit: cover;
}

.latest-content {
    display: flex;
    flex-direction: column;
}

.latest-content h5 {
    margin: 0;
    font-size: 15px;
    color: #222;
    font-weight: 700;
}

.latest-content small {
    color: #666;
    margin: 6px 0;
    font-size: 12px;
}

.latest-content span {
    color: #276dff;
    font-size: 13px;
    font-weight: 600;
}







/* ===============================
      RESPONSIVE
=================================*/

@media(max-width:991px) {

    .photos-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        margin-top: 40px;
    }

}

@media(max-width:768px) {

    .photos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .photo-card img {
        height: 220px;
    }

    .sidebar-title,
    .latest-title {
        font-size: 26px;
    }

}

@media(max-width:576px) {

    .photo-tabs {
        gap: 8px;
    }

    .photo-tabs a {
        font-size: 14px;
        padding: 8px 14px;
    }

    .photo-card img {
        height: 200px;
    }

    .news-item img,
    .latest-item img {
        width: 90px;
        height: 65px;
    }

    .sidebar-title,
    .latest-title {
        font-size: 22px;
    }

}


/* Mobile Gallery */
@media (max-width:576px) {

    .photos-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 14px;
    }

    .photo-card {
        text-align: center;
    }

    .photo-card img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: 0;
        display: block;
    }

    .photo-card h4 {
        margin-top: 8px;
        font-size: 11px;
        font-weight: 700;
        line-height: 1.4;
        color: #222;
    }

    .photo-tabs {
        margin-bottom: 18px;
        gap: 10px;
    }

    .photo-tabs a {
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 600;
    }

    /* Hide sidebar on mobile */
    .sidebar {
        display: none;
    }
}

/* Section */

.car-photo-section {
    max-width: 100%;
}

/* Title */

.photo-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #111;
}

/* Card */

.photo-view-card {
    width: 100%;

}

/* Image */

.photo-image {
    position: relative;
    overflow: hidden;
    background: #f3f3f3;
}

.photo-image img {
    width: 100%;
    display: block;
}

/* 1/4 Badge */

.photo-count {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #111;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 10px;
    z-index: 2;
}

/* Description */

.photo-info {
    border: 1px solid #d8d8d8;
    padding: 10px;
    background: #fff;
    margin: 10px 0px 60px 0;
}

.photo-info p {
    margin: 0;
    color: #333;
    font-size: 17px;
    line-height: 1.8;
}

.bike-category {
    margin-bottom: 40px;
}

.category-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

.bike-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.bike-item {
    text-align: center;
}

.bike-image {
    background: #f3f3f3;
    border: 1px solid #e5e5e5;
    padding: 12px;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: .3s;
}



.bike-image img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.bike-item h4 {
    margin-top: 12px;
    font-size: 17px;
    font-weight: 600;
    color: #111;
}

/* Tablet */

@media(max-width:992px) {

    .bike-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */

@media(max-width:576px) {

    .bike-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .bike-image {
        height: 90px;
        padding: 10px;
    }

    .bike-image img {
        max-height: 65px;
    }

    .bike-item h4 {
        font-size: 14px;
        margin-top: 8px;
    }

}

/* ===========================
   Bike Section
=========================== */

.bike-category {
    margin: 30px 0;
}

.category-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.bike-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.bike-item {
    text-align: center;
}

.bike-image {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    padding: 10px;
}

.bike-image img {
    width: 100%;
    height: 90px;
    object-fit: contain;
    display: block;
}

.bike-item h4 {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 600;
}

/* ===========================
   Mobile Slider
=========================== */

@media (max-width:768px) {

    .bike-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 10px;

        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .bike-grid::-webkit-scrollbar {
        display: none;
    }

    .bike-item {
        flex: 0 0 150px;
        min-width: 150px;
        scroll-snap-align: start;
    }

    .bike-image {
        padding: 8px;
    }

    .bike-image img {
        height: 80px;
    }

    .bike-item h4 {
        font-size: 14px;
    }

}

.photos-content {
    overflow: hidden;
}

/* ===========================
   Bikes Brands Page - Scoped Responsive Fixes
   Ensures left-aligned content and stacked layout on small screens
=========================== */

.bikes-page .photos-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 35px;
    align-items: start;
}

.bikes-page {
    margin-top: 10px;
}

.bikes-page .bikes-article {
    min-width: 0;
}

.bikes-page .news-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.25;
}

.bikes-page .news-meta p {
    color: #555;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 24px;
    word-break: break-word;
}

.bikes-page .news-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 20px;
}

.bikes-page .news-banner {
    margin: 22px 0 26px;
}

.bikes-page .news-banner img {
    width: 100%;
    height: auto;
    max-height: 520px;
    border-radius: 18px;
    display: block;
    object-fit: cover;
}

.bikes-page .bike-category {
    margin-top: 40px;
}

.bikes-page .category-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.bikes-page .bike-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.bikes-page .bike-item {
    text-align: left;
    min-height: 220px;
}

.bikes-page .bike-image {
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    min-height: 100px;
}

.bikes-page .bike-image img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    display: block;
}

.bikes-page .bike-item p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #222;
}

.bikes-page .brand-sidebar {
    width: 100%;
}

.bikes-page .sidebar-ad,
.bikes-page .sidebar-box img {
    max-width: 100%;
    height: auto;
    display: block;
}

.bikes-page .side-post {
    align-items: flex-start;
}

.bikes-page .side-post img {
    border-radius: 12px;
}

.bikes-page .related-news-card {
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .bikes-page .photos-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .bikes-page .brand-sidebar {
        margin-top: 36px;
    }

    .bikes-page .news-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .bikes-page {
        margin-top: 0;
        padding: 0 0 20px;
    }

    .bikes-page .photos-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .bikes-page .brand-sidebar {
        display: none;
    }

    .bikes-page .news-content {
        width: 100%;
    }

    .bikes-page .news-title {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .bikes-page .news-meta p,
    .bikes-page .news-content p {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 16px;
    }

    .bikes-page .news-banner {
        margin: 18px 0 22px;
    }

    .bikes-page .news-banner img {
        border-radius: 14px;
        max-height: 360px;
    }

    .bikes-page .bike-category {
        margin-top: 28px;
    }

    .bikes-page .category-title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .bikes-page .bike-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .bikes-page .bike-grid::-webkit-scrollbar {
        display: none;
    }

    .bikes-page .bike-item {
        flex: 0 0 82%;
        min-width: 240px;
        max-width: 280px;
        scroll-snap-align: start;
        text-align: left;
        min-height: auto;
    }

    .bikes-page .bike-image {
        min-height: 170px;
        padding: 0;
        border-radius: 16px;
    }

    .bikes-page .bike-item p {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .bikes-page {
        padding-bottom: 16px;
    }

    .bikes-page .photos-layout {
        gap: 14px;
    }

    .bikes-page .news-title {
        font-size: 21px;
        line-height: 1.35;
    }

    .bikes-page .news-meta p {
        font-size: 13px;
        line-height: 1.65;
    }

    .bikes-page .news-content p {
        font-size: 13px;
        line-height: 1.75;
    }

    .bikes-page .news-banner img {
        border-radius: 12px;
        max-height: 240px;
    }

    .bikes-page .category-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .bikes-page .bike-item {
        flex-basis: 84%;
        min-width: 220px;
        max-width: 240px;
    }

    .bikes-page .bike-image {
        min-height: 150px;
    }

    .bikes-page .bike-image img {
        height: 150px;
        object-fit: cover;
    }

    .bikes-page .bike-item p {
        font-size: 13px;
        line-height: 1.45;
    }
}

@media (max-width: 420px) {
    .bikes-page .bike-item {
        flex-basis: 88%;
        min-width: 210px;
    }

    .bikes-page .bike-image {
        min-height: 138px;
    }

    .bikes-page .bike-image img {
        height: 138px;
    }
}

/* ============================
   BRAND PAGE (Cars & Bikes Listing)
============================ */

.brand-page {
    margin-top: 10px;
    padding-bottom: 40px;
}

.brand-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

.brand-left {
    min-width: 0;
}

.brand-search {
    position: relative;
    max-width: 400px;
    margin-bottom: 28px;
}

.brand-search input {
    width: 100%;
    height: 44px;
    padding: 0 40px 0 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    color: #333;
    background: #fff;
}

.brand-search input::placeholder {
    color: #999;
}

.brand-search input:focus {
    border-color: #0d6efd;
}

.brand-search i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
}

.brand-heading {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin: 32px 0 20px;
    padding-bottom: 10px;

}

.brand-heading:first-of-type {
    margin-top: 0;
    font-size: 30px;
    font-family: DM Sans;
    font-weight: bold;
    color: 000000;
}

.brand-car {
    width: 100%;
    height: 206px;
    border-width: 1px;


}

.brand-car-image {
    width: 309px;
    height: 206px;
    angle: 0 deg;
    opacity: 1;
    top: 1100px;
    left: 50px;
}

.brand-car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-car-content {
    flex: 1;
    padding: 18px 18px 18px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.brand-car-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.3;
}

.brand-car-content .price {
    font-size: 18px;
    font-weight: 700;

    margin: 0;
}

.brand-car-content p {
    font-size: 14px;
    color: #666;
    line-height: 25px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 300px;
    font-style: light;
    letter-spacing: 0%;
}

.car-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 12px;

    flex-wrap: wrap;
}



.icon-fuel {
    width: 16.92px;
    height: 18px;
}

.icon-gearshift {
    width: 18px;
    height: 18px;
}


.specs span i {
    font-size: 12px;
    color: #888;
}

.details-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: #fff;

    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
    white-space: nowrap;
}

/* =========================================================
       CAR LIST PAGE
    ========================================================= */

.car-card-box {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: #fff;
    border: 1px solid #E7E7E7;
    margin-bottom: 28px;
    overflow: hidden;
}

.car-card-image {
    width: 320px;
    min-width: 320px;
}

.car-card-image img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.car-card-body {
    flex: 1;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
}

.car-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px;
    line-height: 1.3;
}

.car-card-price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.car-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.car-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.car-card-specs {
    display: flex;
    gap: 32px;
}

.car-spec-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.car-spec-box svg {
    width: 22px;
    height: 22px;
    color: #222;
    margin-bottom: 8px;
}

.car-spec-box span {
    font-size: 13px;
    color: #444;
    line-height: 1.3;
}

.car-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 132px;
    height: 40px;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.car-card-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}



/* =========================================================
       992px
    ========================================================= */

@media (max-width:992px) {

    .brand-layout {
        display: block;
    }

    .brand-sidebar {
        display: none !important;
    }

    .brand-left {
        width: 100%;
    }

    .car-card-box {
        display: block;
    }

    .car-card-image {
        width: 100%;
        min-width: 100%;
    }

    .car-card-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .car-card-body {
        padding: 18px;
    }

    .car-card-title {
        font-size: 28px;
    }

    .car-card-price {
        font-size: 24px;
    }

    .car-card-desc {
        font-size: 15px;
    }

}

/* =========================================================
       768px
    ========================================================= */

@media (max-width:768px) {

    .search-wrap {
        padding: 0 15px;
    }

    .car-card-body {
        padding: 16px;
    }

    .car-card-title {
        font-size: 22px;
    }

    .car-card-price {
        font-size: 20px;
    }

    .car-card-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .car-card-specs {
        gap: 22px;
    }

    .car-spec-box svg {
        width: 20px;
        height: 20px;
    }

    .car-card-btn {
        width: 120px;
        height: 38px;
        font-size: 13px;
    }

    .car-card-btn:hover {
        background: #000;
        color: #fff;
        border-color: #000;
    }

}

/* =========================================================
       567px
    ========================================================= */

@media (max-width:567px) {

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .brand-sidebar {
        display: none !important;
    }

    .section-head h2 {
        font-size: 22px;
    }

    .car-card-box {
        margin-bottom: 20px;
    }

    .car-card-image img {
        aspect-ratio: 16/10;
    }

    .car-card-body {
        padding: 12px;
    }

    .car-card-title {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .car-card-price {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .car-card-desc {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .car-card-footer {
        align-items: flex-end;
    }

    .car-card-specs {
        gap: 16px;
    }

    .car-spec-box svg {
        width: 16px;
        height: 16px;
        margin-bottom: 5px;
    }

    .car-spec-box span {
        font-size: 11px;
    }

    .car-card-btn {
        width: 92px;
        height: 30px;
        border-radius: 8px;
        font-size: 11px;
    }

    .car-card-btn:hover {
        background: #000;
        color: #fff;
        border-color: #000;
    }

}

Vehicle Bottom Section==========================*/ .vehicle-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 18px;

}

.vehicle-meta-group {
    display: flex;
    align-items: flex-start;
    gap: 42px;
}

.vehicle-meta-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vehicle-meta-icon {
    margin-bottom: 8px;
    color: #1b1b1b;
}

.vehicle-meta-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.vehicle-meta-text {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    line-height: 1.3;
}

.vehicle-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 135px;
    height: 40px;
    padding: 0 22px;
    background: #fff;
    border: 1px solid #d7d7d7;
    border-radius: 12px;
    color: #111;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
}


@media (max-width:992px) {

    .vehicle-meta-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .vehicle-meta-group {
        gap: 26px;
    }

    .vehicle-detail-btn {
        min-width: 120px;
        height: 38px;
        font-size: 14px;
    }

}

@media (max-width:576px) {

    .vehicle-meta-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    .vehicle-meta-group {
        gap: 18px;
    }

    .vehicle-meta-icon svg {
        width: 18px;
        height: 18px;
    }

    .vehicle-meta-text {
        font-size: 12px;
    }

    .vehicle-detail-btn {
        min-width: 110px;
        height: 36px;
        padding: 0 16px;
        font-size: 13px;
    }

}

/*=============================
                                                  Car Card Design
                                            ==============================*/

.car-card-box {
    width: 100%;
    margin-bottom: 30px;
    border: 1px solid #E9E9E9;
    background: #fff;
}

.car-card-image {
    width: 100%;
}

.car-card-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.car-card-body {
    padding: 18px;
}

.car-card-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.car-card-price {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.car-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.car-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.car-card-specs {
    display: flex;
    gap: 34px;
}

.car-spec-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.car-spec-box svg {
    width: 22px;
    height: 22px;
    margin-bottom: 8px;
}

.car-spec-box span {
    font-size: 14px;
    color: #444;
}



@media(max-width:992px) {

    .brand-sidebar {
        display: none;
    }

    .brand-layout {
        display: block;
    }

    .car-card-title {
        font-size: 28px;
    }

    .car-card-price {
        font-size: 24px;
    }

    .car-card-desc {
        font-size: 15px;
    }

}

@media(max-width:768px) {

    .car-card-body {
        padding: 16px;
    }

    .car-card-title {
        font-size: 24px;
    }

    .car-card-price {
        font-size: 22px;
    }

    .car-card-desc {
        font-size: 14px;
    }

    .car-card-footer {
        align-items: center;
    }

    .car-card-specs {
        gap: 25px;
    }

    .car-card-btn {
        min-width: 125px;
        height: 40px;
    }

    .car-card-btn:hover {
        background: #000;
        color: #fff;
        border-color: #000;
    }

}

@media(max-width:567px) {

    .brand-sidebar {
        display: none !important;
    }

    .car-card-body {
        padding: 12px;
    }

    .car-card-title {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .car-card-price {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .car-card-desc {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .car-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .car-card-specs {
        gap: 16px;
    }

    .car-spec-box svg {
        width: 16px;
        height: 16px;
    }

    .car-spec-box span {
        font-size: 11px;
    }

    .car-card-btn {
        min-width: 92px;
        height: 30px;
        font-size: 11px;
        border-radius: 8px;
    }

}

.brand-car {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid #E6E6E6;
    margin-bottom: 28px;
    overflow: hidden;
}

.brand-car-image {
    width: 320px;
    flex-shrink: 0;
}

.brand-car-image img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
    display: block;
}

.brand-car-content {
    flex: 1;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
}

.brand-car-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.brand-car-content .price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.brand-car-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.brand-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 90px;
}



.sidebar-ad {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.sidebar-box {
    background: #fff;


    overflow: hidden;
    box: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.sidebar-box h3 {
    margin: 0;
    padding: 16px 18px 12px;

    font-family: DM Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 25px;
    color: #D3050F;

    line-height: 40px;

}

.sidebar-box img {
    max-width: 100%;
    height: auto;
    display: block;
}

.side-post {
    display: flex;
    gap: 14px;
    padding: 14px 18px;

    align-items: flex-start;
    transition: 0.2s ease;
}

.side-post:last-child {
    border-bottom: none;
}


.side-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;

    flex-shrink: 0;
}

.side-post p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    font-weight: 500;
}

.side-post div {
    flex: 1;
    min-width: 0;
}

.side-post strong {
    display: block;
    font-size: 14px;
    color: #111;
    margin-bottom: 4px;
}

.side-post small {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
}

.side-post a {
    color: #0d6efd;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}


@media (max-width: 1024px) {
    .brand-layout {
        grid-template-columns: 1fr 300px;
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .brand-layout {
        grid-template-columns: 1fr;
    }

    .brand-sidebar {
        position: static;
        order: 2;
    }

    .brand-car-image {
        width: 100%;
        height: 428px;

    }
}

@media (max-width: 768px) {
    .brand-heading {
        font-size: 22px;
        margin-top: 24px;
        margin-bottom: 16px;
    }

    .brand-car {
        flex-direction: column;
        gap: 0;
    }

    .brand-car-image {
        width: 100%;
        height: 428px;
    }
}




.brand-car-content {
    padding: 16px;
}

.brand-car-content h3 {
    font-size: 18px;
}

.brand-car-content .price {
    font-size: 16px;
}

.brand-car-content p {
    font-size: 13px;
}

.car-bottom {
    flex-direction: column;
    align-items: flex-start;
}

.specs {
    gap: 8px;
}

.specs span {
    font-size: 12px;
    padding: 5px 10px;
}

.details-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 13px;
}


@media (max-width: 576px) {
    .brand-car-image {
        width: 100%;
        height: 428px;



    }

    .brand-search {
        max-width: 100%;
        margin-bottom: 18px;
    }

    .brand-heading {
        font-size: 18px;
        margin: 18px 0 12px;
        padding-bottom: 8px;
    }

    .brand-car {

        margin-bottom: 14px;
    }



    .brand-car-content {
        padding: 12px;
        gap: 6px;
    }

    .brand-car-content h3 {
        font-size: 16px;
    }

    .brand-car-content .price {
        font-size: 14px;
    }

    .brand-car-content p {
        font-size: 12px;
        line-height: 1.5;
    }

    .car-bottom {
        padding-top: 8px;
        gap: 10px;
    }

    .specs {
        gap: 6px;
    }

    .specs span {
        font-size: 11px;
        padding: 4px 8px;
    }

    .specs span i {
        font-size: 10px;
    }

    .details-btn {
        font-size: 12px;
        padding: 8px 14px;
    }

    .sidebar-box h3 {
        font-size: 15px;
        padding: 12px 14px;
    }

    .side-post {
        padding: 10px 14px;
        gap: 10px;
    }

    .side-post img {
        width: 64px;
        height: 48px;
    }

    .side-post p {
        font-size: 12px;
    }

    .side-post strong {
        font-size: 13px;
    }

    .side-post small {
        font-size: 11px;
    }
}

/* Hide sidebar on mobile for bikesbrands page */
@media (max-width: 768px) {
    .bikesbrands-page .brand-sidebar {
        display: none;
    }
}

/* Override: hide sidebar on mobile/tablet for bikesbrands page */
@media (max-width: 900px) {
    .bikesbrands-page .brand-sidebar {
        display: none !important;
    }
}


/* Frontend button theme for all pages except the homepage override */
.btn:not(.btn-close):not(.btn-link):not(.nav-link),
.explore-link,
.section-header a,

.view-btn,
.view-all-btn,
.btn-watch-now,
.btn-load-more,
.arrow-btn,
.search-btn {
    background: #d3cccc !important;
    color: #030303 !important;


}

.search-btn svg path,
.search-btn svg circle {
    stroke: #fff !important;
}

/* =========================
   GLOBAL RESPONSIVE SYSTEM
========================= */

img,
video,
iframe,
svg {
    max-width: 100%;
}

img {
    height: auto;
}

.container {
    width: min(100%, 1200px);
    padding-left: 16px;
    padding-right: 16px;
}

.page-wrap {
    width: 100%;
}

.table-responsive-wrapper,
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive table {
    min-width: 640px;
}


*,
*::before,
*::after {
    box-: none !important;
    text-: none !important;
}

* {
    transition: none !important;
    animation: none !important;
}


*:focus,
*:active {
    box-: none !important;
    text-: none !important;
    transform: none !important;
    filter: none !important;
}

@media (max-width: 1199.98px) {
    .spec-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 991.98px) {
    .car-summary h1 {
        font-size: 34px;
    }

    .car-summary h2 {
        font-size: 30px;
    }

    .car-image-box,
    .car-main-image,
    .car-slider,
    .car-slider-image,
    .bike-slider,
    .bike-slider-image {
        min-height: 260px;
    }

    .sidebar-stack {
        position: static;
        top: auto;
    }

    .sidebar-widget h3 {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .search-row {
        flex-direction: column;
        align-items: stretch;
    }


    .car-hero .row.g-4,
    .review-section .row.g-4 {
        row-gap: 18px;
    }

    .car-image-box,
    .car-main-image,
    .car-slider,
    .car-slider-image,
    .bike-slider,
    .bike-slider-image {
        min-height: 220px;
    }

    .car-slider-btn,
    .bike-slider-btn {
        width: 38px;
        height: 38px;
    }

    .car-slider-thumbs,
    .bike-slider-thumbs {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    }

    .spec-list {
        padding: 18px;
    }

    .spec-list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .news-item,
    .latest-item {
        align-items: flex-start;
    }

    .news-item img,
    .latest-item img {
        width: 78px;
        height: 60px;
        flex: 0 0 auto;
    }
}

@media (max-width: 575.98px) {
    .car-summary h1 {
        font-size: 28px;
    }

    .car-summary h2 {
        font-size: 24px;
    }

    .price-note {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .sidebar-widget h3 {
        font-size: 20px;
        padding: 14px 16px;
    }

    .news-list,
    .latest-list {
        padding-left: 12px;
        padding-right: 12px;
    }

    .search-suggestions-dropdown {
        max-height: 320px;
    }
}


@media (max-width: 992px) {
    .category-sidebar {
        display: none !important;
    }
}

/* ==========================
   768px
   ========================== */
@media (max-width: 768px) {
    .category-sidebar {
        display: none !important;
    }
}

/* ==========================
   567px
   ========================== */
@media (max-width: 567px) {
    .category-sidebar {
        display: none !important;
    }
}