/* Hide category count badges */
.top-categories .count,
.category-item .count,
.category .count,
.product-cat .count,
.product-cat-badge,
.count-badge {
    display: none !important;
}

/* CATEGORY IMAGE ROUND */
.product-category img,
.category-item img,
.categories-list img,
.product-cat img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin: auto;
    display: block;
}

/* Center category content */
.product-category,
.category-item,
.product-cat {
    text-align: center;
}

/* Make sure title is BELOW image (not overlay) */
.woocommerce-loop-category__title,
.category-name {
    position: static !important;
    transform: none !important;
    background: transparent !important;
    padding-top: 8px;
    color: #000;
    text-align: center;
}

/* Mobile size */
@media (max-width: 768px) {
    .product-category img,
    .category-item img,
    .product-cat img {
        width: 90px;
        height: 90px;
    }
}

/* Category grid */
.categories-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    justify-content: center;
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

/* Horizontal product slider */
.products-list {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scroll-snap-type: x mandatory;
}

.products-list .product-item {
    min-width: 220px;
    scroll-snap-align: start;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination li a,
.pagination li span {
    border-radius: 50%;
    padding: 8px 14px;
}
.categories img,
.product-category img,
.category-item img {
    border-radius: 50% !important;
    width: 150px;
    height: 150px;
    object-fit: cover;
}