.vehicle-detail-heading {
    position: relative;
    overflow: hidden;
    padding: 40px 0 36px;
    color: #ffffff;
    background:
            radial-gradient(
                    circle at 82% 18%,
                    rgba(255, 255, 255, 0.055),
                    transparent 34%
            ),
            linear-gradient(
                    135deg,
                    #050505 0%,
                    #0b0b0b 52%,
                    #111111 100%
            );
}

.vehicle-detail-heading::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -220px;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
    pointer-events: none;
}

.vehicle-detail-heading .container {
    position: relative;
    z-index: 2;
}

.vehicle-detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.vehicle-detail-breadcrumb a {
    transition: color 0.3s ease;
}

.vehicle-detail-breadcrumb a:hover {
    color: #ffffff;
}

.vehicle-detail-breadcrumb svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.vehicle-detail-breadcrumb span {
    color: #ffffff;
}

.vehicle-detail-title-row {
    margin-top: 27px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
}

.vehicle-detail-title {
    min-width: 0;
}

.vehicle-detail-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.vehicle-detail-brand::before {
    content: "";
    width: 35px;
    height: 1px;
    background: rgba(255, 255, 255, 0.7);
}

.vehicle-detail-title h1 {
    margin-top: 13px;
    color: #ffffff;
    font-size: clamp(44px, 4.2vw, 66px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.vehicle-detail-title p {
    margin-top: 17px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.5;
}

.vehicle-detail-share button {
    min-height: 50px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.025);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition:
            color 0.3s ease,
            border-color 0.3s ease,
            background-color 0.3s ease;
}

.vehicle-detail-share button:hover {
    border-color: #ffffff;
    color: #111111;
    background: #ffffff;
}

.vehicle-detail-share svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
}

.vehicle-gallery-section {
    padding: 36px 0;
    color: #111111;
    background:
            linear-gradient(
                    180deg,
                    #f1f1f0 0%,
                    #fafafa 100%
            );
}

.vehicle-gallery {
    height: 570px;
    display: grid;
    grid-template-columns:
        minmax(0, 2.1fr)
        minmax(300px, 0.74fr);
    grid-template-rows: minmax(0, 1fr);
    gap: 12px;
}

.vehicle-gallery-main {
    position: relative;
    width: 100%;
    height: 570px;
    min-width: 0;
    min-height: 0;
    display: block;
    overflow: hidden;
    background: #111111;
}

.vehicle-gallery-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    180deg,
                    rgba(0, 0, 0, 0.02) 48%,
                    rgba(0, 0, 0, 0.42) 100%
            );
    pointer-events: none;
}

.vehicle-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.vehicle-gallery-main:hover img {
    transform: scale(1.025);
}

.vehicle-gallery-badge {
    position: absolute;
    top: 21px;
    left: 21px;
    z-index: 3;
    min-height: 36px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    color: #111111;
    background: rgba(255, 255, 255, 0.96);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vehicle-gallery-count {
    position: absolute;
    right: 21px;
    bottom: 21px;
    z-index: 3;
    min-height: 48px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #ffffff;
    background: rgba(5, 5, 5, 0.78);
    backdrop-filter: blur(12px);
    font-size: 12px;
    font-weight: 700;
    transition:
            color 0.3s ease,
            background-color 0.3s ease;
}

.vehicle-gallery-main:hover .vehicle-gallery-count {
    color: #111111;
    background: #ffffff;
}

.vehicle-gallery-count svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.vehicle-gallery-side {
    width: 100%;
    height: 570px;
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 12px;
    overflow: hidden;
}

.vehicle-gallery-side-item {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    display: block;
    overflow: hidden;
    background: #151515;
}

.vehicle-gallery-side-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.vehicle-gallery-side-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
            filter 0.5s ease,
            transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.vehicle-gallery-side-item:hover img {
    transform: scale(1.055);
}

.vehicle-gallery-more::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.56);
    transition: background-color 0.3s ease;
}

.vehicle-gallery-more:hover::after {
    background: rgba(0, 0, 0, 0.42);
}

