@charset "utf-8";
/* ==========================================================================
   Cstore 리스트 페이지 — 왼쪽 지역분류 사이드바
   파일: skin/board/shop_gallery/region_side.custom.css
   ========================================================================== */

.nvr-store-layout {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-top: 16px;
}

.nvr-region-side {
    width: 200px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 14px;
    padding: 20px 16px;
    position: sticky;
    top: 90px;
}

.nvr-region-title {
    font-size: 15px;
    font-weight: 800;
    color: #222;
    margin: 0 0 12px;
}

.nvr-region-all {
    display: block;
    padding: 8px 10px;
    margin-bottom: 6px;
    border-radius: 8px;
    color: #666;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
}
.nvr-region-all:hover {
    background: #f7f7f7;
    color: #ff6b01;
    text-decoration: none;
}
.nvr-region-all.active {
    background: #fff3ea;
    color: #ff6b01;
}

.nvr-region-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.nvr-region-list:not(.nvr-region-root) {
    padding-left: 12px;
    margin: 2px 0 6px 10px;
    border-left: 1px solid #f0f0f0;
}

.nvr-region-item > a {
    display: block;
    padding: 7px 10px;
    border-radius: 8px;
    color: #555;
    font-size: 13.5px;
    text-decoration: none;
    transition: background .12s ease, color .12s ease;
}
.nvr-region-item > a:hover {
    background: #f7f7f7;
    color: #ff6b01;
    text-decoration: none;
}
.nvr-region-item.active > a {
    background: #fff3ea;
    color: #ff6b01;
    font-weight: 700;
}

.nvr-store-main {
    flex: 1;
    min-width: 0;
}

@media (max-width: 767px) {
    .nvr-store-layout {
        flex-direction: column;
    }
    /* 모바일: 하단 고정메뉴의 "지역별" 전용 페이지가 있으므로 목록 내 지역 사이드바는 숨김 */
    .nvr-region-side {
        display: none;
    }
    .nvr-region-list:not(.nvr-region-root) {
        margin-left: 8px;
    }
}
