.freshCatalogs {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.freshCatalogs__title {
    font-size: 28px;
    font-weight: 700;
}

.freshCatalogsForm {
    display: flex;
    width: 800px;
    margin: 24px auto;
}

.freshCatalogsForm__input {
    outline: none;
    border: 1px solid #e3e3e3;
    width: 700px;
    box-sizing: border-box;
    padding: 14px 22px;
    margin: 0 8px;
    font-size: 16px;
    transition: all ease-in-out 0.3s;
}

.freshCatalogsForm__input:hover,
.freshCatalogsForm__input:active,
.freshCatalogsForm__input:focus {
    border: 1px solid #cc3d3d;
}

.freshCatalogsForm__submit {
    font-size: 16px;
    color: #fff;
    background: #cc3d3d;
    padding: 0 32px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: opacity ease-in-out 0.3s;
}

.freshCatalogsForm__submit:hover {
    opacity: 0.7;
}

.freshCatalogs__favorites {
    list-style-type: none;
    display: flex;
    padding: 0;
}

.freshCatalogs__favoritesItem {
    margin: 0 16px;
}

.freshCatalogs__favoritesLink {
    text-decoration: none;
}

.freshCatalogs__favoritesImg {
    width: 40px;
    height: auto;
}

.freshCatalogs__list {
    list-style-type: none;
    column-count: 4;
    padding: 0;
    margin: 16px 0;
}

.freshCatalogs__item {
    margin: 4px 0;
}

.freshCatalogs__link {
    text-decoration: none;
    cursor: pointer;
    transition: color ease-in-out 0.3s;
}

.freshCatalogs__link:hover {
    color: #cc3d3d;
}

.freshCatalogs__special {
    display: flex;
    justify-content: space-between;
}

.freshCatalogs__specialItem {
    width: 30%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-sizing: border-box;
    cursor: pointer;
    min-height: 86px;
    padding: 12px 16px;
    transition: all ease-in-out 0.3s;
}

.freshCatalogs__specialTop {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 8px;
}

.freshCatalogs__specialTitle {
    font-weight: 700;
    transition: all ease-in-out 0.3s;
}

.freshCatalogs__specialText {
    font-size: 14px;
    line-height: 1.2;
}

.freshCatalogs__specialImg {
    width: 40px;
    height: auto;
}

.freshCatalogs__specialItem:hover {
    border: 1px solid #cc3d3d;
}

.freshCatalogs__specialItem:hover .freshCatalogs__specialTitle {
    color: #cc3d3d;
}

.freshCatalogs_notification {
    font-size: 12px;
}


@media screen and (max-width: 1100px) {
    .freshCatalogsForm {
        width: 100%;
    }

    .freshCatalogsForm__input {
        width: 100%;
        font-size: 14px;
    }

    .freshCatalogsForm__submit {
        padding: 0 16px;
    }

    .freshCatalogs__favorites {
        overflow: scroll;
    }
    .freshCatalogs__list {
        column-count: 2;
    }
}
