.product-list {
    margin: 36px 0;
}

.product-list .product-card {
    box-shadow: 0 16px 17px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: auto;
    margin: 20px auto;
    font-family: 'Inter', serif;
}

.product-list .hidden-card {
    display: none;
}

.product-list .product-card .product-card__image {
    min-height: 265px;
    overflow: auto;
}

.product-list .show_all_products {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    font-size: 24px;
    font-family: 'Inter', serif;
    color: #57B262;
    text-decoration: none;
    margin-top: 10px;
}

.product-list .show_all_products:hover {
    color: #57B262;
    text-decoration: underline;
}

.product-list .show_all_products > img {
    margin-right: 10px;
}

.product-list .product-card__name,
.product-list .product-card__short-description {
    padding: 5px 16px;
}

.product-list .product-card__name {
    font-size: 17px;
    font-weight: 700;
    color: #000000;
    font-family: 'Inter', serif;
    line-height: 1.1;
    height: 48px;
    overflow-x: auto;
}

.product-list .product-card__short-description {
    font-size: 14px;
    font-weight: 400;
    color: #6F6E77;
    font-family: 'Inter', serif;
    line-height: 1.1;
    height: 56px;
    overflow-x: auto;
}

.product-list .product-card__footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #57B262;
    color: #ffffff;
    padding: 15px 5px;
    margin-top: 10px;
}

.product-list .product-card__footer .product-card__footer-price {
    font-size: 25px;
    font-weight: 700;
    font-family: 'Inter', serif;
    line-height: 1.1;
}

.product-card .product-card__footer .product-card__footer-btn a {
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid #ffffff;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', serif;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .product-card__footer .product-card__footer-btn a:hover {
    background-color: #ffffff;
    color: #000000;
}

.product-card .product-card__footer .product-card__footer-btn a .i-cart {
    width: 21px;
    height: 19px;
    background-image: url("/images/shop/shopping_cart_round_1137.svg");
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
}

.product-card .product-card__footer .product-card__footer-btn a:hover .i-cart {
    background-image: url("/images/shop/shopping_cart_round_1138.svg");
}

@media (max-width: 576px) {
    .product-list {
        margin: 15px 0;
    }

    .product-list .product-card {
        box-shadow: 0 7px 8px rgba(0, 0, 0, .25);
        border-radius: 8px;
        overflow: auto;
        margin: 10px auto;
    }

    .product-list .product-card .product-card__image {
        min-height: 160px;
    }

    .product-list .product-card .product-card__name {
        font-size: 9px;
        height: 20px;
        padding: 0px 10px;
        margin-top: 5px;
    }

    .product-list .product-card__short-description {
        font-size: 8px;
        height: 18px;
        color: #6F6E77;
        padding: 0px 10px;
        margin-top: 5px;
    }

    .product-list .product-card__footer {
        padding: 10px 5px;
        margin-top: 5px;
    }

    .product-list .product-card__footer .product-card__footer-price {
        font-size: 12px;
    }

    .product-card .product-card__footer .product-card__footer-btn a {
        padding: 6px 8px;
        font-size: 10px;
        border: 1px solid #ffffff;
    }

    .product-card .product-card__footer .product-card__footer-btn a .i-cart {
        width: 14px;
        height: 13px;
    }

    .product-list .show_all_products {
        font-size: 12px;
    }

    .product-list .show_all_products > img {
        width: 12px;
    }
}