.product-card {
    display: flex;
    flex-direction: column; /* картинка сверху, инфо снизу */
    gap: 10px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

.product-card:hover .price__main{
    color: var(--azure--azure50, #006BE2);
}

/* картинка */
.product-card__image {
    height: 170px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3; /* фиксируем пропорции картинки */
}
.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* промо-лейбл */
.promoted {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* блок с ценой */
.product-card__info {
    text-decoration: none;
    color: inherit;
}

.product-card__price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}
.price__main {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    color: var(--black--black10, #222324);
    transition: color 0.2s ease;
}
.price__sub {
    color: var(--black--black40, #666);
    font-size: 14px;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
}

/* нижняя информация */
.product-card__bottom-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
}

.product-card__facts {
    color: var(--black--black10, #222324);
    flex-wrap:wrap;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
}
.product-card__address{
    font-size:14px;
    color: var(--black--black40, #666);
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
}
.product-card__location-info svg {
    flex-shrink: 0;
}
