/*  стиль для отображения склада и данных в карточке товара в одну строку  */  
.product-card__code-stocks-inner {
float: none;
width: 100%;
}
/*  стиль отображения блока сроков доставки в карточке товаров  */ 
.delivery-text-block_product_catr {
    background-color: #f1f1f1;
    padding: 10px;
    display: inline-block;
    border-radius: 4px;
  }
  .red-text {
    color: #252525;
    font-weight: bold;
  }
 
/* Стили  {$wa->block("category_seo_filter")} */
.seofilter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    font-size: 14px;
    line-height: 1.4;
}

.seofilter-group-title {
    background-color: #f0f0f0;
    border: 1px solid #dcdcdc;
    padding: 4px 6px;
    border-radius: 4px;
    font-weight: bold;
    margin: 2px;
    white-space: nowrap;
}

.seofilter-value {
    background-color: #f0f0f0;
    border: 1px solid #dcdcdc;
    padding: 4px 6px;
    border-radius: 4px;
    margin: 2px;
    white-space: nowrap;
    transition: all 0.4s ease;
}

.seofilter-value:hover {
    background-color: #e8e8e8;
    border-color: #1c1c1c;
    transform: translateY(-1px);
}

.seofilter-value a {
    text-decoration: none;
    color: #333;
    transition: color 0.4s ease;
}

.seofilter-value:hover a {
    color: #1c1c1c;
}