@media (max-width: 768px) {

    .location-bg-img {
        content: url("../img/mobile/location/location_section1_img.png");
        object-fit: contain; /* 모바일은 원본 비율 유지 */
        height: auto;
        position: static;
    }

    .location-section1 {
        position: relative;
        height: auto;
    }

    .location-section1::before {
        background-color: transparent; /* 모바일은 오버레이 제거 */
    }

    .location-section1-inner {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        box-sizing: border-box;
        padding: 0 30px;
        width: 100%;
    }

    .location-title {
        font-size: 20px;
    }

    .location-subtitle {
        font-size: 14px;
    }

    .location-section2 {
        background-color: #FFF6EC;
        padding: 30px 20px 60px;
        text-align: center;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .map-store-overlay {
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        z-index: 10;
    }

    .store-search-form-mobile {
        background: white;
        border-radius: 12px;
        padding: 12px 16px;
        display: flex;
        align-items: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .store-search-form-mobile input {
        flex: 1;
        border: none;
        font-size: 16px;
    }

    .search-icon-mobile img {
        width: 20px;
        height: 20px;
    }

    .selected-store-card {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        background: white;
        padding: 16px;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    }

    .selected-store-card .store-name {
        font-weight: bold;
        font-size: 18px;
        margin-bottom: 4px;
    }

    .selected-store-card .store-address {
        font-size: 14px;
        color: #444;
    }

    .place_find_container {
        height: 510px;
    }

    #placeLoadMap {
        width: 100%;
        height: 100%;
        min-height: 510px;
    }

    .store-count-banner-absolute {
        position: absolute;
        top: 20px;
        left: 20px;
        background: rgba(0, 0, 0, 0.7);
        color: #fff;
        padding: 8px 16px;
        border-radius: 10px;
        font-size: 18px;
        font-weight: 700;
        z-index: 20;
    }
}