.vehicle-gallery-more span {
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.vehicle-detail-content {
    padding: 60px 0 72px;
    color: #171717;
    background:
            linear-gradient(
                    180deg,
                    #ffffff 0%,
                    #fafafa 100%
            );
}

.vehicle-detail-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        390px;
    align-items: start;
    gap: 32px;
}

.vehicle-detail-left {
    min-width: 0;
}

.vehicle-information,
.vehicle-equipment,
.vehicle-description {
    padding: 34px;
    border: 1px solid #dfdfdf;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.035);
}

.vehicle-equipment,
.vehicle-description {
    margin-top: 24px;
}

.vehicle-section-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #707070;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.vehicle-section-heading > span::before {
    content: "";
    width: 31px;
    height: 1px;
    background: #171717;
}

.vehicle-section-heading h2 {
    margin-top: 10px;
    color: #171717;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.042em;
}

.vehicle-specification-grid {
    margin-top: 29px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #dfdfdf;
    border-left: 1px solid #dfdfdf;
}

.vehicle-specification {
    min-width: 0;
    min-height: 104px;
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 9px;
    border-right: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    background: #ffffff;
    transition:
            background-color 0.3s ease,
            transform 0.3s ease;
}

.vehicle-specification:hover {
    position: relative;
    z-index: 2;
    background: #f7f7f7;
}

.vehicle-specification span {
    color: #777777;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.vehicle-specification strong {
    overflow: hidden;
    color: #1d1d1d;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    text-overflow: ellipsis;
}

.vehicle-equipment-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}

.vehicle-equipment-item {
    position: relative;
    min-height: 57px;
    padding: 0 17px 0 49px;
    display: flex;
    align-items: center;
    border: 1px solid #dfdfdf;
    color: #3f3f3f;
    background: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    transition:
            border-color 0.3s ease,
            background-color 0.3s ease,
            transform 0.3s ease;
}

.vehicle-equipment-item:hover {
    border-color: #bfbfbf;
    background: #f8f8f8;
    transform: translateY(-1px);
}

.vehicle-equipment-item::before {
    content: "✓";
    position: absolute;
    left: 17px;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #151515;
    font-size: 11px;
    font-weight: 700;
}

.vehicle-description p {
    max-width: 920px;
    margin-top: 21px;
    color: #5f5f5f;
    font-size: 15px;
    line-height: 1.85;
}

.vehicle-description p + p {
    margin-top: 13px;
}

.vehicle-detail-sidebar {
    position: sticky;
    top: 148px;
}

.vehicle-price-card {
    position: relative;
    overflow: hidden;
    padding: 31px;
    border: 1px solid #d9d9d9;
    background: #ffffff;
    box-shadow: 0 22px 65px rgba(0, 0, 0, 0.08);
}

.vehicle-price-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: #111111;
}

.vehicle-price-label {
    display: block;
    color: #777777;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vehicle-detail-price {
    margin-top: 10px;
    display: block;
    color: #111111;
    font-size: 34px;
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: -0.045em;
}

.vehicle-code {
    margin-top: 24px;
    padding: 17px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
}

.vehicle-code span {
    color: #777777;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.vehicle-code strong {
    color: #222222;
    font-size: 14px;
    font-weight: 700;
}

.vehicle-action-button {
    position: relative;
    width: 100%;
    min-height: 72px;
    margin-top: 11px;
    padding: 11px 17px;
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    overflow: hidden;
    transition:
            box-shadow 0.3s ease,
            transform 0.3s ease;
}

.vehicle-action-button:hover {
    box-shadow: 0 13px 28px rgba(0, 0, 0, 0.13);
    transform: translateY(-2px);
}

.vehicle-action-button > svg {
    width: 23px;
    height: 23px;
    margin: auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
}

