.sliding-categories-outer-container-5af59c04 {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.sliding-categories-wrapper-5af59c04 {
    width: 100%;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    padding: 14px 0;
    position: relative;
    scroll-behavior: smooth;
}

/* Hide scrollbars but keep functionality */
.sliding-categories-wrapper-5af59c04::-webkit-scrollbar {
    display: none;
}
.sliding-categories-wrapper-5af59c04 {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.sliding-categories-container-5af59c04 {
    display: flex !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    padding: 4px;
    width: max-content;
}

.sliding-category-pill-5af59c04 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    flex-shrink: 0 !important;
    border: 1px solid transparent;
    outline: none;
}

/* Responsive category dimensions for desktop */
@media (min-width: 1025px) {
    .sliding-category-pill-5af59c04 {
        transform: scale(1.1); /* Desktop zoom */
        margin: 0 10px;
    }
}

.sliding-category-pill-5af59c04 * {
    text-decoration: none !important;
    border-bottom: none !important;
}

.sliding-category-pill-5af59c04:hover,
.sliding-category-pill-5af59c04:focus,
.sliding-category-pill-5af59c04:active {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Layout variations */
.sliding-categories-layout-row .sliding-category-pill-5af59c04 {
    flex-direction: row;
}

.sliding-categories-layout-column .sliding-category-pill-5af59c04 {
    flex-direction: column;
}

/* Image styling */
.sliding-category-img-wrapper-5af59c04 {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.sliding-category-pill-5af59c04:hover .sliding-category-img-wrapper-5af59c04 {
    transform: translateY(-3px) scale(1.05);
}

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

.sliding-category-name-5af59c04 {
    font-weight: 600;
}

/* Smooth Arrow styles */
.sliding-categories-arrow-5af59c04 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    z-index: 10;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 1;
    visibility: visible;
}

.sliding-categories-arrow-5af59c04.is-hidden-arrow {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.sliding-categories-arrow-5af59c04:hover {
    transform: translateY(-50%) scale(1.1);
}

.arrow-prev-5af59c04 {
    left: -15px;
}

.arrow-next-5af59c04 {
    right: -15px;
}

/* Hide navigation arrows completely on narrow mobile screens for native swipe feel */
@media (max-width: 767px) {
    .sliding-categories-arrow-5af59c04 {
        display: none !important;
    }
}
