<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@keyframes skeleton-loader {
    from {
        opacity: 0.4;
    }
    to {
        opacity: 1;
    }
}

/* Skeleton loading class */
.skeleton-loader {
    color: transparent;
    appearance: none;
    -webkit-appearance: none;
    background-color: #eee;
    border-color: #eee;
    height: 100px;
    pointer-events: none;
    animation: skeleton-loader 0.7s infinite alternate;
    border-radius: 10px;
}

.skeleton-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 10px 0;
}

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

.skeleton-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    justify-content: center;
}

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

.skeleton-select {
    width: 50%;
    height: 50px;
    border-radius: 6px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
.skeleton-banner {
    width: 100%;
    max-width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    margin-bottom: 20px;
}
.skeleton-banner-box {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.skeleton-line {
    height: 16px;
    width: 60%;
    border-radius: 6px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-line.short {
    width: 30%;
}

.skeleton-button {
    width: 100px;
    height: 32px;
    border-radius: 6px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-fashion-card {
    width: 100%;
    /* max-width: 300px; */
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: shimmer 1.5s infinite;
}

/* .skeleton-loader {
    background: linear-gradient(90deg, #e0e0e0 25%, #f8f8f8 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
} */

.skeleton-img {
    height: 160px;
    width: 100%;
}

.skeleton-cover {
    height: 60px;
    width: 100%;
}

.skeleton-buttons {
    display: flex;
    justify-content: space-between;
    padding: 0 12px 12px;
}

.skeleton-btn {
    height: 32px !important;
    border-radius: 6px !important;
    width: 30%;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}
@media screen and (max-width: 500px) {
    .skeleton-category {
        width: 60px;
        height: 60px;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}
</pre></body></html>