.page-catalog .item_modifs {

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-catalog div.item_modifs h2 {
    color: #000;
    font-size: 18px;
    font-weight: bold;
    text-shadow: none;
    margin-bottom: 0px !important;
    clear: both;
}

.page-catalog .modif-item {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.page-catalog .modif-container {
    display: flex;
    align-items: center;
    width: auto;
}

.page-catalog .modif-image {
    /* width: 100px; */
    height: 70px;
    object-fit: cover;
    margin-right: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    border: 4px solid transparent;
}

.page-catalog .modif-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    /* Добавлен плавный переход для текста */
}

/* Эффекты при наведении */
.page-catalog .modif-item:hover .modif-image {
    border: 4px solid #268cbf;
    opacity: 0.8;
}

.page-catalog .modif-item:hover .modif-info {
    opacity: 0.7;
    /* Тусклость для названия и цены при наведении */
}

.page-catalog .modif-name {
    display: block;
    margin-bottom: 5px;
    color: #268cbf;
    font-size: 16px;
    font-weight: bold;
}

.page-catalog .modif-price {
    display: block;
    font-size: 16px;
    font-weight: bold;
}

.activeModif {
    background-color: yellow;
    padding: 10px !important; 
}

.modifLine{
    padding: 0;
    margin: 0;
    width:100%;
}