.enovcar-slider {
  --ep-gap: 24px;
  --ep-items: 4;
  position: relative;
  width: 100%;
}

.enovcar-slider__viewport { overflow: hidden; }

.enovcar-slider__track {
  display: flex;
  gap: var(--ep-gap);
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.enovcar-product {
  flex: 0 0 calc((100% - (var(--ep-items) - 1) * var(--ep-gap)) / var(--ep-items));
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.enovcar-product__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  padding: 20px;
  background: #f7f7f7;
}

.enovcar-product__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.enovcar-product__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 190px;
  padding: 22px;
}

.enovcar-product__category {
  margin-bottom: 8px;
  color: #f51b23;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.enovcar-product__title {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.35;
}

.enovcar-product__title a { color: #111; text-decoration: none; }
.enovcar-product__title a:hover { color: #f51b23; }
.enovcar-product__price { margin-bottom: 14px; font-weight: 700; }

.enovcar-product__button {
  margin-top: auto;
  padding: 11px 17px;
  color: #fff;
  background: #f51b23;
  border-radius: 3px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease;
}

.enovcar-product__button:hover,
.enovcar-product__button:focus { color: #fff; background: #111; }

.enovcar-slider__arrow {
  position: absolute;
  z-index: 2;
  top: 140px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0 0 3px;
  color: #f51b23;
  background: #fff;
  border: 2px solid #f51b23;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.enovcar-slider__arrow:hover { color: #fff; background: #f51b23; }
.enovcar-slider__arrow:disabled { opacity: .3; cursor: default; }
.enovcar-slider__arrow--prev { left: -19px; }
.enovcar-slider__arrow--next { right: -19px; }

@media (max-width: 1024px) {
  .enovcar-slider { --ep-items: 2; }
}

@media (max-width: 640px) {
  .enovcar-slider { --ep-items: 1; --ep-gap: 16px; }
  .enovcar-product__image { height: 250px; }
  .enovcar-slider__arrow--prev { left: 8px; }
  .enovcar-slider__arrow--next { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .enovcar-slider__track { transition: none; }
}
