.page-title, .breadcrumb {
    display: none;
}

.search-page {
    padding-bottom: 120px;
}

.search-page .result-list .message-info {
    color: var(--dark-grey-color);
    font-size: 1.25em;
}

/*поиск*/
.search-page .search-input-line {
    margin-bottom: 50px;
}

.search-input-line__area__label {
    width: 100%;
}

.search-page .search-input-line--relative {
    position: relative;
    height: auto;
    transform: unset;
    opacity: 1;
    background-color: rgba(240, 241, 245, 0.8);
}

.search-page .search-input-line--relative .search-input-line__area {
    transform: unset;
    padding-left: 12px;
    padding-right: 12px;
}

@media screen and (max-width: 1023px) {
    .search-page .search-input-line--relative .search-input-line__area {
        padding-left: 0;
    }
}

.search-page__head {
    margin-bottom: 30px;
}

.search-page__head p {
    opacity: 0.5;
}

/*Табы*/
.tab-list__overflow {
    overflow-x: auto;
    padding-bottom: 10px;
}

.tab-list__switchers {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.tab-list__switcher {
    transition: .3s;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    padding-bottom: 3px;
    white-space: nowrap;
}

.tab-list__switcher.active, .tab-list__switcher:hover {
    color: var(--orange-color);
}

.tab-list__switcher.active {
    border-color: var(--orange-color);
}

.tab-list__content {
    position: relative;
    margin-top: 30px;
}

.tab-list__content__switch-item {
    position: absolute;
    top: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    height: 0;
    overflow: hidden;
}

.tab-list__content__switch-item.active {
    position: relative;
    opacity: 1;
    height: auto;
    overflow: unset;
}

.tab-list__switcher--pills {
    border: 1px solid;
    border-radius: 35px;
    padding: 12px 35px;
}

@media screen and (max-width: 768px) {
    .tab-list__switchers {
        gap: 16px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .tab-list__switchers::-webkit-scrollbar {
        height: 5px;
    }
    .tab-list__switchers::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }
    .tab-list__switchers::-webkit-scrollbar-thumb {
        background: #adaaaa;
        border-radius: 4px;
    }
}


/*Новости*/
.news-list__item {
    display: block;
    line-height: 1.5em;
}

.news-list__item + .news-list__item {
    margin-top: 40px;
}

.news-list__item-title {
    margin-bottom: 8px;
}

.news-list__item p + p {
    margin-top: 8px;
}

.news-list__item-link {
    transition: .3s;
}

.news-list__item:visited {
    color: #858585;
}

.news-list__item:hover .news-list__item-link {
    color: var(--orange-color);
}

/*товары*/
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

@media screen and (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    display: block;
    padding: 24px;
    background-color: #fff;
    border: 1px solid #DADDE7;
    transition: .3s;
}

.product-card:hover {
    border-color: var(--orange-color);
}

.product-card__img {
    position: relative;
    padding-bottom: 100%;
}

.product-card__img img {
    position: absolute;
    width: 100%;
    height: 100%;
}

.product-card__labels {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: flex;
    gap: 8px;
}

.product-card__label {
    font-weight: 400;
    font-size: 14px;
    background-color: #fff;
    color: var(--orange-color);
    padding: 6px 8px;
    border: 1px solid #DADDE7;
}

.product-card__content {
    margin-top: 24px;
}

.product-card__title {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
}

.product-card__link {
    margin-top: 24px;
}

.product-card__article {
    color: #858585;
    margin-bottom: 8px;
}

.product-card__brand {
    margin-bottom: 8px;
}

@media (max-width: 1023px) {
    .header{
        margin-bottom: 0 !important;
    }
}