/* Loading Skeleton Styles */
.skeleton {
    background: linear-gradient(
        90deg,
        var(--bg-tertiary, #e5e7eb) 25%,
        var(--bg-secondary, #f3f4f6) 50%,
        var(--bg-tertiary, #e5e7eb) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Page skeleton */
.page-skeleton {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header skeleton */
.skeleton-header {
    height: 60px;
    margin-bottom: 30px;
}

/* Stats grid skeleton */
.skeleton-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.skeleton-stat-card {
    height: 100px;
    border-radius: 12px;
}

/* Shop cards skeleton */
.skeleton-shops {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.skeleton-shop-card {
    border-radius: 12px;
    overflow: hidden;
}
.skeleton-shop-image {
    height: 160px;
}
.skeleton-shop-content {
    padding: 14px;
}
.skeleton-shop-title {
    height: 20px;
    width: 70%;
    margin-bottom: 10px;
}
.skeleton-shop-category {
    height: 14px;
    width: 50%;
    margin-bottom: 15px;
}
.skeleton-shop-meta {
    height: 16px;
    width: 40%;
}

/* Responsive */
@media (max-width: 768px) {
    .skeleton-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .skeleton-shops {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .skeleton-shops {
        grid-template-columns: 1fr;
    }
}