.vehicle-action-button > span:last-child {
    min-width: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.vehicle-action-button small {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
}

.vehicle-action-button strong {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.vehicle-call-button {
    margin-top: 23px;
    color: #ffffff;
    background:
            linear-gradient(
                    135deg,
                    #111111,
                    #242424
            );
}

.vehicle-call-button::before,
.vehicle-whatsapp-button::before {
    content: "";
    width: 45px;
    height: 45px;
    grid-column: 1;
    grid-row: 1;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.vehicle-call-button > svg,
.vehicle-whatsapp-button > svg {
    position: relative;
    z-index: 2;
    grid-column: 1;
    grid-row: 1;
}

.vehicle-call-button small {
    color: rgba(255, 255, 255, 0.62);
}

.vehicle-whatsapp-button {
    color: #ffffff;
    background:
            linear-gradient(
                    135deg,
                    #1eb95a,
                    #159548
            );
}

.vehicle-whatsapp-button small {
    color: rgba(255, 255, 255, 0.74);
}

.vehicle-whatsapp-button > svg {
    fill: currentColor;
    stroke: none;
}

.vehicle-sahibinden-button {
    color: #111111;
    background:
            linear-gradient(
                    135deg,
                    #ffea00,
                    #f6d900
            );
}

.vehicle-sahibinden-button small {
    color: rgba(0, 0, 0, 0.6);
}

.vehicle-sahibinden-icon {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.72);
    color: #111111;
    font-size: 18px;
    font-weight: 800;
}

.vehicle-representative-card,
.vehicle-location-card {
    margin-top: 18px;
    padding: 26px;
    border: 1px solid #dddddd;
    background: #ffffff;
}

.vehicle-representative-eyebrow,
.vehicle-location-card > span {
    color: #777777;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.vehicle-representative-profile {
    margin-top: 19px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.vehicle-representative-avatar {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background:
            linear-gradient(
                    135deg,
                    #0b0b0b,
                    #282828
            );
}

.vehicle-representative-avatar svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
}

.vehicle-representative-profile > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vehicle-representative-profile strong {
    color: #222222;
    font-size: 16px;
    font-weight: 650;
}

.vehicle-representative-profile span {
    color: #777777;
    font-size: 12px;
}

.vehicle-representative-card > a {
    min-height: 48px;
    margin-top: 19px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid #d8d8d8;
    color: #222222;
    background: #fafafa;
    font-size: 13px;
    font-weight: 700;
    transition:
            color 0.3s ease,
            border-color 0.3s ease,
            background-color 0.3s ease;
}

.vehicle-representative-card > a:hover {
    border-color: #111111;
    color: #ffffff;
    background: #111111;
}

.vehicle-representative-card > a svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.vehicle-location-card strong {
    margin-top: 12px;
    display: block;
    color: #222222;
    font-size: 17px;
    font-weight: 650;
}

.vehicle-location-card p {
    margin-top: 9px;
    color: #666666;
    font-size: 13px;
    line-height: 1.65;
}

.vehicle-location-card a {
    min-height: 46px;
    margin-top: 18px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d8d8d8;
    color: #222222;
    background: #fafafa;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition:
            color 0.3s ease,
            border-color 0.3s ease,
            background-color 0.3s ease;
}

.vehicle-location-card a:hover {
    border-color: #111111;
    color: #ffffff;
    background: #111111;
}

.vehicle-location-card svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.similar-vehicles {
    padding: 65px 0 75px;
    color: #171717;
    background:
            linear-gradient(
                    180deg,
                    #f4f4f3,
                    #fafafa
            );
}

.similar-vehicles-heading {
    margin-bottom: 27px;
    padding-bottom: 21px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid #d8d8d8;
}

.similar-vehicles-heading span {
    color: #707070;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.similar-vehicles-heading h2 {
    margin-top: 8px;
    color: #171717;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.similar-vehicles-heading > a {
    min-height: 47px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    border: 1px solid #d2d2d2;
    color: #171717;
    background: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition:
            color 0.3s ease,
            border-color 0.3s ease,
            background-color 0.3s ease;
}

.similar-vehicles-heading > a:hover {
    border-color: #111111;
    color: #ffffff;
    background: #111111;
}

.similar-vehicles-heading svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
}

.similar-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.similar-vehicle-card {
    overflow: hidden;
    border: 1px solid #dcdcdc;
    background: #ffffff;
    transition:
            border-color 0.3s ease,
            box-shadow 0.3s ease,
            transform 0.3s ease;
}

.similar-vehicle-card:hover {
    border-color: #bdbdbd;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.similar-vehicle-image {
    position: relative;
    height: 250px;
    display: block;
    overflow: hidden;
    background: #dddddd;
}

.similar-vehicle-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    180deg,
                    transparent 52%,
                    rgba(0, 0, 0, 0.35)
            );
    pointer-events: none;
}

