.elt-carousel {
  --elt-accent: #ff6d00;
  --elt-gap: 24px;
  position: relative;
  width: 100%;
  margin: 24px 0;
  padding-right: 20px;
  padding-left: 20px;
  font-family: "Open Sans", sans-serif;
}

.elt-carousel * {
  font-family: "Open Sans", sans-serif;
}

.elt-viewport {
  overflow: hidden;
  width: 100%;
}

.elt-track {
  display: flex;
  align-items: stretch;
  gap: var(--elt-gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none !important;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
}

.elt-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.elt-track.is-dragging .elt-card {
  pointer-events: none;
}

.elt-track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.elt-card {
  display: flex;
  flex: 0 0 calc((100% - (var(--elt-gap) * 2)) / 3);
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #ececec;
  border-radius: 8px;
  background: #fff;
  color: #111;
  text-decoration: none;
  scroll-snap-align: start;
  transition: border-color .16s ease, transform .16s ease;
}

.elt-card:hover,
.elt-card:focus-visible {
  border-color: #d8d8d8;
  color: #111;
  text-decoration: none;
  transform: translateY(-1px);
}

.elt-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / .74;
  padding: 18px 18px 12px;
  background: #f7f7f7;
}

.elt-media img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: 100%;
  mix-blend-mode: multiply;
  object-fit: contain;
}

.elt-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 14px 16px 16px;
}

.elt-brand {
  display: block;
  margin-bottom: 4px;
  color: #111;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.elt-name {
  display: -webkit-box;
  overflow: hidden;
  min-height: 38px;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.36;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.elt-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.elt-price-stack {
  display: grid;
  gap: 2px;
}

.elt-price {
  color: var(--elt-accent);
  font-size: 17px;
  line-height: 1.1;
}

.elt-old-price {
  color: #9a9a9a;
  font-size: 12px;
  line-height: 1.1;
  text-decoration: line-through;
}

.elt-reduction {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 22px;
  padding: 2px 6px;
  border: 1px solid var(--elt-accent);
  border-radius: 2px;
  color: var(--elt-accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.elt-carousel .elt-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  min-width: 38px !important;
  max-width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
  padding: 0 !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 999px !important;
  outline: 0 !important;
  background: #fff !important;
  color: #111 !important;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .10) !important;
  transform: translateY(-50%) !important;
  transition: opacity .15s ease, border-color .15s ease, background .15s ease, color .15s ease, transform .15s ease;
  appearance: none;
  -webkit-appearance: none;
}

.elt-carousel .elt-nav::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.elt-carousel .elt-nav-prev::before {
  transform: translateX(2px) rotate(-135deg);
}

.elt-carousel .elt-nav-next::before {
  transform: translateX(-2px) rotate(45deg);
}

.elt-carousel .elt-nav:hover,
.elt-carousel .elt-nav:focus-visible {
  border-color: #000 !important;
  background: #000 !important;
  color: #fff !important;
  transform: translateY(-50%) scale(1.03) !important;
}

.elt-carousel .elt-nav:disabled {
  opacity: 0 !important;
  pointer-events: none;
}

.elt-carousel .elt-nav-prev {
  left: 1px;
}

.elt-carousel .elt-nav-next {
  right: 1px;
}

.elt-carousel.is-static .elt-nav {
  display: none !important;
}

.elt-card.is-out-of-stock {
  opacity: .62;
}

.elt-card-error {
  gap: 8px;
  padding: 16px;
  border-style: dashed;
  color: #991b1b;
}

.elt-card-error code {
  overflow-wrap: anywhere;
  color: #64748b;
  font-size: 12px;
}

@media (max-width: 980px) {
  .elt-carousel {
    --elt-gap: 18px;
  }

  .elt-card {
    flex-basis: calc((100% - var(--elt-gap)) / 2);
  }

  .elt-nav-prev {
    left: 2px;
  }

  .elt-nav-next {
    right: 2px;
  }
}

@media (max-width: 640px) {
  .elt-carousel {
    --elt-gap: 14px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .elt-viewport {
    overflow: hidden;
  }

  .elt-card {
    flex-basis: 100%;
  }

  .elt-media {
    padding: 16px 16px 10px;
  }

  .elt-body {
    padding: 13px 14px 14px;
  }

  .elt-nav {
    display: none;
  }
}
