/* Elementor List Image Switcher Widget Styles */

.elementor-list-img-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}

/* Preview Box (Image Container) */
.elementor-list-img-preview-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f1f5f9;
  box-sizing: border-box;
  z-index: 1;
}

/* Aspect Ratio Utilities */
.elementor-list-img-preview-box.ratio-16-9 {
  aspect-ratio: 16 / 9;
}
.elementor-list-img-preview-box.ratio-4-3 {
  aspect-ratio: 4 / 3;
}
.elementor-list-img-preview-box.ratio-3-2 {
  aspect-ratio: 3 / 2;
}
.elementor-list-img-preview-box.ratio-1-1 {
  aspect-ratio: 1 / 1;
}

/* Responsive fallback for older browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 16 / 9) {
  .elementor-list-img-preview-box.ratio-16-9 {
    padding-top: 56.25%;
    height: 0;
  }
  .elementor-list-img-preview-box.ratio-4-3 {
    padding-top: 75%;
    height: 0;
  }
  .elementor-list-img-preview-box.ratio-3-2 {
    padding-top: 66.66%;
    height: 0;
  }
  .elementor-list-img-preview-box.ratio-1-1 {
    padding-top: 100%;
    height: 0;
  }
  .elementor-list-img-preview-box.ratio-16-9 .elementor-list-img-photo,
  .elementor-list-img-preview-box.ratio-4-3 .elementor-list-img-photo,
  .elementor-list-img-preview-box.ratio-3-2 .elementor-list-img-photo,
  .elementor-list-img-preview-box.ratio-1-1 .elementor-list-img-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* Individual Images */
.elementor-list-img-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
  pointer-events: none;
}

/* Active Image state */
.elementor-list-img-photo.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  pointer-events: auto;
}

/* Title Styling */
.elementor-list-img-title {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  color: #2d3440;
  box-sizing: border-box;
}

/* Pills Container */
.elementor-list-img-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-sizing: border-box;
}

/* Individual Pill Button */
.elementor-list-img-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3em;
  text-align: center;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  user-select: none;
  padding: 8px 16px !important;
}

.elementor-list-img-pill:focus-visible {
  outline: 2px solid #1b6bd6;
  outline-offset: 2px;
}
