    .nearby-page {
        display: flex;
        gap: 40px;
        padding: 40px 0;
        max-width: 1400px;
        margin: auto;
        box-sizing: border-box;
    }

    .filter-panel {
        width: 280px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        padding: 24px;
        border: 1px solid #e3e3e3;
    }

    .filter-header {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .filter-close-btn {
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: #666;
        transition: transform 0.2s ease;
    }

    .mobile-only {
        display: none;
    }

    .filter-group {
        margin-bottom: 20px;
    }

    .search-box {
        position: relative;
        margin-top: 10px;
    }

    .search-box input {
        width: 100%;
        padding: 10px 38px 10px 12px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 14px;
        box-sizing: border-box;
    }

    .search-icon {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        background: none;
        font-size: 16px;
        cursor: pointer;
        color: #888;
    }

    .checkbox-list {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-top: 8px;
        font-size: 14px;
        border-bottom: 1px solid #e3e3e3;
        padding-bottom: 15px;
    }

    .checkbox-list input[type="checkbox"] {
        accent-color: #ff2976;
    }

    .filter-actions {
        display: flex;
        justify-content: space-between;
        margin-top: 24px;
        gap: 0 10px;
    }

    .btn-primary {
        background: #ff2976;
        color: white;
        border: none;
        padding: 10px 16px;
        border-radius: 5px;
        font-weight: bold;
        cursor: pointer;
        width: 50%;
    }

    .btn-secondary {
        background: #eee;
        color: #333;
        border: none;
        padding: 10px 16px;
        border-radius: 5px;
        font-weight: bold;
        cursor: pointer;
        width: 50%;
        text-align: center;
    }

    .store-list-area {
        flex: 1;
    }

    .store-list-header {
        position: relative;
        margin-bottom: 16px;
    }

    .store-list-header h2 {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .store-list-header h2 button {
        display: none;
        background: none;
        border: none;
        position: absolute;
        right: 0;
        font-size: 15px;
        font-weight: bold;
        top: 0;
    }

    .store-list-header h2 button img {
        max-width: 20px;
        margin-right: 10px;
    }

    .sub-text {
        font-size: 13px;
        color: #888;
    }

    .selected-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin: 12px 0 20px;
    }

    .filter-chip {
        background: #ffeef2;
        color: #ff2976;
        font-size: 13px;
        padding: 6px 12px;
        border-radius: 20px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .filter-chip .remove {
        border: none;
        background: none;
        font-size: 14px;
        cursor: pointer;
        color: #888;
        line-height: 1;
    }

    .filter-chip .remove:hover {
        color: #ff2976;
    }

    .store-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 24px;
    }

    .store-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease;
    }

    .store-card:hover {
        transform: translateY(-4px);
    }

    .store-thumbnail {
        position: relative;
        height: 200px;
        overflow: hidden;
    }

    .store-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .store-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #ff2976;
        color: white;
        font-size: 12px;
        padding: 4px 8px;
        border-radius: 6px;
    }

    .store-info {
        padding: 14px;
    }

    .store-name {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .store-desc {
        font-size: 13px;
        color: #666;
        margin-bottom: 10px;
    }

    .store-price {
        font-size: 14px;
        color: #ff2976;
        font-weight: bold;
    }


    .nearby-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: linear-gradient(to right, #ff2976, #ff5a3d);
        color: white;
        height: 150px;
        text-align: center;
        margin-bottom: 30px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

    .nearby-header.none {
        display: none;
    }

    .nearby-header h1 {
        font-size: 25px;
        margin-bottom: 10px;
        color: #101010;
    }

    #location-status {
        font-size: 16px;
        color: #101010;
    }

    #retry-location {
        background: white;
        color: #ff2976;
        border: none;
        padding: 6px 12px;
        border-radius: 20px;
        font-weight: 600;
        margin-left: 10px;
        cursor: pointer;
        font-size: 13px;
        display: none;
        /* 기본은 숨김 */
    }

    #retry-location:hover {
        background: #ffeef2;
    }

    .adress-box {
        background: #fff;
        padding: 20px 30px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 1400px;
    }

    .filter-panel label {
        font-size: 17px;
        font-weight: bold;
    }

    .checkbox-list label {
        font-size: 15px;
        font-weight: 400;
        margin: 5px 0;
    }

    .region-header-form {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        width: 100%;
        max-width: 1400px;
    }

    .region-box {
        background: #fff;
        padding: 20px 30px;
        border-radius: 10px;
        display: flex;
        gap: 24px;
        align-items: center;
        width: 100%;
    }

    .region-label {
        font-size: 18px;
        font-weight: bold;
        color: #101010;
        text-align: left;
        text-wrap: nowrap;
    }

    .select {
        font-size: 16px;
        padding: 8px 12px;
        border: 1px solid #ccc;
        border-radius: 6px;
        min-width: 120px;
        width: 70%;
        margin-left: 10px;
    }

    .search-btn {
        width: 100%;
        background: #2d0d47;
        color: #fff;
        border: none;
        padding: 12px 18px;
        border-radius: 8px;
        font-size: 18px;
        cursor: pointer;
    }

    .region-box__content {
        width: calc(100% / 3);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .retry-location-btn {
        background: #ff2976;
        padding: 5px 15px;
        border-radius: 5px;
        color: #fff;
        border: none;
        font-size: 15px;
        margin-left: 5px;
        margin-top: 10px;
    }

    .nearby-page.auto {
        max-width: 100%;
        padding: 40px;
        max-height: calc(100vh - 125px);
        overflow: hidden;
    }

    /* 왼쪽 전체 감싸는 래퍼 */
    .left-content {
        width: 50%;
        display: flex;
        gap: 24px;
    }

    /* 기존 filter-panel 유지 */
    .filter-panel {
        overflow-y: auto;
    }

    /* 리스트는 flex 안에서 남은 공간 다 차지 */
    .store-list-area {
        flex: 1;
        overflow-y: auto;
    }

    /* 오른쪽 지도 영역 */
    .map {
        width: 50%;
        height: auto;
    }

    #map-area {
        width: 100%;
        height: 100%;
        min-height: 600px;
        /* 필요시 높이 보장 */
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #e3e3e3;
    }



    /* 서브페이지 반응형 css */
    @media(max-width:1400px) {
        .nearby-page {
            padding: 40px;
        }

        .region-header-form {
            padding: 0 40px;
        }
    }

    @media(max-width:1200px) {
        .left-content .filter-panel {
            display: none;
        }

        #map-area {
            min-height: auto;
        }
    }


    @media(max-width:800px) {
        .nearby-header {
            padding: 0 !important;
        }

        .region-header-form {
            padding: 20px;
        }

        .region-box {
            flex-wrap: wrap;
            padding: 20px;
            gap: 10px;
        }

        .region-box__content {
            justify-content: flex-start;
            width: 100%;
        }


        .nearby-header {
            height: auto;
        }

        .region-label {
            width: 30%;
            font-size: 15px;
        }

        .select {
            font-size: 15px;
            padding: 5px 10px;
        }

        .search-btn {
            font-size: 15px;
        }

        .nearby-page.auto {
            max-height: unset;
            flex-direction: column-reverse;
        }

        .map {
            width: 100%;
            height: 400px;
        }

        .left-content {
            width: 100%;
        }

        .nearby-page.auto .store-grid {
            display: block;
        }

        .nearby-page.auto .swiper-slide {
            width: auto;
        }

    }

    @media(max-width:500px) {
        .mobile-only {
            display: block;
            ;
        }

        .store-list-header h2 button {
            display: block;
        }

        .nearby-page {
            flex-wrap: wrap;
            padding: 20px;
        }

        .left-content .filter-panel {
            display: block;
            top: 0;
        }

        .filter-panel {
            position: absolute;
            width: calc(100% - 40px);
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            top: 250px;
            visibility: hidden;
            opacity: 0;
        }

        .filter-panel.show {
            visibility: visible;
            opacity: 1;
        }

        .karaoke-form h2 {
            font-size: 18px;
        }

        .karaoke-form,
        .guide-wrapper {
            padding: 20px;
        }

        .guide-wrapper h2 {
            font-size: 18px;
            line-height: 30px;
        }

        .nearby-page.auto {
            padding: 20px;
        }


        .nearby-header.none {
            display: flex;
            padding: 20px !important;
        }

        .nearby-header h1 {
            font-size: 15px;
        }

        #location-status {
            font-size: 14px;
        }
    }