/* Base skeleton loader styles */
.skeleton-loader {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Skeleton common styles */
.skeleton {
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    margin: 5px 0;
}

/* Shimmer effect */
.skeleton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    height: 100%;
    width: 150%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 75%);
    animation: shimmer 1.5s infinite;
}

/* Skeleton variations */
.skeleton-title {
    height: 25px;
    width: 80%;
}

.skeleton-price {
    height: 20px;
    width: 60%;
}

.skeleton-button {
    height: 30px;
    width: 50%;
    margin-top: 15px;
}

/* Shimmer animation */
@keyframes shimmer {
    0% {
        transform: translateX(-150%);
    }
    100% {
        transform: translateX(150%);
    }
}
