/* Skeleton Loading CSS */
.skeleton {
    background: #f6f7f8;
    background-image: linear-gradient(
        to right,
        #f6f7f8 0%,
        #edeef1 20%,
        #f6f7f8 40%,
        #f6f7f8 100%
    );
    background-repeat: no-repeat;
    background-size: 800px 104px;
    display: inline-block;
    position: relative;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeholderShimmer;
    animation-timing-function: linear;
}

@keyframes placeholderShimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}

.skeleton-text {
    height: 12px;
    margin-bottom: 8px;
    width: 100%;
    border-radius: 4px;
}

.skeleton-checkbox {
    width: 15px;
    height: 15px;
    margin-right: 10px;
    display: inline-block;
    border-radius: 3px;
}

.skeleton-category-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.skeleton-best-product {
    display: flex;
    margin-bottom: 20px;
    gap: 15px;
}

.skeleton-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
}

.skeleton-product-content {
    flex: 1;
}

/* Product Grid Skeleton */
.skeleton-grid-item {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 30px;
}

.skeleton-product-img {
    width: 100%;
    height: 230px;
    border-radius: 12px 12px 0 0;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .skeleton-product-img {
        height: 142px;
    }
}
