/* Skeleton Loading Styles */
.skeleton {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.05) 25%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0.05) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

#skeleton-screen {
    padding: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.skeleton-banner {
    width: 100%;
    height: 180px;
    margin-bottom: 25px;
    border-radius: 20px;
}

.skeleton-categories {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    overflow: hidden;
    padding: 10px 0;
}

.skeleton-cat-item {
    min-width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skeleton-cat-circle {
    width: 65px;
    height: 65px;
    border-radius: 50% !important;
    margin-bottom: 8px;
}

.skeleton-cat-text {
    width: 50px;
    height: 12px;
}

.skeleton-section-title {
    width: 120px;
    height: 24px;
    margin-bottom: 20px;
}

.skeleton-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.skeleton-prod-card {
    height: 220px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skeleton-prod-img {
    width: 100%;
    height: 120px;
    border-radius: 12px;
}

.skeleton-prod-title {
    width: 70%;
    height: 15px;
}

.skeleton-prod-price {
    width: 40%;
    height: 15px;
}

.skeleton-header-icon {
    width: 24px;
    height: 24px;
    border-radius: 50% !important;
    display: inline-block;
}

.skeleton-card-icon {
    width: 30px;
    height: 30px;
    border-radius: 50% !important;
    display: inline-block;
}