.catcarousel-wrapper {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.catcarousel-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #222;
}

.catcarousel-container {
    position: relative;
    display: flex;
    align-items: center;
}

.catcarousel-track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    padding: 4px 8px 12px;
    flex: 1;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.catcarousel-track::-webkit-scrollbar {
    display: none;
}

.catcarousel-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 130px;
    text-decoration: none;
    scroll-snap-align: start;
}

.catcarousel-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #f2f2f2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease;
}

.catcarousel-item:hover .catcarousel-circle {
    transform: scale(1.05);
}

.catcarousel-name {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-align: center;
    white-space: nowrap;
}

.catcarousel-item:hover .catcarousel-name {
    color: #F97316;
}

.catcarousel-arrow {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    color: #333;
}

.catcarousel-arrow:hover {
    background: #F97316;
    color: #fff;
}

.catcarousel-arrow-left {
    margin-right: 8px;
}

.catcarousel-arrow-right {
    margin-left: 8px;
}

@media (max-width: 767px) {
    .catcarousel-wrapper {
        padding: 0 12px;
    }

    .catcarousel-item {
        width: 90px;
    }

    .catcarousel-circle {
        width: 80px;
        height: 80px;
    }

    .catcarousel-name {
        font-size: 12px;
    }

    .catcarousel-arrow {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}
