/*
 * Catalog sections slider — "cards" layout.
 * 6 categories per screen on desktop, the rest scroll as a slider (Swiper).
 * Each item is a light rounded card: bold title on top, product image on the bottom.
 * Scoped to .sections-slider--cards so other usages are unaffected.
 */

/* Swiper controls slide width via slidesPerView; let the card fill it */
.sections-slider--cards .sections-slider__wrapper {
  width: auto;
  height: auto;
}

.sections-slider--cards .sections-slider__item {
  width: 100%;
}

.sections-slider--cards .sections-slider__item-link {
  height: 100%;
}

.sections-slider--cards .sections-slider__item-inner {
  display: flex;
  flex-direction: column;
  height: 290px;
  padding: 20px;
  box-sizing: border-box;
  background-color: #f2f3f5;
  border-radius: 18px;
  overflow: hidden;
  transition: background-color .2s ease, box-shadow .2s ease;
}

.sections-slider--cards .sections-slider__item-link:hover .sections-slider__item-inner {
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, .10);
}

.sections-slider--cards .sections-slider__item-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 600;
  color: #1c2434;
}

.sections-slider--cards .sections-slider__item-image-wrapper {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 210px;
  padding-top: 8px;
}

.sections-slider--cards .sections-slider__item-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

/* Icons variant: small, centered */
.sections-slider--cards .sections-slider__item-image-wrapper--ICONS {
  height: auto;
  align-items: center;
  padding-top: 16px;
}
.sections-slider--cards .sections-slider__item-image-wrapper--ICONS svg,
.sections-slider--cards .sections-slider__item-image-wrapper--ICONS .sections-slider__item-image {
  width: 48px;
  height: 48px;
}

/* Responsive card sizing (item count is handled by Swiper breakpoints) */
@media (max-width: 1259px) {
  .sections-slider--cards .sections-slider__item-inner { height: 270px; }
}
@media (max-width: 767px) {
  .sections-slider--cards .sections-slider__item-inner { height: 235px; padding: 16px; border-radius: 14px; }
  .sections-slider--cards .sections-slider__item-text { font-size: 15px; }
  .sections-slider--cards .sections-slider__item-image-wrapper { height: 155px; }
}
@media (max-width: 479px) {
  .sections-slider--cards .sections-slider__item-inner { height: 215px; }
}
