/* Skeleton Loader Styles */
.skeleton-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  background-color: #f0f0f0;
}
.skeleton-wrapper.overFlowUnset{
  overflow: unset;
}
.skeleton-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: skeleton-loading 1.5s infinite;
}

.skeleton-wrapper img {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.skeleton-wrapper.loaded::before {
  display: none;
}

.skeleton-wrapper.loaded {
  background-color: transparent;
}

.skeleton-wrapper.loaded img {
  opacity: 1;
}

@keyframes skeleton-loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Block-level skeleton for larger images */
.skeleton-wrapper.skeleton-block {
  display: block;
  width: 100%;
}

/* Inline skeleton for icons */
.skeleton-wrapper.skeleton-inline {
  display: inline-block;
  vertical-align: middle;
}

/* Specific skeleton sizes - Inline Icons */
.skeleton-16x16 {
  width: 16px;
  height: 16px;
}

.skeleton-18x18 {
  width: 18px;
  height: 18px;
}

.skeleton-28x28 {
  width: 28px;
  height: 28px;
}

.skeleton-37x37 {
  width: 37px;
  height: 37px;
}

.skeleton-40x40 {
  width: 40px;
  height: 40px;
}

.skeleton-44x44 {
  width: 44px;
  height: 44px;
}

.skeleton-50x50 {
  width: 50px;
  height: 50px;
}

.skeleton-62x62 {
  width: 62px;
  height: 62px;
  border-radius: 50%;
}

/* CTA Arrows */
.skeleton-9x15 {
  width: 9px;
  height: 15px;
}

/* Rating Stars */
.skeleton-97x15 {
  width: 97px;
  height: 15px;
}

.skeleton-136x23 {
  width: 136px;
  height: 23px;
}

/* Platform Logos */
.skeleton-130x23 {
  width: 130px;
  height: 23px;
}

.skeleton-130x24 {
  width: 130px;
  height: 24px;
}

.skeleton-139x23 {
  width: 139px;
  height: 23px;
}

/* Responsive Block Images */
.skeleton-process-img {
  width: 100%;
  max-width: 678px;
  width: 678px;
  height: 450px;
  height: auto;
  aspect-ratio: 678 / 450;
}

.skeleton-guarantee-badge {
  width: 100%;
  max-width: 195px;
  height: auto;
  aspect-ratio: 195 / 168;
}

/* Mobile Responsive Adjustments */
@media (max-width: 767px) {
  .skeleton-process-img {
    aspect-ratio: 678 / 450;
      width: 100%;
  height: auto;
  }

  .skeleton-guarantee-badge {
    max-width: 150px;
    margin: auto;
  }

  

  .skeleton-50x50 {
    width: 40px;
    height: 40px;
  }

  .skeleton-44x44 {
    width: 36px;
    height: 36px;
  }
}
