.other-products .other-products-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.other-products .product-image {
    display: flex;
    justify-content: center;
}
.other-products .product {
    width: calc((100% - 60px) / 4);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.other-products .product-cat {
    font-size: 12px;
    text-transform: uppercase;
    line-height: 12px;
    font-weight: bold;
    color: #868686;
}
.other-products .product-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.other-products h2 {
    display: flex;
    flex-direction: column;
    font-size: 30px;
    font-weight: 500;
    color: #484949;
    text-align: center;
    margin-bottom: 30px;
}
.other-products h2::after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: #bfcbb7;
    margin: 20px auto;
}
.other-products .product-link {
    font-weight: 700;
    text-transform: uppercase;
    margin-top: auto;
    padding-top: 5px;
}
.other-products .hover-element {
    overflow: hidden;
    height: 24px;
}
.other-products .product-price {
    transition: all .2s ease-in-out;
    opacity: 1;
    transform: none;
    height: 24px;
    font-weight: 500;
    color: #000000;
    font-size: 16px;
    vertical-align: middle;
}
.other-products .product:hover .product-price {
    opacity: 0;
    transform: translateY(-10px);
}
.other-products .add-to-basket {
    transition: all .2s ease-in-out;
    opacity: 0;
    visibility: hidden;
    height: 24px;
    line-height: 24px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;

    display: flex;
    align-items: center;
    gap: 10px;
}
.other-products .product:hover .add-to-basket {
    opacity: 1;
    transform: translateY(-100%);
    visibility: visible;
}
.other-products .add-to-basket svg path {
    transition: all .2s ease-in-out;
}
.other-products .add-to-basket svg {
    height: 20px;
    width: 20px;
}
.other-products .product:hover .add-to-basket:hover {
    color: #bfcbb7;
}
.other-products .add-to-basket:hover svg path {
    fill: #bfcbb7;
}

@media screen and (max-width: 1200px) {
    .other-products .product {
        width: calc((100% - 40px) / 3);
    }
}
@media screen and (max-width: 991px) {
    .other-products .product {
        width: calc((100% - 20px) / 2);
    }
    .other-products .product-image img {
        object-fit: contain;
        width: 100%;
        aspect-ratio: 1;
        height: auto;
    }
}