.sm-cat-slider {
    background: #f2f2f2;
    padding: 32px 24px;
    border-radius: 12px;
}

.sm-cat-slider__vazio {
    margin: 0;
    color: #777;
}

.sm-cat-slider__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.sm-cat-slider__titulo {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #222;
}

.sm-cat-slider__vertodas {
    flex-shrink: 0;
    color: #c01823;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
}

.sm-cat-slider__vertodas:hover {
    text-decoration: underline;
}

.sm-cat-slider__wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.sm-cat-slider__track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    padding: 4px 2px 12px;
    flex: 1 1 auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sm-cat-slider__track::-webkit-scrollbar {
    display: none;
}

.sm-cat-slider__item {
    flex: 0 0 auto;
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    scroll-snap-align: start;
}

.sm-cat-slider__img {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: #e4e4e4;
    margin-bottom: 12px;
}

.sm-cat-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sm-cat-slider__nome {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #222;
    line-height: 1.3;
}

.sm-cat-slider__arrow {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.sm-cat-slider__arrow--prev {
    margin-right: 12px;
}

.sm-cat-slider__arrow--next {
    margin-left: 12px;
}

.sm-cat-slider__arrow:hover {
    background: #c01823;
    border-color: #c01823;
    color: #fff;
}

.sm-cat-slider__arrow[disabled] {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 767px) {
    .sm-cat-slider {
        padding: 20px 16px;
        border-radius: 0;
    }

    .sm-cat-slider__titulo {
        font-size: 1.1rem;
    }

    .sm-cat-slider__item {
        width: 96px;
    }

    .sm-cat-slider__img {
        width: 84px;
        height: 84px;
        margin-bottom: 8px;
    }

    .sm-cat-slider__nome {
        font-size: 0.68rem;
    }

    .sm-cat-slider__arrow {
        display: none;
    }
}