.similar-vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.similar-vehicle-card:hover img {
    transform: scale(1.045);
}

.similar-vehicle-image > span {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    min-height: 44px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    background: #111111;
    font-size: 14px;
    font-weight: 700;
}

.similar-vehicle-content {
    padding: 22px;
}

.similar-vehicle-content small {
    color: #777777;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.similar-vehicle-content h3 {
    margin-top: 8px;
    color: #202020;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.025em;
}

.similar-vehicle-content > div {
    margin-top: 18px;
    padding-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px 16px;
    border-top: 1px solid #e3e3e3;
}

.similar-vehicle-content > div span {
    position: relative;
    color: #5d5d5d;
    font-size: 12px;
    font-weight: 600;
}

.similar-vehicle-content > div span + span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -9px;
    width: 3px;
    height: 3px;
    background: #999999;
    transform: translateY(-50%) rotate(45deg);
}

.vehicle-lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(7px);
    transition:
            visibility 0.3s ease,
            opacity 0.3s ease;
}

.vehicle-lightbox.open {
    visibility: visible;
    opacity: 1;
}

.vehicle-lightbox-content {
    width: min(1280px, calc(100% - 190px));
    height: min(820px, calc(100vh - 90px));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.vehicle-lightbox-content img {
    max-width: 100%;
    max-height: calc(100% - 42px);
    object-fit: contain;
}

.vehicle-lightbox-content span {
    margin-top: 17px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 600;
}

.vehicle-lightbox-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
    transition:
            color 0.3s ease,
            border-color 0.3s ease,
            background-color 0.3s ease;
}

.vehicle-lightbox-close:hover,
.vehicle-lightbox-arrow:hover {
    border-color: #ffffff;
    color: #111111;
    background: #ffffff;
}

.vehicle-lightbox-close svg,
.vehicle-lightbox-arrow svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.vehicle-lightbox-arrow {
    position: absolute;
    top: 50%;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-50%);
    transition:
            color 0.3s ease,
            border-color 0.3s ease,
            background-color 0.3s ease;
}

.vehicle-lightbox-prev {
    left: 28px;
}

.vehicle-lightbox-next {
    right: 28px;
}

@media (max-width: 1180px) {
    .vehicle-gallery {
        height: 520px;
        grid-template-columns:
            minmax(0, 1.75fr)
            minmax(280px, 0.72fr);
    }

    .vehicle-gallery-main,
    .vehicle-gallery-side {
        height: 520px;
    }

    .vehicle-detail-layout {
        grid-template-columns:
            minmax(0, 1fr)
            350px;
        gap: 25px;
    }

    .vehicle-information,
    .vehicle-equipment,
    .vehicle-description {
        padding: 28px;
    }
}

