.promotion-items #product-container,
.recomendation-items #product-container,
.bestseller-items #product-container,
.discounted-goods-items #product-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)) !important;
  gap: 20px;
  margin: 0 auto 20px auto; /* top: 0, sides: auto, bottom: 20px */
  max-width: 1350px;
  padding-left: 20px;
  padding-right: 20px;
}

  /* страница каталога */
  .offer-tittle {
  font-size: 2.2rem;
  font-weight: 900;
  color: #2a9d8f;
  text-align: center;
  margin: 1.5rem 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  user-select: none;
}

.offer-tittle::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background: #e63946;
  margin: 0.4rem auto 0;
  border-radius: 2px;
}

  /* виджет каталога */
  /* оформление слайдеров */
.slider-items {
    position: relative;
    width: 100vw;
    max-width: 1350px;
    margin: 2rem auto;
    padding: 0 1rem;
    box-sizing: border-box;
    overflow: hidden;
  }

  .slider-items .product-slider {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .slider-items .slider-block {
    display: none;
    flex-wrap: wrap;
    gap: 1rem;
    /*justify-content: flex-start;*/
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
  }

  .slider-items .slider-block.active {
    display: flex;
  }

  /* первая группа баннеров */

  .banners-container {
    display: flex;
    justify-content: space-between;
    max-width: 1320px;
    margin: 2rem auto;
    padding: 0 1rem;
    gap: 1rem;
    box-sizing: border-box;
  }

  .banner-box {
    flex: 1;
    height: 200px;
    border-radius: 1rem;
    background-size: cover;
    background-position: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  /* Hover эффект */
  .banner-box:hover {
    transform: scale(1.03);
  }

  /* Индивидуальные стили по ID */
  #banner-1 {
    background: linear-gradient(135deg, #2a9d8f, #21867a);
  }

  #banner-2 {
    background: linear-gradient(135deg, #e63946, #ba2d3d);
  }

  #banner-3 {
    background: linear-gradient(135deg, #457b9d, #1d3557);
  }

  /* Адаптивность */
  @media (max-width: 1024px) {
    .banner-box {
      font-size: 1.2rem;
      height: 160px;
    }
  }

  @media (max-width: 768px) {
    .banners-container {
      flex-direction: column;
    }

    .banner-box {
      height: 140px;
    }
  }
