/* Блок свайпера внутри вкладки "Индивидуальный заказ" */
.rooma-cart .co-swiper-block {
  margin-top: 0px;
  margin-bottom: 0px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

/* Дивайдер над заголовком */
.rooma-cart .co-swiper-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin-bottom: 16px;
}

/* Заголовок "Выбранные товары в наличии" */
.rooma-cart .co-swiper__title {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
}

/* Контейнер свайпера */
.rooma-cart .co-swiper {
    margin-top: 24px;
  margin-bottom: 24px;
  width: 100%;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch;
  display: block !important;

  /* скрываем полосу прокрутки */
  scrollbar-width: none;               /* Firefox */
}
.rooma-cart .co-swiper::-webkit-scrollbar {
  display: none;                        /* Chrome / Safari */
}
/* Трек */
.rooma-cart .co-swiper-track,
.rooma-cart .co-swiper__track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  gap: 16px;
  padding-bottom: 0px;
  width: max-content;                   /* ширина = сумме карточек */
  box-sizing: border-box;
}
/* десктоп: около 3.5 карточек при ширине контейнера ~800–900px */
.rooma-cart .co-swiper__slide,
.rooma-cart .co-swiper-thumb {
  flex: 0 0 220px !important;           /* базовая ширина карточки */
  max-width: 220px !important;
  width: 220px !important;
}

.rooma-cart .custom-section {
  display: flex;
  flex-direction: column;
  margin-top:40px;
  gap: 40px;
  
}
/* планшет: карточка шире, 2–3 в кадре */
@media (max-width: 1024px) {
  .rooma-cart .co-swiper__slide,
  .rooma-cart .co-swiper-thumb {
    flex: 0 0 200px !important;
    max-width: 200px !important;
    width: 200px !important;
  }
}

/* мобильный: по сути одна карточка (легко свайпать) */
@media (max-width: 764px) {
  .rooma-cart .co-swiper__slide,
  .rooma-cart .co-swiper-thumb {
    flex: 0 0 200px !important;
    max-width: 200px !important;
    width: 200px !important;
  }
  
  .rooma-cart .custom-section {
  display: flex;
  flex-direction: column;
  margin-top:40px;
  gap: 40px;
  
}
}

/* Изображение товара */
.rooma-cart .co-swiper__image-link {
  display: block;
  margin-bottom: 8px;
}

.rooma-cart .co-swiper__image-link img {
  display: block;
  width: 100%;
  height: auto;
}

/* Название товара */
.rooma-cart .co-swiper__name {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 4px;
}

.rooma-cart .co-swiper__name a {
  color: inherit;
  text-decoration: none;
}

.rooma-cart .co-swiper__name a:hover {
  text-decoration: underline;
}

/* Цена */
.rooma-cart .co-swiper__price {
  margin-top:8px;
  font-size: 12px !important;
  font-weight: 400;
}

/* Немного UX: когда тянем мышью, отключаем выделение текста */
.rooma-cart .co-swiper.is-dragging {
  cursor: grabbing;
  user-select: none;
}