/* Skeleton Loading Styles */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}
@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.skeleton-card {
    background: var(--bg, #fff);
    border: 1px solid var(--border, #e0e0e0);
    border-radius: 16px;
    overflow: hidden;
}
.skeleton-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}
.skeleton-title {
    height: 20px;
    margin: 12px 16px;
    width: 80%;
}
.skeleton-price {
    height: 24px;
    margin: 0 16px 16px;
    width: 40%;
}
.skeleton-badge {
    height: 16px;
    margin: 0 16px 12px;
    width: 30%;
}
