.skeleton-card {
    width: 260px;
    height: 320px;
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.skeleton {
    background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

.skeleton.image {
    width: 100%;
    height: 160px;
    border-radius: 8px;
}

.skeleton.title {
    width: 80%;
    height: 20px;
    margin: 10px 0;
}

.skeleton.price {
    width: 40%;
    height: 18px;
    margin-bottom: 8px;
}

.skeleton.discount {
    width: 50%;
    height: 14px;
}

.skeleton.stars {
    width: 60%;
    height: 16px;
    margin: 8px 0;
}

@keyframes loading {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}