.skeleton-mask {
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
    pointer-events: none;
  }
  .skeleton-mask--promo-desk {
    width: 720px;
    height: 400px;
    border-radius: 0;
  }
  .skeleton-mask__desktop-wrapper {
    display: flex !important;
    justify-content: center;
    gap: 9px;
    width: 100%;
  }
  .skeleton-mask-container {
    position: relative;
    width: 100%;
  }
  .skeleton-mask__grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: inherit;
    gap: inherit;
    z-index: 10;
    pointer-events: none;
  }
  .skeleton-mask-container > .banner-list,
  .skeleton-mask-container > .grid-list {
    position: relative;
    z-index: 1;
  }
  .skeleton-mask--grid-item {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    min-height: 200px;
    aspect-ratio: 1 / 1;
  }
  .skeleton-mask__slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 20px;
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
  }
  .skeleton-mask--product-card {
    flex: 0 0 auto;
    width: 280px;
    height: 400px;
    border-radius: 12px;
  }
  .skeleton-mask--promo-slide {
    flex: 0 0 auto;
    width: 410px;
    height: 160px;
    border-radius: 8px;
  }
  @media (max-width: 767px) {
    .skeleton-mask--product-card {
      width: 110px;
      height: 180px;
    }
    .skeleton-mask--promo-slide {
      width: 160px;
      height: 160px;
    }
  }
  @media (max-width: 480px) {
    .skeleton-mask--product-card {
      width: 100px;
      height: 160px;
    }
  }
  .skeleton-mask::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%
    );
    animation: skeleton-shimmer 2s infinite;
    will-change: transform;
    transform: translateZ(0);
  }
  @keyframes skeleton-shimmer {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(200%);
    }
  }
  .skeleton-loading .promo-desktop > a {
    opacity: 0;
    position: absolute;
    visibility: hidden;
  }
  .skeleton-loading.banner-list > *,
  .skeleton-loading.grid-list > * {
    opacity: 0;
    position: absolute;
    visibility: hidden;
  } 
  .skeleton-loading.splide > *,
  .skeleton-loading.swiper > * {
    opacity: 0;
    visibility: hidden;
  }
  .skeleton-hidden {
    display: none !important;
  }
  @media (prefers-reduced-motion: reduce) {
    .skeleton-mask::before {
      animation: none;
    }
  }
  @media (max-width: 767px) {
    .skeleton-mask__desktop-wrapper {
      display: none !important;
    }
  }
  
