/* Category Bar Style - Non-Slider FINAL Version */

.sly-tab-styled {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    background-color: #9966FF; /* 이미지의 자주색 배경 */
    border-radius: 5px; /* 둥근 모서리 */
    padding: 0.75rem 1rem; /* 내부 여백 조정 */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 그림자 효과 */
}

/* [핵심 수정] UL 태그에 Flexbox 레이아웃을 적용해 가로 정렬 및 줄바꿈 처리 */
.category-list-wrapper {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Flexbox 레이아웃 사용 */
    flex-wrap: wrap; /* 항목들이 공간을 넘어가면 자동으로 줄바꿈 */
    justify-content: center; /* 항목들을 가운데 정렬 */
    align-items: center; /* 세로 중앙 정렬 */
    gap: 0.5rem; /* 항목들 사이의 간격 */
}

.category-list-wrapper li {
    /* Flexbox 자식 요소가 되므로 별도 스타일 불필요 */
    margin: 0;
}

.category-list-wrapper a.category-item {
    display: block;
    text-decoration: none !important;
    position: relative;
    padding: 0.7rem 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff; /* 흰색 글자 */
    border-radius: 6px; /* 둥근 버튼 */
    transition: all 0.3s ease;
    white-space: nowrap; /* 버튼 내 글자가 줄바꿈되지 않도록 */
}

.category-list-wrapper a.category-item:hover {
    background-color: rgba(255, 255, 255, 0.2); /* 호버 시 투명한 배경 */
}

.category-list-wrapper li.active a.category-item {
    font-weight: 700;
    color: #9966FF; /* 선택된 항목 글자색은 자주색 */
    background-color: #fff; /* 선택된 항목 배경색은 흰색 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 선택된 항목에 그림자 */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sly-tab-styled {
        margin-left: -15px; /* 모바일 좌우 여백 제거 */
        margin-right: -15px;
        border-radius: 0; /* 모바일에서는 둥근 모서리 제거 */
        padding: 0.5rem;
    }
    .category-list-wrapper a.category-item {
        padding: 0.6rem 1rem;
        font-size: 1rem;
    }
}