.stores-mainpage {
    padding: 60px 0;
    overflow: hidden;
}

.stores-mainpage__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stores-mainpage__show-all {
    font-size: 14px;
    line-height: 20px;
    color: #222;
    text-decoration: none;
    white-space: nowrap;
}

.stores-mainpage__show-all:hover {
    text-decoration: underline;
}

.stores-mainpage-slider {
    width: 100%;
}

.stores-mainpage-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    text-decoration: none !important;
    color: inherit;
    background: #F8F8FC;
    border-radius: 12px;
    padding-right: 28px;
    box-sizing: border-box;
    transition: box-shadow 0.2s;
    min-height: 112px;
}

.stores-mainpage-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .10);
    color: inherit;
}

.stores-mainpage-card--no-link {
    cursor: default;
}

.stores-mainpage-card__image {
    flex-shrink: 0;
    width: 192px;
    height: 112px;
    overflow: hidden;
    border-radius: 8px;
    background: #F3F4F6;
}

.stores-mainpage-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stores-mainpage-card__no-image {
    width: 100%;
    height: 100%;
    background: #E5E7EB;
}

.stores-mainpage-card__info {
    flex: 1;
    color: #111827;
    line-height: 28px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.stores-mainpage-pagination {
    margin-top: 16px;
    height: 2px;
    background: #E5E7EB;
    border-radius: 2px;
    overflow: hidden;
}

.stores-mainpage-pagination .swiper-pagination-progressbar-fill {
    background: var(--color-theme, #222);
    border-radius: 2px;
}

.stores-mainpage-slider-wrapper {
    padding-bottom: 24px;
}

@media (max-width: 767px) {

    .stores-mainpage-card {
        min-height: 64px;
        gap: 16px;
        padding-right: 16px;
    }

    .stores-mainpage-card__image {
        width: 110px;
        height: 64px;
    }

    .stores-mainpage-card__info {
        font-size: 13px;
        line-height: 20px;
    }

    .stores-mainpage .stores-mainpage-slider {
        overflow: unset;
    }

    .stores-mainpage-slider-wrapper {
        padding-bottom: 0;
    }
}