/* Обёртка блока "Другие товары" */
/* Контейнер внутри блока */
.other-products {
    width: 100%;
    margin: 0 auto;
}


/* Список карточек */
.other-products-list {
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 70px 70px;
    padding: 0px 15px;
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

/* Карточка товара */
.other-product-card {

    overflow: hidden;
    width: 375px !important;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.other-product-card a{
    text-decoration: none;
}

.other-product-card img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    aspect-ratio: 25 / 34;
}
.other-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


/* Название товара */
.other-product-card .name {
    align-items: start;
    box-sizing: border-box;
    color: #176377;
    font-family: 'Tahoma';
    font-size: 15px;
    font-weight: bold;
    height: 35px;
    justify-content: flex-start;
    line-height: 17px;
    min-height: 35px;
    padding-right: 80px;
    text-transform: uppercase;
    width: 100%;
}

.other-product-card .article {
    margin-bottom: 3px;
    text-align: right;
    width: 100%;
    color: #717171;
    font-family: 'Tahoma';
    font-size: 14px;
    display: inline-block;
    transform: scaleX(0.9);
    transform-origin: right;
}

/* Цены */
.other-product-card .price {
    color: #0e576c;
    font-family: 'Tahoma';
    font-size: 23px;
        margin-top: 15px;
}

.other-product-card .price .newprice {
    font-weight: bold;
    color: #e60023;
}

.other-product-card .price .oldprice {
    font-size: 14px;
    text-decoration: line-through;
    color: #999;
}
@media(max-width:500px){
.other-product-card {
    max-width: 300px ;
    width: 100% !important;

}
}


