.home-desktop-container {
    max-width: 1280px;
}

.home-desktop-header-wrap {
    margin-bottom: 16px;
}

.home-desktop-header-top {
    background: linear-gradient(90deg, #6c4cf1 0%, #5537d3 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    padding: 14px 0;
}

.home-desktop-header {
    margin-top: -14px;
    background: #fff;
    border-radius: 20px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-desktop-header__logo {
    color: #6c4cf1;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.02em;
}

.home-desktop-header__search {
    display: flex;
    flex: 1;
}

.home-desktop-header__search-input {
    flex: 1;
    border: 2px solid #6c4cf1;
    border-right: 0;
    border-radius: 999px 0 0 999px;
    padding: 10px 14px;
    font-size: 14px;
}

.home-desktop-header__search-btn {
    border: 0;
    border-radius: 0 999px 999px 0;
    padding: 0 20px;
    background: #6c4cf1;
    color: #fff;
    font-weight: 600;
}

.home-desktop-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}

.home-desktop-header__actions a {
    color: #646b78;
    font-size: 14px;
    font-weight: 600;
}

.home-desktop {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-desktop-categories {
    background: #fff;
    border-radius: 20px;
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.home-desktop-category {
    background: #f5f6fa;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.home-desktop-category img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
}

.home-desktop-category span {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
}

.home-desktop-category small {
    color: #7d8190;
    font-size: 12px;
}

.home-desktop-tiles {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 12px;
}

.home-desktop-tile {
    border-radius: 20px;
    background: #fff;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 120px;
}

.home-desktop-tile img {
    width: 100%;
    max-height: 140px;
    object-fit: cover;
    border-radius: 14px;
}

.home-desktop-tile span {
    font-size: 16px;
    font-weight: 600;
}

.home-desktop-sections {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-desktop-section {
    background: #fff;
    border-radius: 20px;
    padding: 18px;
}

.home-desktop-section__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
}

.home-desktop-section__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.home-desktop-section__title span {
    color: #7d8190;
    font-size: 13px;
    vertical-align: top;
}

.home-desktop-section__link {
    color: #6c4cf1;
    font-size: 14px;
    font-weight: 600;
}

.home-desktop-section__content > :not(#categoryTeaserList):not(.stock-group-list) {
    display: none !important;
}

.home-desktop-section__content .category-menu,
.home-desktop-section__content .category-rating,
.home-desktop-section__content .category-title,
.home-desktop-section__content .category-filters,
.home-desktop-section__content .view-map,
.home-desktop-section__content .show-location-box,
.home-desktop-section__content .expanderBox,
.home-desktop-section__content .to-category-page-link,
.home-desktop-section__content .category-description,
.home-desktop-section__content .companies-ranking {
    display: none !important;
}

.home-desktop-section__content #teasersPageContainer,
.home-desktop-section__content #categoryTeaserList {
    margin: 0;
}

.home-desktop-section__content #teasersPageContent {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.home-desktop-section__content #teasersPageContent::-webkit-scrollbar {
    display: none;
}

.home-desktop-section__content #teasersPageContent .teasers-line {
    display: contents;
}

.home-desktop-section__content #teasersPageContent .stock-group-item {
    flex: 0 0 320px;
    width: 320px;
    margin: 0;
    scroll-snap-align: start;
}

.home-desktop-section__content #teasersPageContent .category-teaser-wrap {
    flex: 0 0 320px;
    max-width: 320px;
    margin: 0;
    scroll-snap-align: start;
}

@media (max-width: 1199px) {
    .home-desktop-header {
        flex-wrap: wrap;
    }

    .home-desktop-header__actions {
        width: 100%;
        justify-content: flex-end;
    }

    .home-desktop-categories {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-desktop-tiles {
        grid-template-columns: 1fr;
    }
}
