.wcsju-category-slider {
    margin: 20px 0;
}

.wcsju-category-item {
    text-align: center;
    padding: 10px;
}

.wcsju-category-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.wcsju-category-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 10px;
    overflow: hidden;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.wcsju-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wcsju-category-name {
    font-size: 16px;
    margin: 0;
    transition: color 0.3s ease;
}

.wcsju-category-link:hover .wcsju-category-image {
    transform: scale(1.05);
}

.wcsju-category-link:hover .wcsju-category-name {
    color: #0073aa; /* WordPress blue - you can change this */
}

.slick-prev,
.slick-next {
    z-index: 1;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

/* Responsive styles for better display on mobile */
@media (max-width: 768px) {
    .wcsju-category-item {
        padding: 8px;
    }

    .wcsju-category-image {
        width: 120px;
        height: 120px;
    }

    .wcsju-category-name {
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .wcsju-category-item {
        padding: 6px;
    }

    .wcsju-category-image {
        width: 130px;
        height: 130px;
    }

    .wcsju-category-name {
        font-size: 14px;
    }
}