@media (max-width: 1024px) {
    .vehicle-gallery {
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .vehicle-gallery-main {
        height: 520px;
    }

    .vehicle-gallery-side {
        height: 180px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: minmax(0, 1fr);
    }

    .vehicle-detail-layout {
        grid-template-columns: 1fr;
    }

    .vehicle-detail-sidebar {
        position: static;
    }

    .vehicle-price-card {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 12px;
    }

    .vehicle-price-label,
    .vehicle-detail-price,
    .vehicle-code {
        grid-column: 1 / -1;
    }

    .vehicle-action-button {
        margin-top: 13px;
    }

    .vehicle-call-button {
        margin-top: 23px;
    }

    .vehicle-sahibinden-button {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .vehicle-detail-heading {
        padding: 30px 0 28px;
    }

    .vehicle-detail-breadcrumb {
        font-size: 10px;
    }

    .vehicle-detail-title-row {
        margin-top: 23px;
        align-items: flex-start;
        flex-direction: column;
        gap: 23px;
    }

    .vehicle-detail-title h1 {
        font-size: 43px;
    }

    .vehicle-detail-title p {
        font-size: 14px;
    }

    .vehicle-gallery-section {
        padding: 17px 0;
    }

    .vehicle-gallery {
        gap: 8px;
    }

    .vehicle-gallery-main {
        height: 390px;
    }

    .vehicle-gallery-side {
        height: 125px;
        gap: 8px;
    }

    .vehicle-gallery-badge {
        top: 13px;
        left: 13px;
        min-height: 32px;
        font-size: 10px;
    }

    .vehicle-gallery-count {
        right: 13px;
        bottom: 13px;
        min-height: 43px;
        font-size: 11px;
    }

    .vehicle-gallery-more span {
        padding: 12px;
        font-size: 10px;
    }

    .vehicle-detail-content {
        padding: 35px 0 50px;
    }

    .vehicle-information,
    .vehicle-equipment,
    .vehicle-description {
        padding: 23px;
    }

    .vehicle-section-heading h2 {
        font-size: 29px;
    }

    .vehicle-specification-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vehicle-specification {
        min-height: 95px;
        padding: 16px;
    }

    .vehicle-specification span {
        font-size: 10px;
    }

    .vehicle-specification strong {
        font-size: 15px;
    }

    .vehicle-equipment-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-equipment-item {
        font-size: 13px;
    }

    .vehicle-description p {
        font-size: 14px;
    }

    .vehicle-price-card {
        display: block;
        padding: 25px;
    }

    .vehicle-detail-price {
        font-size: 31px;
    }

    .vehicle-action-button {
        min-height: 69px;
    }

    .vehicle-call-button {
        margin-top: 22px;
    }

    .similar-vehicles {
        padding: 48px 0 55px;
    }

    .similar-vehicles-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .similar-vehicles-heading h2 {
        font-size: 33px;
    }

    .similar-vehicles-grid {
        grid-template-columns: 1fr;
    }

    .similar-vehicle-image {
        height: 290px;
    }

    .vehicle-lightbox-content {
        width: calc(100% - 24px);
        height: calc(100vh - 140px);
    }

    .vehicle-lightbox-arrow {
        top: auto;
        bottom: 20px;
        width: 49px;
        height: 49px;
        transform: none;
    }

    .vehicle-lightbox-prev {
        left: calc(50% - 58px);
    }

    .vehicle-lightbox-next {
        right: calc(50% - 58px);
    }
}

@media (max-width: 480px) {
    .vehicle-detail-heading {
        padding: 27px 0 25px;
    }

    .vehicle-detail-breadcrumb {
        gap: 7px;
        font-size: 9px;
    }

    .vehicle-detail-brand {
        font-size: 10px;
    }

    .vehicle-detail-title h1 {
        font-size: 38px;
    }

    .vehicle-detail-title p {
        font-size: 13px;
    }

    .vehicle-detail-share button {
        min-height: 46px;
    }

    .vehicle-gallery-main {
        height: 300px;
    }

    .vehicle-gallery-side {
        height: 92px;
    }

    .vehicle-gallery-more span {
        font-size: 8px;
    }

    .vehicle-information,
    .vehicle-equipment,
    .vehicle-description {
        padding: 19px;
    }

    .vehicle-section-heading > span {
        font-size: 10px;
    }

    .vehicle-section-heading h2 {
        font-size: 26px;
    }

    .vehicle-specification {
        min-height: 88px;
        padding: 13px;
    }

    .vehicle-specification span {
        font-size: 9px;
    }

    .vehicle-specification strong {
        font-size: 13px;
    }

    .vehicle-equipment-item {
        min-height: 54px;
        padding-right: 13px;
        padding-left: 45px;
        font-size: 12px;
    }

    .vehicle-description p {
        font-size: 13px;
    }

    .vehicle-detail-price {
        font-size: 28px;
    }

    .vehicle-action-button {
        grid-template-columns: 41px minmax(0, 1fr);
        padding-right: 13px;
        padding-left: 13px;
    }

    .vehicle-action-button::before,
    .vehicle-sahibinden-icon {
        width: 41px;
        height: 41px;
    }

    .vehicle-action-button small {
        font-size: 10px;
    }

    .vehicle-action-button strong {
        font-size: 12px;
    }

    .similar-vehicle-image {
        height: 230px;
    }

    .similar-vehicle-content h3 {
        font-size: 21px;
    }
}