/* ====== SECTION TITLE ALIGN LEFT ====== */
.featured-collection, .recommended-products {
  .section-header,
  .section-header__content,
  .section-header__text,
  .section-header__heading,
  .section-header__heading * {
    text-align:left !important;
  }
  .section-header {
    justify-content:flex-start !important;
  }
  .section-header__content {
    justify-items:start !important;
    align-items:flex-start !important;
  }
  .section-header__heading {
    margin-left:0 !important;
    margin-right:auto !important;
  }
  .featured-collection__products {
    column-gap:25px!important;
    row-gap:25px!important;
    .product-item {
      background:#fff;
      border:1px solid #00000014;
      border-radius:18px;
      padding:16px;
      display:flex;
      flex-direction:column;
      color:#111;
      transition: all ease-in-out .3s;
      .media, .product-item__media {
        background:#f2f2f2;
        border-radius:14px;
        overflow:hidden;
      }
      img {
        border-radius:14px;
        width:100%;
        display:block;
      }
    }
    .product-item__vendor {
      color:#9a9a9a
    }
    .product-item__title, .product-item__title a {
      color:#111;
      font-weight:500;
    }
    .price {
      font-weight:700
    }
    [class*="stock"] {
      color:var(--color-products-stock-good);
      font-weight:500;
      &[data-in-stock="false"] {
        color: var(--color-products-stock-bad);
      }
    }
    .product-item__actions, .product-item__button {
      margin-top:auto;
    }
    [class*="rating"], [class*="spr-"] {
      display:none!important
    }
    .product-item-holder, .product-item-holder > * {
      padding:0!important;
    }
  }
}

@media(hover:hover){
  .featured-collection, .recommended-products {
    .featured-collection__products .product-item:hover{
      transform:translateY(-10px) !important;
    }
  }
}

/* ====== MOBILE tweaks ====== */
@media(max-width:768px) {
  .featured-collection, .recommended-products {
    .featured-collection__products .product-item{
      padding:12px;
      margin:0 10px 0 0!important; /* відступ між комірками на мобільному */
    }
    .featured-collection__products .product-item .media,
    .featured-collection__products .product-item .product-item__media{
      padding:0!important;
    }
    .featured-collection__products .product-item img{
      height:180px;object-fit:contain
    }
    .featured-collection__products .product-item__vendor{font-size:12px}
    .featured-collection__products .product-item__title{
      display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;
      overflow:hidden;font-size:14px;line-height:1.25
    }
    .featured-collection__products .price{font-size:16px}
    .featured-collection__products [class*="stock"]{font-size:13px}
  }
}
