.popular-products-section {
    background-color: #f7f7f7;
}

.popular-products-block {
    width: 100%;
    padding: 30px 0 30px;
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.italic-title {
    text-align: center;
    border: none;
    margin: 0 auto 30px;
    padding: 0 0 10px;
    color: #000;
    font-weight: normal;
    font-size: 50px;
    letter-spacing: 0.2px;
}
@media (max-width: 1200px) {
    .italic-title {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 10px;
    }
}

.popular-products__wrapper {
    width: 100%;
    margin-right: -20px;
}

.popular-products__list {
    width: 1230px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.popular-products__item {
    width: 23%;
    padding: 10px;
    background-color: #fff;
    margin-bottom: 30px;
    position: relative;
    box-sizing: border-box;
    margin-right: 2%;
    flex-grow: 1;
    max-width: 23%;
}

@media (max-width: 1200px) {
    .popular-products__wrapper {
        margin-right: 0;
    }

    .popular-products__list {
        width: 90%;
    }

    .popular-products__item {
        width: 45%;
        max-width: 45%;    
        margin-right: 10%;
    }
    .popular-products__item:nth-child(2n) {
        margin-right: 0;
    }
}
@media (max-width: 767px) {
    .popular-products__item {
        max-width: 100%;    
    }
}

.popular-products__item:hover .product-block__img--hovered {
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.popular-products__item:hover .product-block__img--hover {
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.popular-products__item:hover .product-options {
    right: 0;
    opacity: 1;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.popular-products__item:hover .sale-sticker {
    left: 10px;
    opacity: 1;
    -webkit-transition: all 0.4 ease-in-out;
    transition: all 0.4 ease-in-out;
}
@media (max-width: 1200px) {
    .popular-products__item {
        width: 48%;
        margin-right: 8%;
        margin-bottom: 8%;
    }
    .popular-products__item:nth-child(2n) {
        margin-right: 0;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    .popular-products__item {
        min-width: 48%;
        max-width: 48%;
        margin-right: 2%;
        margin-bottom: 2%;
    }
}
.btn__link {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    background-image: none;
    white-space: nowrap;
    padding: 8px 30px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    line-height: 22px;
    color: #fff;
    background-color: var(--main-color);
    min-width: 200px;
    margin: 0 auto;
    box-sizing: border-box;
}
.btn__link,
.btn__link:hover {
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
}
.btn__link:hover {
    background-color: #000;
}
@media (max-width: 767px) {
    .btn__link {
        margin-top: 30px;
    }
}

