    .title {
      text-align: center;
      margin-bottom: 25px;
      font-size: 26px;
      font-weight: 600;
    }

    /* Обертка карусели */
    .carousel-wrapper {
      position: relative;
    }

    /* Лента карусели */
    .carousel-track {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 15px 5px 25px;
      scrollbar-width: none;
      -ms-overflow-style: none;
      -webkit-overflow-scrolling: touch;
      cursor: grab;
    }

    .carousel-track.dragging {
      cursor: grabbing;
      scroll-snap-type: none;
      user-select: none;
    }

    .carousel-track::-webkit-scrollbar {
      display: none;
    }

    /* Адаптивная ширина карточек */
    .carousel-item {
      flex: 0 0 100%;
      scroll-snap-align: start;
      scroll-snap-stop: normal; 
    }

    /* Планшеты (>= 576px): 2 карточки */
    @media (min-width: 576px) {
      .carousel-item {
        flex: 0 0 calc((100% - 20px) / 2);
      }
    }

    /* Ноутбуки (>= 992px): 3 карточки */
    @media (min-width: 992px) {
      .carousel-item {
        flex: 0 0 calc((100% - (20px * 2)) / 3);
      }
    }

    /* ПК/Мониторы (>= 1200px): 4 карточки */
    @media (min-width: 1200px) {
      .carousel-item {
        flex: 0 0 calc((100% - (20px * 3)) / 4);
      }
    }

    /* Карточка */
    .card {
      background: #fff;
      border: 1px solid #e1e4e8;
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
      border-color: #33CCCC;
    }

    /* Блок для картинки */
    .card-img-wrapper {
      width: 100%;
      height: 180px;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #fafafa;
      border-radius: 6px;
      overflow: hidden;
    }

    /* Картинка: масштабируется, сохраняет пропорции, не обрезается */
    .card-img-wrapper img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
      pointer-events: none;
      user-select: none;
      -webkit-user-drag: none;
    }

    /*.card h4 {
      font-size: 17px;
      margin-bottom: 8px;
    }*/

    .card .description {
      font-size: 13px;
      color: #6c757d;
      margin: 10px 0;
      flex-grow: 1;
    }

    .card .price {
      font-size: 18px;
      font-weight: bold;
      color: #333333; /*#e63946*/
      margin-bottom: 15px;
    }

    .card .btn {
      background-color: #33CCCC;	
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 10px 15px;
      font-size: 14px;
      cursor: pointer;
      font-weight: 500;
      transition: background-color 0.2s;
	  text-decoration: none;
    }

    .card .btn:hover {
      background-color: #00bcb5;
    }

    /* Стрелки */
    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid #ccc;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      font-size: 20px;
      color: #333;
      transition: all 0.2s ease;
    }

    .nav-btn:hover {
      background: #00bcb5;
      color: #fff;
      border-color: #00bcb5;
    }

    .nav-btn.prev { left: -22px; }
    .nav-btn.next { right: -22px; }
	
	   /* Класс скрытия кнопок */
    .nav-btn.is-hidden {
      display: none !important;
    }
	
	.seemore_string2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    }
    .seemore_string3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    }