.skeleton {
    background: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 10px;
    height: 100px;
}
.skeleton.image {
    height: 260px;
    width: 100%;
}
.skeleton.text {
    height: 20px;
    width: 100%;
}
.skeleton-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 2rem 0;
}

.skeleton-filter, .skeleton-category {
    height: 60px;
    width: 100%;
    margin-bottom: 10px;
}

.category_alter {
    display: grid;
    grid-template-columns: 19% 78%;
    gap: 2rem;
    min-height: 100vh;
}

.category_alter .col-9 .skeleton-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
}

.product-card {
    display: grid;
    grid-template-columns: 19% 78%;
    gap: 1rem;
}

/* #category-sidebar {
    padding: 2rem 0;
    display: grid;
    gap: 0.5rem;
} */

#product-container {
    display: grid;
    grid-template-columns: 24% 24% 24% 24%;
    gap: 2rem;
    row-gap: 1rem;
    padding: 2rem 0;
}

#product-container .col-3  {
    position: relative;
    display: flex;
}

.variations {
    display: grid;
    grid-auto-rows: max-content;
    max-height: 21.5rem;
    overflow: auto;
    gap:0.7rem;
}

.variations::-webkit-scrollbar {
	width: 3px;
    height: 8px;
}

.variations::-webkit-scrollbar-track {
	border-radius: 8px;
    background-color: var(--white);;
}

.variations::-webkit-scrollbar-thumb {
	border-radius: 8px;
    background-color: #cecece;
}

.variations img , .product-info img {
    width: 100%;
    max-height: 13rem;
}

.pagination {
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    justify-content: center;
}

.product-name {
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-size: 0.95rem;
}

.product-article {
    font-size: 0.85rem;
    color: #6c6c6c;
    margin-bottom: 0.5rem;
    display: flex;
}

.price-text {
    font-size: 0.85rem;
    color: #6c6c6c;
}

.product-price {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.top_sidebar {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
}

.page_active {
    background-color: #6c6c6c;
}

.filter-flex-g {
    display: grid;
    grid-template-columns: 49% 49%;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.filter-flex-f {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.breadcrumbs_ a {
    color: var(--secondary-background-color);
    text-decoration: none;
}

.breadcrumbs_ a:hover {
    text-decoration: underline;
}

.breadcrumbs_ span {
    color: #a1a1a1;
}

.breadcrumbs_ {
    font-size: 0.85rem;
}


@media (max-width: 768px) {
    .category_alter {
        display: grid;
        grid-template-columns: 100%;
        gap: 2rem;
    }

    #product-container {
        display: grid;
        grid-template-columns: 100%;
        gap: 2rem;
        row-gap: 1rem;
        padding: 1rem 0;
    }

    #category-sidebar {
        padding: 1rem 0;
        display: flex;
        overflow-y: scroll;
        gap:1rem;
        margin-bottom: 2rem;
    }
    
    #category-sidebar::-webkit-scrollbar {
        width: 8px;
        height: 3px;
    }

    .breadcrumbs_ {
        font-size: 1.4rem;
    }
    
    
    #category-sidebar:-webkit-scrollbar-track {
        border-radius: 8px;
        background-color: var(--white);;
    }
    
    #category-sidebar::-webkit-scrollbar-thumb {
        border-radius: 8px;
        background-color: #868686;
    }

    .category-g {
        padding: 0.5rem 1.5rem;
        background: #00ADFF;
        font-size: 1.4rem;
        border-radius: 11px;
        white-space: nowrap;
    }

    .category-g a {
        color: #fff;
    }

    #apply-filters , #reset-filters {
        padding: 0.5rem 1.5rem;
        font-size: 1.4rem;
    }

    .filter-flex-g {
        display: grid;
        grid-template-columns: 47% 47%;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }

    .product-name {
        font-size: 1.4rem;
    }

    .price-text {
        font-size: 1.4rem;
    }

    .product-price {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .product-article {
        font-size: 1.25rem;
    }

    .product-stock {
        font-size: 1.3rem;
    }

    #pagination {
        margin-top: 2rem;
        gap:1rem;
    }

    .top_sidebar {
        display: grid;
        gap: 1rem;
        padding: 1rem 0;
    }

    .page-link {
        font-size: 1.7rem;
        padding: 0.8rem 1.2rem;
    }

    .variations {
        gap: 1.2rem;
    }

    .variations img , .product-info img {
        width: 100%;
        max-height: 16rem;
    }

    .variations {
        display: grid;
        grid-auto-rows: max-content;
        max-height: 30rem;
        overflow: auto;
        gap:0.7rem;
    }
}