.mainAreaCarsInfo {
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 32px;
}

.inMainAreaCarsInfo {
    max-width: 1242px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.breadInfoCars {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}



.descCarText p {
    margin: 0 0 10px;
}

.descCarText p:last-child {
    margin-bottom: 0;
}

/* Состояние "схлопнуто" */
.descCar:not(.is-open) .descCarText {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    /* сколько строк показывать */
    overflow: hidden;
}

/* Состояние "развернуто" */
.descCar.is-open .descCarText {
    display: block;
    overflow: visible;
}

.itemBread {
    border-radius: 4px;
    background: #E6E6E6;
    display: flex;
    padding: 6px 8px 8px 8px;
    justify-content: center;
    align-items: center;
    gap: 1px;
    box-sizing: border-box;
}

.itemBread:hover {
    background: #b9b9b9;
}

.nameCategory {
    color: #282828;
}

.stickyBlock {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.textBread {
    color: #282828;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.galleryImages {
    position: relative;
    width: 100%;
    margin-bottom: 32px;
}

.imagesCards {
    width: 100%;
    overflow: hidden;
    border-radius: 32px;
    overflow: hidden;

}

.imagesWrapper {
    display: flex;
    gap: 2px;
    height: 310px;
    width: max-content;

}

.imageCard {
    height: 100%;
    overflow: hidden;
    width: 413px;
}

.imageCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.leftBtnGal {
    position: absolute;
    left: -16px;
    top: 50%;
    cursor: pointer;
    z-index: 2;
    border-radius: 32px;
    background: #FFF;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
    display: flex;
    width: 40px;
    height: 40px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    box-sizing: border-box;
}

.rightBtnGal {
    position: absolute;
    right: -16px;
    top: 50%;
    cursor: pointer;
    z-index: 2;
    border-radius: 32px;
    background: #FFF;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
    display: flex;
    width: 40px;
    height: 40px;
    padding: 10px;
    justify-content: center;
    box-sizing: border-box;
    align-items: center;
    aspect-ratio: 1/1;
}

.blockInfoCar {
    display: grid;
    justify-content: space-between;
    grid-template-columns: 0.8fr 0.23fr;
    gap: 32px;
}

.leftPartInfoCar {
    display: flex;
    flex-direction: column;
    gap: 56px;

    width: 100%;
    overflow: hidden;
}

.mainInfoBlockText {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.titleCar {
    color: #282828;
    font-family: "Montserrat Alternates";
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
}

.descCar {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    overflow: hidden;
}

.showAllText {
    cursor: pointer;
    color: #E35418;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    display: flex;
    gap: 5px;
    align-items: center;
    margin-top: 12px;
}

.descCarMore {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

/* открыто */
.descCar.is-open .descCarMore {
    max-height: 5000px;
}

/* кнопка */
.showAllText {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-top: 12px;
}

.descCar.is-open .showAllText svg {
    transform: rotate(180deg);
}

.showAllText svg {
    transition: transform .25s ease;
}

.descCarEllipsis {
    display: inline;
}

.descCar.is-open .descCarEllipsis {
    display: none;
}

.techParamsCar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.titleTechParams {
    color: #282828;
    font-family: "Montserrat Alternates";
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 24px;
}

.blockTechParamsBase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    justify-content: space-between;
}

.itemTechParam {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nameParam {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.valueParam {
    color: #282828;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.columnBlock {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blockItemsMoreParams {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.itemMoreParams {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.titleMoreParams {
    color: #282828;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;

}

.blockInfoMoreParamCar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.itemMoreParamText {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;

}

.nameParamMore {
    color: #515151;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    display: flex;

    line-height: 20px;
}

.valueParamMore {
    color: #282828;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    display: flex;

    word-break: keep-all;
}

.textExporterBlock {
    font-family: "Montserrat Alternates";
    color: #282828;
}

.itemCardExporter {
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
}

.nameExporter,
.locationsExporter,
.descExporterInfo,
.counterDaysDel,
.btnMoreExporter,
.titleNewsCard,
.mainYTP {
    color: #282828;
}

.locationsExporter span svg path {
    fill: #282828;
}

.descDelieverText,
.itemVote,
.counterViewer,
.dateNews {
    color: #636363;
}

.itemRating {
    color: #dc4f15;
}

.itemRating svg path {
    fill: #dc4f15;
}

.itemNews,
.itemFaqApi {
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
}

.itemsNews {
    overflow: inherit;

}

.itemFaqApi {
    border: none;
}

.rightPartInfoCar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rightPartInfoCarMobile {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.blockPriceCar {
    box-sizing: border-box;
    display: flex;
    padding: 12px 16px;
    align-items: start;
    align-self: stretch;

    flex-direction: column;
    gap: 8px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.12);
}

.titlePriceCar {
    color: #282828;
    font-family: "Montserrat Alternates";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.priceNumberCar {
    color: #282828;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.simpleDesc {
    color: #636363;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.btnMoreCatalog {
    display: flex;
    padding: 12px 12px 12px 12px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    margin-top: 10px;
    border-radius: 8px;
    background: linear-gradient(90deg, #EA6129 0%, #D3450A 100%);
    color: #FFF7FC;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    justify-content: center;
}

.btnMoreCatalog:hover {
    background: linear-gradient(90deg, #f07342 0%, #f58150 100%);

}

@media screen and (max-width: 1280px) {
    .imagesWrapper {
        height: clamp(260px, 5vw, 310px);
    }

    .leftBtnGal {
        left: 12px;
    }

    .rightBtnGal {
        right: 12px;
    }

    .mainAreaCarsInfo {
        padding: 0 16px;
        box-sizing: border-box;
    }

    .blockInfoCar {
        grid-template-columns: 0.75fr 0.26fr;
        gap: 24px
    }
}

@media screen and (max-width: 980px) {
    .rightPartInfoCar {
        display: none;
    }

    .rightPartInfoCarMobile {
        display: flex;
    }

    .blockInfoCar {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .titleCar {
        font-size: clamp(32px, 5vw, 36px);
        line-height: normal;
    }

    .textBread {
        font-size: clamp(13px, 2vw, 16px);
    }

    .imagesWrapper {
        height: clamp(150px, 20vw, 260px);
    }

    .breadInfoCars {
        display: flex;
        gap: 10px;
        margin-bottom: 12px;
        flex-direction: column;
    }
}

@media screen and (max-width: 750px) {
    .blockItemsMoreParams {
        grid-template-columns: repeat(2, 1fr);
    }

    .titleCar,
    .titleTechParams {
        font-size: clamp(20px, 3.2vw, 40px)
    }
}

@media screen and (max-width: 680px) {
    .blockTechParamsBase {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .itemTechParam {
        gap: 4px;
    }

    .itemMoreParamText {
        gap: 8px;
    }

    .valueParam {
        font-size: 16px;
        line-height: normal;
    }

    .nameParamMore {
        color: #515151;
        font-family: Montserrat;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        display: flex;
        line-height: normal;
    }

    .valueParamMore {
        color: #282828;
        font-family: Montserrat;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        display: flex;
        word-break: keep-all;
    }
}

@media screen and (max-width: 520px) {
    .blockTechParamsBase {
        grid-template-columns: repeat(2, 1fr);
    }

    .blockItemsMoreParams {
        grid-template-columns: repeat(1, 1fr);
    }
}