.design-center-category-list {
    display: flex;
    justify-content: center;
    align-items: center;
}

.goods_arr_box {
    position: relative;
}

/* 숨김 */
.goods-sort-dropdown {
    position: absolute;
    top: 30px; /* 버튼 아래로 위치 */
    left: -60px;
    width: 140px;
    background: #fff;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    display: none;
    z-index: 199;
}

/* 리스트 스타일 */
.goods-sort-dropdown ul li {
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    color: #333;
    transition: background 0.15s;
}

.goods-sort-dropdown ul li:hover {
    background: #f2f2f2;
}

/* dim 영역 */
.sort-dim {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 100; /* 드롭다운 아래, 페이지 위 */
}

