/* Dynamic Elementor carousel for random Shop products. */
.standard-section.mh-random-products .standard-image {
  background: #eeeae3;
}

.standard-section.mh-random-products .standard-slides .mh-random-product-slide {
  position: absolute;
  inset: 0;
  display: none;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.standard-section.mh-random-products .standard-slides .mh-random-product-slide.active {
  display: block;
}

.standard-section.mh-random-products .standard-slides .mh-random-product-slide img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2, .7, .2, 1);
}

.standard-section.mh-random-products .mh-random-product-slide::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(transparent, rgba(23, 23, 20, .62));
  content: "";
  pointer-events: none;
}

.standard-section.mh-random-products .mh-random-product-slide:hover img {
  transform: scale(1.025);
}

.standard-section.mh-random-products .mh-random-product-caption {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  display: grid;
  gap: 6px;
  max-width: calc(100% - 108px);
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(23, 23, 20, .42);
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .38);
  backdrop-filter: blur(6px);
}

.standard-section.mh-random-products .mh-random-product-caption strong {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.standard-section.mh-random-products .mh-random-product-caption small {
  font-size: 11px;
  font-weight: 700;
}

.standard-section.mh-random-products .standard-arrow[hidden],
.standard-section.mh-random-products .standard-dots[hidden] {
  display: none !important;
}

.standard-section.mh-random-products .mh-random-products-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #171714;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

@media (max-width: 680px) {
  .standard-section.mh-random-products .mh-random-product-caption {
    top: 18px;
    left: 18px;
    max-width: calc(100% - 84px);
  }
}
