/* ===== CSS Variables & Reset ===== */
:root {
    --primary: #FF6B9D;
    --primary-dark: #E85588;
    --primary-light: #FFD4E3;
    --secondary: #4ECDC4;
    --secondary-dark: #3BB5AD;
    --accent: #FFE66D;
    --accent-dark: #F5D12E;
    --bg: #FFF8F0;
    --bg-card: #FFFFFF;
    --text: #2D3436;
    --text-light: #636E72;
    --text-lighter: #B2BEC3;
    --border: #F0E6DD;
    --shadow: 0 2px 16px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 32px rgba(255,107,157,0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header { background: linear-gradient(135deg, var(--primary) 0%, #FF8E9E 50%, var(--secondary) 100%); padding: 16px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 20px rgba(255,107,157,0.3); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 16px; }
.logo { display: flex; align-items: center; gap: 8px; color: white; font-size: 1.5rem; font-weight: 800; cursor: pointer; flex-shrink: 0; }
.logo i { font-size: 1.3rem; background: rgba(255,255,255,0.25); border-radius: 50%; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; }
.tagline { color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 400; }

/* Hero */
.hero { background: linear-gradient(180deg, #FFF0F5 0%, var(--bg) 100%); padding: 48px 0 32px; text-align: center; }
.hero-inner { max-width: 700px; margin: 0 auto; padding: 0 20px; }
.hero h1 { font-size: 1.8rem; font-weight: 700; line-height: 1.4; margin-bottom: 8px; color: var(--text); }
.hero h1 strong { color: var(--primary); }
.hero-sub { color: var(--text-light); font-size: 0.95rem; margin-bottom: 28px; }

/* Search */
.search-box { display: flex; align-items: center; background: white; border-radius: 50px; padding: 6px 6px 6px 20px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); border: 2px solid transparent; transition: var(--transition); max-width: 600px; margin: 0 auto; }
.search-box:focus-within { border-color: var(--primary); box-shadow: 0 4px 24px rgba(255,107,157,0.2); }
.search-box i { color: var(--text-lighter); font-size: 1.1rem; }
.search-box input { flex: 1; border: none; outline: none; padding: 12px; font-size: 1rem; font-family: var(--font); background: transparent; }
.search-btn { background: var(--primary); color: white; border: none; border-radius: 50px; padding: 12px 28px; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: var(--transition); font-family: var(--font); white-space: nowrap; }
.search-btn:hover { background: var(--primary-dark); transform: scale(1.02); }

/* Quick Tags */
.quick-tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.quick-tag { background: white; border: 1.5px solid var(--border); border-radius: 50px; padding: 8px 16px; font-size: 0.82rem; color: var(--text-light); cursor: pointer; transition: var(--transition); font-family: var(--font); font-weight: 500; }
.quick-tag:hover, .quick-tag.active { background: var(--primary-light); border-color: var(--primary); color: var(--primary-dark); }
.quick-tag i { margin-right: 4px; }

/* Filter */
.filter-section { padding: 16px 0 0; }
.location-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.location-btn { display: flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--secondary) 0%, #45B7AA 100%); color: white; border: none; border-radius: 50px; padding: 10px 20px; font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: var(--transition); font-family: var(--font); white-space: nowrap; }
.location-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(78,205,196,0.3); }
.location-btn i { animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.location-info { display: flex; align-items: center; gap: 8px; background: #E8F8F5; border-radius: 50px; padding: 8px 16px; font-size: 0.85rem; color: var(--secondary-dark); font-weight: 500; }
.clear-location { background: none; border: none; color: var(--text-lighter); cursor: pointer; font-size: 0.8rem; padding: 2px; }
.sort-box select { appearance: none; background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23636E72'/%3E%3C/svg%3E") no-repeat right 12px center; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 10px 36px 10px 14px; font-size: 0.88rem; font-family: var(--font); color: var(--text); cursor: pointer; font-weight: 500; }

/* Filter Toggle & Panel */
.filter-toggle { display: flex; align-items: center; gap: 8px; background: white; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 10px 20px; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: var(--transition); font-family: var(--font); color: var(--text); width: 100%; justify-content: center; }
.filter-toggle:hover, .filter-toggle.active { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.filter-count { background: var(--primary); color: white; border-radius: 50%; width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; }
.filter-panel { background: white; border-radius: var(--radius); margin-top: 12px; padding: 24px; box-shadow: var(--shadow); display: none; animation: slideDown 0.3s ease; }
.filter-panel.open { display: block; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.filter-grid { display: grid; gap: 20px; }
.filter-group { border-bottom: 1px solid var(--border); padding-bottom: 16px; }
.filter-group:last-child { border-bottom: none; padding-bottom: 0; }
.filter-label { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.filter-label i { color: var(--primary); width: 18px; text-align: center; }
.filter-hint { font-size: 0.75rem; font-weight: 400; color: var(--text-lighter); margin-left: 4px; }
.subcategory-appear { animation: slideDown 0.3s ease; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: var(--bg); border: 1.5px solid var(--border); border-radius: 50px; padding: 7px 16px; font-size: 0.82rem; cursor: pointer; transition: var(--transition); font-family: var(--font); font-weight: 500; color: var(--text-light); }
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.active { background: var(--primary); color: white; border-color: var(--primary); }
.multi-count { display: inline-flex; align-items: center; justify-content: center; background: var(--primary); color: white; font-size: 0.65rem; font-weight: 700; min-width: 18px; height: 18px; border-radius: 50px; padding: 0 5px; margin-left: 6px; line-height: 1; }

/* Facility */
.facility-toggles { display: flex; flex-wrap: wrap; gap: 10px; }
.toggle-item { display: flex; align-items: center; cursor: pointer; }
.toggle-item input { display: none; }
.toggle-label { display: flex; align-items: center; gap: 6px; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 8px 14px; font-size: 0.82rem; color: var(--text-light); transition: var(--transition); font-weight: 500; }
.toggle-item input:checked + .toggle-label { background: #E8F8F5; border-color: var(--secondary); color: var(--secondary-dark); }
.toggle-label i { font-size: 0.9rem; }

/* Filter Actions */
.filter-actions { display: flex; gap: 12px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.btn-reset { flex: 1; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 12px; font-size: 0.9rem; font-weight: 600; cursor: pointer; font-family: var(--font); color: var(--text-light); transition: var(--transition); }
.btn-reset:hover { background: #f5f5f5; }
.btn-apply { flex: 2; background: var(--primary); color: white; border: none; border-radius: var(--radius-sm); padding: 12px; font-size: 0.95rem; font-weight: 700; cursor: pointer; font-family: var(--font); transition: var(--transition); }
.btn-apply:hover { background: var(--primary-dark); }

/* Results */
.results-section { padding: 24px 0 60px; }
.results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.results-header h2 { font-size: 1.15rem; font-weight: 700; }
.results-count { background: var(--primary-light); color: var(--primary-dark); border-radius: 50px; padding: 4px 14px; font-size: 0.82rem; font-weight: 700; }
.view-toggle { display: flex; gap: 4px; margin-bottom: 16px; }
.view-btn { background: white; border: 1.5px solid var(--border); border-radius: var(--radius-xs); padding: 8px 14px; cursor: pointer; color: var(--text-lighter); transition: var(--transition); font-size: 0.9rem; }
.view-btn.active { background: var(--primary); border-color: var(--primary); color: white; }

/* Map */
.map-container { margin-bottom: 20px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-view { height: 500px; background: #E8F0FE; position: relative; }
.map-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-light); }
.map-placeholder i { font-size: 3rem; margin-bottom: 12px; color: var(--primary); }
.map-placeholder p { font-weight: 600; font-size: 1.1rem; }
.map-placeholder span { font-size: 0.85rem; color: var(--text-lighter); }
.map-marker { position: absolute; transform: translate(-50%, -100%); cursor: pointer; z-index: 5; transition: var(--transition); }
.map-marker:hover { z-index: 10; transform: translate(-50%, -100%) scale(1.15); }
.marker-icon { background: var(--primary); color: white; width: 36px; height: 36px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.2); border: 2px solid white; }
.marker-icon i { transform: rotate(45deg); font-size: 0.75rem; }
.marker-tooltip { position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: white; border-radius: var(--radius-sm); padding: 8px 14px; box-shadow: 0 4px 16px rgba(0,0,0,0.15); white-space: nowrap; font-size: 0.8rem; font-weight: 600; display: none; z-index: 20; }
.map-marker:hover .marker-tooltip { display: block; }

/* Store Grid & Card */
.store-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; }
.store-grid.list-view { grid-template-columns: 1fr; }
.store-card { background: var(--bg-card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); cursor: pointer; transition: var(--transition); border: 1.5px solid transparent; position: relative; }
.store-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); }
.card-image { height: 180px; background: linear-gradient(135deg, #FFE0EB 0%, #FFD4E3 30%, #E8F8F5 70%, #D4F1EC 100%); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.card-image-icon { font-size: 3.5rem; opacity: 0.6; }
.card-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.badge { background: rgba(255,255,255,0.95); border-radius: 50px; padding: 4px 10px; font-size: 0.72rem; font-weight: 700; backdrop-filter: blur(4px); }
.badge-category { color: var(--primary-dark); }
.badge-playroom { color: var(--secondary-dark); }
.card-distance { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.65); color: white; border-radius: 50px; padding: 4px 10px; font-size: 0.72rem; font-weight: 600; backdrop-filter: blur(4px); }
.card-body { padding: 16px; }
.card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.card-title .price-tag { color: var(--accent-dark); font-size: 0.82rem; font-weight: 700; }
.card-location { font-size: 0.82rem; color: var(--text-light); margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
.card-location i { color: var(--primary); font-size: 0.75rem; }
.card-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars { color: #FFB800; font-size: 0.82rem; letter-spacing: 1px; }
.rating-num { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.review-count { font-size: 0.78rem; color: var(--text-lighter); }
.card-desc { font-size: 0.83rem; color: var(--text-light); line-height: 1.5; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-facilities { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.facility-badge { display: flex; align-items: center; gap: 4px; background: #F0FAF8; color: var(--secondary-dark); border-radius: 50px; padding: 3px 10px; font-size: 0.72rem; font-weight: 600; }
.facility-badge i { font-size: 0.68rem; }
.card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag { background: var(--bg); color: var(--text-light); border-radius: 50px; padding: 3px 10px; font-size: 0.72rem; font-weight: 500; }
.store-grid.list-view .store-card { display: grid; grid-template-columns: 260px 1fr; }
.store-grid.list-view .card-image { height: 100%; min-height: 200px; }

/* Loading & Empty */
.loading { text-align: center; padding: 60px 20px; }
.spinner { width: 40px; height: 40px; border: 4px solid rgba(0,0,0,0.1); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 16px; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading p { color: var(--text-light); font-size: 0.9rem; }
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state i { font-size: 3rem; color: var(--text-lighter); margin-bottom: 16px; }
.empty-state h3 { font-size: 1.2rem; margin-bottom: 8px; }
.empty-state p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 20px; }
.btn-reset-all { background: var(--primary); color: white; border: none; border-radius: 50px; padding: 12px 32px; font-size: 0.95rem; font-weight: 600; cursor: pointer; font-family: var(--font); transition: var(--transition); }
.btn-reset-all:hover { background: var(--primary-dark); }

/* Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000; display: flex; align-items: flex-end; justify-content: center; animation: fadeIn 0.3s ease; backdrop-filter: blur(4px); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal { background: white; border-radius: var(--radius) var(--radius) 0 0; width: 100%; max-width: 640px; max-height: 90vh; overflow-y: auto; animation: slideUp 0.3s ease; position: relative; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.modal-close { position: sticky; top: 12px; float: right; margin: 12px; background: rgba(0,0,0,0.06); border: none; border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; color: var(--text-light); font-size: 1rem; transition: var(--transition); }
.modal-close:hover { background: rgba(0,0,0,0.12); }
.modal-hero { height: 220px; background: linear-gradient(135deg, #FFE0EB 0%, #E8F8F5 100%); display: flex; align-items: center; justify-content: center; font-size: 5rem; opacity: 0.5; position: relative; }
.modal-hero-badges { position: absolute; bottom: 16px; left: 16px; display: flex; gap: 8px; }
.modal-content { padding: 24px 20px 40px; }
.modal-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 4px; }
.modal-subtitle { color: var(--text-light); font-size: 0.88rem; margin-bottom: 16px; }
.modal-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.modal-rating .stars { font-size: 1rem; }
.modal-rating .rating-num { font-size: 1.1rem; }
.modal-info-grid { display: grid; gap: 12px; margin-bottom: 24px; }
.modal-info-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px; background: var(--bg); border-radius: var(--radius-sm); }
.modal-info-item i { color: var(--primary); width: 20px; text-align: center; margin-top: 2px; flex-shrink: 0; }
.modal-info-item .info-label { font-size: 0.75rem; color: var(--text-lighter); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.modal-info-item .info-value { font-size: 0.9rem; font-weight: 500; color: var(--text); margin-top: 2px; }
.modal-section { margin-bottom: 20px; }
.modal-section-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.modal-section-title i { color: var(--primary); }
.playroom-desc { background: linear-gradient(135deg, #FFF0F5, #F0FAF8); border-radius: var(--radius-sm); padding: 16px; font-size: 0.88rem; line-height: 1.7; color: var(--text); }
.modal-facilities { display: flex; flex-wrap: wrap; gap: 10px; }
.modal-facility { display: flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 600; }
.modal-facility.available { background: #E8F8F5; color: var(--secondary-dark); }
.modal-facility.unavailable { background: #F5F5F5; color: var(--text-lighter); text-decoration: line-through; }
.modal-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.modal-tag { background: var(--primary-light); color: var(--primary-dark); border-radius: 50px; padding: 6px 14px; font-size: 0.82rem; font-weight: 600; }
.modal-cta { display: flex; gap: 10px; margin-top: 24px; }
.btn-call { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--secondary); color: white; border: none; border-radius: var(--radius-sm); padding: 14px; font-size: 0.95rem; font-weight: 700; cursor: pointer; font-family: var(--font); transition: var(--transition); }
.btn-call:hover { background: var(--secondary-dark); }
.btn-directions { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--primary); color: white; border: none; border-radius: var(--radius-sm); padding: 14px; font-size: 0.95rem; font-weight: 700; cursor: pointer; font-family: var(--font); transition: var(--transition); }
.btn-directions:hover { background: var(--primary-dark); }

/* Back to Top */
.back-to-top { position: fixed; bottom: 24px; right: 24px; width: 48px; height: 48px; background: var(--primary); color: white; border: none; border-radius: 50%; box-shadow: 0 4px 16px rgba(255,107,157,0.3); cursor: pointer; font-size: 1.1rem; z-index: 50; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(255,107,157,0.4); }

/* Ad Slots */
.ad-slot { width: 100%; max-width: 100%; overflow: hidden; }
.ad-placeholder { background: linear-gradient(135deg, #f8f9fa 0%, #eef0f2 100%); border: 2px dashed #d1d5db; border-radius: 12px; text-align: center; color: #9ca3af; font-size: 0.85rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; transition: var(--transition); }
.ad-placeholder:hover { border-color: var(--primary-light); background: linear-gradient(135deg, #fff0f5 0%, #fef3f7 100%); }
.ad-placeholder p { margin: 0; }
.ad-placeholder small { font-size: 0.72rem; color: #b0b8c4; }
.ad-label { display: inline-block; background: #e5e7eb; color: #6b7280; font-size: 0.6rem; font-weight: 700; letter-spacing: 1px; padding: 2px 8px; border-radius: 4px; text-transform: uppercase; }
.ad-slot-top { padding: 10px 16px; display: flex; justify-content: center; background: rgba(255,255,255,0.6); backdrop-filter: blur(6px); }
.ad-slot-top .ad-placeholder { max-width: 728px; width: 100%; min-height: 90px; padding: 12px 20px; }
.ad-slot-infeed { margin-bottom: 20px; }
.ad-slot-infeed .ad-placeholder { max-width: 100%; min-height: 100px; padding: 20px; background: linear-gradient(135deg, #fff5f8 0%, #f0fffe 100%); border-color: var(--primary-light); }
.ad-placeholder.ad-native { gap: 8px; }
.ad-placeholder.ad-native .ad-label { background: var(--primary-light); color: var(--primary-dark); }
.ad-slot-bottom { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); box-shadow: 0 -2px 20px rgba(0,0,0,0.08); padding: 8px 16px; display: flex; justify-content: center; align-items: center; }
.ad-slot-bottom .ad-placeholder { max-width: 728px; width: 100%; min-height: 50px; padding: 8px 16px; flex-direction: row; gap: 12px; }
.ad-close { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: #e5e7eb; border: none; width: 24px; height: 24px; border-radius: 50%; font-size: 14px; line-height: 1; color: #6b7280; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.ad-close:hover { background: #d1d5db; color: #374151; }

/* Footer */
.footer { margin-bottom: 70px; background: var(--text); color: rgba(255,255,255,0.7); padding: 48px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-brand .logo { color: white; font-size: 1.3rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; }
.footer-links h4 { color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; }
.footer-links a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; padding: 4px 0; transition: var(--transition); }
.footer-links a:hover { color: var(--primary-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 0.82rem; }

/* Responsive */
@media (max-width: 768px) {
    .header-inner { flex-direction: column; gap: 4px; text-align: center; }
    .tagline { font-size: 0.78rem; }
    .hero { padding: 32px 0 24px; }
    .hero h1 { font-size: 1.4rem; }
    .search-box { flex-direction: row; }
    .search-btn { padding: 10px 20px; font-size: 0.88rem; }
    .quick-tags { gap: 6px; }
    .quick-tag { padding: 6px 12px; font-size: 0.78rem; }
    .location-bar { flex-direction: column; gap: 8px; }
    .location-btn { width: 100%; justify-content: center; }
    .sort-box { width: 100%; }
    .sort-box select { width: 100%; }
    .store-grid { grid-template-columns: 1fr; }
    .store-grid.list-view .store-card { grid-template-columns: 1fr; }
    .store-grid.list-view .card-image { height: 180px; min-height: auto; }
    .modal { max-height: 95vh; }
    .modal-hero { height: 160px; }
    .footer-inner { grid-template-columns: 1fr; gap: 24px; }
    .map-view { height: 300px; }
    .modal-cta { flex-direction: column; }
    .ad-slot-top .ad-placeholder { min-height: 60px; font-size: 0.75rem; }
    .ad-slot-infeed .ad-placeholder { min-height: 80px; padding: 14px; }
    .ad-slot-bottom .ad-placeholder { max-width: 320px; min-height: 50px; font-size: 0.75rem; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .store-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .modal { border-radius: var(--radius); max-width: 640px; margin-bottom: 5vh; }
    .modal-overlay { align-items: center; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--text-lighter); border-radius: 3px; }
    </style>
