.catalog-service-card__media,
.catalog-card {
  position: relative;
}

.elw-product-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff;
  background: rgba(5, 5, 5, .76);
  border: 1px solid rgba(255, 255, 255, .28);
  place-items: center;
  transform: translateY(-50%);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.elw-product-gallery__arrow:hover,
.elw-product-gallery__arrow:focus-visible {
  background: var(--red, #e11d2e);
  border-color: var(--red, #e11d2e);
  outline: none;
}

.elw-product-gallery__arrow:hover {
  transform: translateY(-50%) scale(1.06);
}

.elw-product-gallery__arrow span {
  font: 400 32px/1 Arial, sans-serif;
  transform: translateY(-1px);
}

.elw-product-gallery__arrow--prev {
  inset-inline-start: 12px;
}

.elw-product-gallery__arrow--next {
  inset-inline-end: 12px;
}

.elw-product-gallery__counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 7;
  padding: 6px 9px;
  color: #fff;
  background: rgba(5, 5, 5, .76);
  border: 1px solid rgba(255, 255, 255, .22);
  font: 700 11px/1 Cairo, Arial, sans-serif;
  direction: ltr;
}

[dir="rtl"] .elw-product-gallery__counter {
  right: auto;
  left: 12px;
}

.elw-product-gallery__thumbs {
  display: flex;
  gap: 8px;
  max-width: 100%;
  padding: 10px 12px 2px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--red, #e11d2e) transparent;
  scrollbar-width: thin;
}

.elw-product-gallery__thumb {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  padding: 0;
  background-color: rgba(0, 0, 0, .18);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid var(--line, rgba(255, 255, 255, .16));
  opacity: .68;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}

.elw-product-gallery__thumb:hover,
.elw-product-gallery__thumb:focus-visible,
.elw-product-gallery__thumb.is-active {
  border-color: var(--red, #e11d2e);
  opacity: 1;
  outline: none;
}

.elw-product-gallery__thumb.is-active {
  box-shadow: inset 0 0 0 1px var(--red, #e11d2e);
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .elw-product-gallery__arrow {
    width: 38px;
    height: 38px;
  }

  .elw-product-gallery__arrow--prev {
    inset-inline-start: 8px;
  }

  .elw-product-gallery__arrow--next {
    inset-inline-end: 8px;
  }

  .elw-product-gallery__thumbs {
    gap: 7px;
    padding-inline: 9px;
  }

  .elw-product-gallery__thumb {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }
}
