<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.featured-categories-slider {
    padding: 20px 40px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.category-image-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
    background-color: #f0f0f0; /* Add slight grey background */
}

.category-item:hover .category-image-wrapper {
    transform: scale(1.1);
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-text {
    font-size: 14px;
    text-align: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000;
}

/* Remove pagination styles as we're not using dots anymore */
.swiper-pagination {
    display: none;
}
</pre></body></html>