/* 위치기반안내 - 풍경 탭 내 동네가게 카드 */
.store-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: box-shadow 0.2s;
}
.store-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.1); }
.store-img-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.store-img-scroll::-webkit-scrollbar { height: 3px; }
.store-img-scroll::-webkit-scrollbar-thumb { background: #ccc; border-radius: 2px; }
.store-img-item {
    width: 100%;
    height: 120px;
    object-fit: cover;
    flex-shrink: 0;
    scroll-snap-align: start;
}
.store-img-placeholder {
    height: 120px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* 풍경/가게 공통 카드 */
.scenery-card { border-radius: 16px; }
.scenery-thumb { height: 140px; object-fit: cover; border-radius: 16px 16px 0 0; }
.scenery-placeholder { height: 140px; border-radius: 16px 16px 0 0; font-size: 2rem; }

/* 헤리티지 카드 */
.heritage-card { border-radius: 16px; }

/* 집으로 카드 */
.home-walk-card { border-radius: 16px; border-left: 4px solid #198754; }
.home-transit-card { border-radius: 16px; border-left: 4px solid #dc3545; }
.home-loc-card { border-radius: 16px; }

/* 유틸리티 */
.font-size-1-2 { font-size: 1.2rem; }
.font-size-1-3 { font-size: 1.3rem; }
.text-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* 풍경 탭 헤리티지 + 가게 공통 */
.inline-content { max-height: 400px; overflow-y: auto; }
.inline-heritage-list { max-height: 300px; overflow-y: auto; }
.inline-heritage-item {
    padding: 8px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 10px;
    align-items: center;
}
.inline-heritage-item:last-child { border-bottom: none; }
.inline-heritage-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

/* 공통 - 교통/사고/공사 */
.traffic-item {
    padding: 6px 10px;
    border-bottom: 1px solid #f8f8f8;
    font-size: 0.85rem;
}
.traffic-item:last-child { border-bottom: none; }

/* 풍경 탭 */
.scenic-section { margin-top: 10px; }
.scenic-buttons { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
