
.section.catur.products {
    position: relative;
    overflow: hidden;
    background-color: hsl(var(--muted));
    border-radius: 0.6rem;
    aspect-ratio: 2 / 3;
    width: 100%;
    display: block;
}
  
.section.catur.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    height: 100%;
    width: 150%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    animation: shimmer-products 1.5s infinite;
    border-radius: 0.6rem;
}

@keyframes shimmer-products {
    0% {
        left: -150%;
    }
    
    100% {
        left: 100%;
    }
}
