/* ==================== EXPLORE PAGE SKELETON ==================== */

/* Category Skeleton */
.category-skeleton-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
}

.category-skeleton-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    background: transparent;
}

.category-skeleton-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.category-skeleton-name {
    flex: 1;
    height: 16px;
    border-radius: 8px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Products Skeleton Grid - Match explore-products-grid EXACTLY */
/* Use display: contents to make skeleton cards direct children of explore-products-grid */
.explore-products-skeleton {
    display: contents; /* Remove container, let skeleton cards be direct grid children */
    width: 100%;
    min-width: 0;
    max-width: none;
    box-sizing: border-box;
    overflow: visible;
    margin: 0;
    padding: 0;
    gap: 0; /* No gap, parent grid handles gap */
}

/* Skeleton cards should have exact same width constraints as product cards */
.explore-products-grid .product-skeleton {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0; /* Allow grid item to shrink */
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Responsive - No need for media queries since skeleton uses display: contents */
/* The parent explore-products-grid handles all responsive behavior */

