/* ============================================
 * shops.css — 탱고 매장 디렉토리 전용 추가 스타일
 *   - 메인 앱(modern_index.css) 디자인 시스템 위에 얹음
 *   - 클래스 .toggle-btn, .card, .glass-panel, .modal-overlay 등은 modern_index.css 정의 그대로 사용
 *   - 여기는 매장 전용 변형(모노그램·카테고리 칩 줄 정리·모달 매장 정보 블록)만 정의
 * ============================================ */

/* 백 버튼: 헤더의 action-btn 톤 따라가되 좌측 정렬 */
.shops-back-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--surface, #fff);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 10px;
    color: var(--text-primary, #0f172a);
    margin-right: 6px;
    transition: background 0.15s;
    cursor: pointer;
    text-decoration: none;
}
.shops-back-btn:hover { background: #f1f5f9; }

/* 카테고리 칩 줄 — mode-toggle 같은 톤이지만 다중선택, 가로 wrap 강제 */
.shops-controls .shops-cat-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin-bottom: 8px !important;
    width: 100%;
}
.shops-controls .shops-cat-row .toggle-btn {
    flex: 0 0 auto !important;
    width: auto !important;
    height: 32px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
    background: var(--surface, #fff) !important;
    border: 1px solid var(--border, #e2e8f0) !important;
    color: var(--text-secondary, #475569) !important;
    line-height: 1 !important;
}
.shops-controls .shops-cat-row .toggle-btn.active {
    background: var(--brand, #4f46e5) !important;
    border-color: var(--brand, #4f46e5) !important;
    color: #fff !important;
}

.shops-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-muted, #94a3b8);
    padding: 0 4px;
}
.shops-count { font-weight: 700; color: var(--text-secondary, #475569); }
.shops-hint { font-style: italic; }

/* 매장 카드 — 메인 앱 .card 위에 매장 전용 layout */
.shops-card-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 8px;
}
.shop-card {
    display: grid !important;                       /* .card 의 기본을 명시 강제 (모바일 렌더 안정) */
    grid-template-columns: 64px 1fr !important;
    gap: 12px !important;
    padding: 12px !important;
    align-items: center;
    border-left: 4px solid var(--brand, #4f46e5);
    position: relative;
    min-height: 80px;                               /* 빈 컨테이너 방어 */
    width: 100%;
    box-sizing: border-box;
    background: var(--surface, #fff);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    cursor: pointer;
}
.shop-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
/* 모바일에서도 64px 썸네일 유지 */
@media (max-width: 480px) {
    .shop-card {
        grid-template-columns: 56px 1fr !important;
        gap: 10px !important;
        padding: 10px !important;
    }
    .shop-card-thumb {
        width: 56px !important;
        height: 56px !important;
    }
}
.shop-card-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: #f8fafc;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.shop-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* 로고는 잘리지 않게 contain — 밀롱가 카드와 동일 톤 */
.shop-card-thumb.has-logo {
    background: #f8fafc;
    border: 0;
    padding: 0;
}
.shop-card-thumb.has-logo img {
    object-fit: contain !important;
}
.shop-card-thumb.monogram {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
}

/* 지역 배지 (다른 카드와 동일 패턴) */
.shop-card-region-badge {
    position: absolute;
    top: 10px;
    right: 12px;
    height: 20px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    background: #f3f4f6;
    color: #4b5563;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* 영문 보조 소개 */
.shop-card-desc-en {
    margin: 2px 0 0;
    font-size: 11px;
    color: var(--text-muted, #94a3b8);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-style: italic;
}
.shop-card-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.shop-card-name {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: var(--text-primary, #0f172a);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}
.shop-card-name-arrow {
    font-size: 11px;
    color: var(--text-muted, #94a3b8);
    flex-shrink: 0;
}
.shop-card-sub {
    margin: 0;
    font-size: 11px;
    color: var(--text-secondary, #475569);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.shop-card-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 2px;
}
.shop-card-cat {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(79, 70, 229, 0.08);
    color: #4338ca;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.shop-card-storetype {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    background: #f1f5f9;
    color: #64748b;
    font-weight: 700;
    letter-spacing: 0.02em;
}
/* [V137] 다가오는 오픈마켓 칩 */
.shop-card-popup-chip {
    display: inline-flex;
    align-items: center;
    margin-top: 6px;
    padding: 3px 10px;
    background: #f0f9ff;
    color: #0369a1;
    border: 1px solid #bae6fd;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.shop-card-desc {
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--text-secondary, #475569);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* CTA — 두 버튼 (등록·수정) */
.shops-cta {
    margin-top: 16px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.shops-cta .cta-text strong {
    display: block; font-size: 13px;
    color: #78350f; margin-bottom: 2px;
}
.shops-cta .cta-text p { margin: 0; font-size: 12px; color: #92400e; }
.shops-cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.shops-cta-btn {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    line-height: 1.2;
}
.shops-cta-btn.primary {
    background: var(--brand, #4f46e5);
    color: #fff;
}
.shops-cta-btn.primary:hover {
    background: var(--brand-hover, #4338ca);
    transform: translateY(-1px);
}
.shops-cta-btn.secondary {
    background: #fff;
    color: var(--brand, #4f46e5);
    border: 1px solid var(--brand, #4f46e5);
}
.shops-cta-btn.secondary:hover {
    background: #f8fafc;
    transform: translateY(-1px);
}

/* 더이상 .shops-add-btn 별도 스타일 사용 안 함 — 홈과 동일한 .action-btn .report-cta-btn 톤 그대로 사용 */

/* 매장 상세 모달 — modal-overlay/.modal-content 는 modern_index.css 의 것 그대로 */
.shop-modal-content {
    max-width: 560px;
}

.shop-modal-hero {
    width: calc(100% + 32px);
    margin: -16px -16px 16px;
    aspect-ratio: 16 / 10;
    background: #f1f5f9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.shop-modal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.shop-modal-hero.monogram {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

/* 블러 배경 + contain 표시 (인스타·유튜브 패턴) */
.shop-modal-hero.with-backdrop {
    background: #0f172a;
}
.shop-modal-hero-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(28px) brightness(0.7);
    transform: scale(1.15); /* 블러 가장자리 가리기 */
}
.shop-modal-hero .hero-contain {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    display: block;
}

.shop-modal-name {
    margin: 0 0 4px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary, #0f172a);
}
.shop-modal-sub {
    margin: 0 0 12px;
    font-size: 14px;
    color: var(--text-secondary, #475569);
}
.shop-modal-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 12px;
}
.shop-modal-cat {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(79, 70, 229, 0.08);
    color: #4338ca;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.shop-modal-storetype {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #64748b;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.shop-modal-desc {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary, #0f172a);
    white-space: pre-wrap;
}
.shop-modal-section {
    margin: 14px 0;
    padding-top: 12px;
    border-top: 1px solid var(--border, #e2e8f0);
}
.shop-modal-section h3 {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted, #94a3b8);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.shop-modal-address {
    margin: 0 0 8px;
    font-size: 14px;
    color: var(--text-primary, #0f172a);
    line-height: 1.4;
}
.shop-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.shop-modal-action {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border, #e2e8f0);
    background: var(--surface, #fff);
    color: var(--text-primary, #0f172a);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: background 0.15s;
}
.shop-modal-action:hover { background: #f1f5f9; }
.shop-modal-action.naver { background: #03c75a; color: #fff; border-color: #03c75a; }
.shop-modal-action.google { background: #4285f4; color: #fff; border-color: #4285f4; }

.shop-modal-main-link {
    display: block;
    width: 100%;
    margin-top: 6px;
    padding: 14px;
    background: var(--brand, #4f46e5);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: background 0.15s;
    box-sizing: border-box;
}
.shop-modal-main-link:hover { background: var(--brand-hover, #4338ca); }
.shop-modal-main-link-domain {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    font-weight: 500;
    opacity: 0.85;
}

/* 매장 모달 — 정보 수정 제안 안내 */
.shop-modal-edit-suggest {
    margin-top: 16px;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary, #475569);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.shop-modal-edit-link {
    display: inline-block;
    color: var(--brand, #4f46e5);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}
.shop-modal-edit-link:hover {
    text-decoration: underline;
}

/* 메인 앱 검색 통합 — 매장 검색 결과 섹션 (스타일 일관성) */
.shops-search-section .shops-search-mini-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 10px;
    padding: 10px;
    background: var(--surface, #fff);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    align-items: center;
    transition: background 0.15s;
}
.shops-search-section .shops-search-mini-card:hover {
    background: #f8fafc;
}

/* ── 추가 링크 + 연락처 (모달) — 밝은 배경 톤 ── */
.shop-modal-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.shop-modal-link {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.15s ease;
}
.shop-modal-link:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}
.shop-modal-link-icon { font-size: 18px; text-align: center; }
.shop-modal-link-label { color: #0f172a; font-weight: 700; }
.shop-modal-link-domain {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    font-family: ui-monospace, monospace;
    white-space: nowrap;
}

/* 링크 타입별 액센트 컬러 */
.shop-modal-link[data-link-type="instagram"] { border-color: #fbcfe8; background: #fdf2f8; }
.shop-modal-link[data-link-type="instagram"]:hover { background: #fce7f3; }
.shop-modal-link[data-link-type="facebook"]  { border-color: #bfdbfe; background: #eff6ff; }
.shop-modal-link[data-link-type="facebook"]:hover { background: #dbeafe; }
.shop-modal-link[data-link-type="kakao"]     { border-color: #fde68a; background: #fefce8; }
.shop-modal-link[data-link-type="kakao"]:hover { background: #fef9c3; }
.shop-modal-link[data-link-type="youtube"]   { border-color: #fecaca; background: #fef2f2; }
.shop-modal-link[data-link-type="youtube"]:hover { background: #fee2e2; }
.shop-modal-link[data-link-type="naverstore"],
.shop-modal-link[data-link-type="naverblog"],
.shop-modal-link[data-link-type="naverCafe"] { border-color: #bbf7d0; background: #f0fdf4; }
.shop-modal-link[data-link-type="naverstore"]:hover,
.shop-modal-link[data-link-type="naverblog"]:hover,
.shop-modal-link[data-link-type="naverCafe"]:hover { background: #dcfce7; }
.shop-modal-link[data-link-type="coupang"]   { border-color: #fed7aa; background: #fff7ed; }
.shop-modal-link[data-link-type="coupang"]:hover { background: #ffedd5; }
.shop-modal-link[data-link-type="daumCafe"]  { border-color: #fde68a; background: #fffbeb; }
.shop-modal-link[data-link-type="daumCafe"]:hover { background: #fef3c7; }

.shop-modal-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.shop-modal-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #0f172a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.15s;
}
.shop-modal-contact:hover {
    background: #eef2ff;
    border-color: #c7d2fe;
    color: #4338ca;
}
.shop-modal-contact span { font-size: 16px; }


/* ── 출처 (매장/제보) 칩 행 ── */
.shops-source-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border, #e2e8f0);
}
.shops-source-row .toggle-btn {
    flex: 0 1 auto !important;
}

/* ── 제보 매장 카드 표시 ── */
.shop-card.is-tip {
    border-left-color: #94a3b8;
    border-style: solid;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(148, 163, 184, 0.04) 10px,
        rgba(148, 163, 184, 0.04) 20px
    );
}
.shop-card-source-chip {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    background: #f1f5f9;
    color: #64748b;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px dashed #cbd5e1;
}

/* ── 모달 안내 (제보) ── */
.shop-modal-tip-notice {
    margin-top: 16px;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    color: #475569;
    font-size: 12px;
    line-height: 1.5;
}

/* 카톡 ID 연락처 — button 형태 (복사용) */
.shop-modal-contact.kakao {
    background: #fefce8;
    border-color: #fde68a;
    color: #854d0e;
    cursor: pointer;
    font-family: inherit;
}
.shop-modal-contact.kakao:hover {
    background: #fef9c3;
    border-color: #facc15;
    color: #713f12;
}
.shop-modal-contact.kakao .kakao-id {
    font-family: ui-monospace, monospace;
    font-weight: 700;
}
.shop-modal-contact.kakao .copy-hint {
    margin-left: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #a16207;
    padding: 2px 6px;
    background: rgba(0,0,0,0.05);
    border-radius: 4px;
}

/* 온라인 매장 배지 — 지역 자리에 약간 다른 톤 */
.shop-card-region-badge.online {
    background: #eef2ff;
    color: #4338ca;
}

/* ── 매장 / 제보 그룹 구분선 (밀롱가/쁘락띠까 패턴) ── */
.shops-group-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 4px 4px;
}
.shops-group-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #cbd5e1, transparent);
}
.shops-group-divider-label {
    font-size: 12px;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

/* 홈 텍스트 로고 (back 자리) — 메인 페이지 Tango NOW 톤 그대로 */
.shops-home-text-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    text-decoration: none;
    color: var(--text-primary, #0f172a);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    padding: 4px 8px;
    border-radius: 8px;
    transition: background 0.15s;
    cursor: pointer;
    line-height: 1;
    margin-right: 4px;
}
.shops-home-text-logo:hover { background: #f1f5f9; }
.shops-home-text-logo .logo-now {
    color: var(--brand, #4f46e5);
    font-weight: 900;
}
.shops-page-sep {
    color: var(--text-muted, #cbd5e1);
    font-size: 18px;
    font-weight: 700;
    margin: 0 2px;
}
.shops-sub-title {
    font-size: 17px !important;
    font-weight: 700 !important;
}

/* 매장 모달 닫기 버튼 — hero 위에 올라오게 강제 */
#shop-modal-close {
    position: absolute !important;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.65) !important;
    color: #fff !important;
    border: none !important;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.15s, transform 0.15s;
}
#shop-modal-close:hover {
    background: rgba(15, 23, 42, 0.85) !important;
    transform: scale(1.05);
}
.shop-modal-content { position: relative; }

/* <a> 태그 버튼류의 밑줄 일괄 제거 (탭/CTA/액션) */
.mode-toggle a.toggle-btn,
.mode-toggle a.toggle-btn:hover,
.mode-toggle a.toggle-btn:visited,
a.action-btn,
a.action-btn:hover,
a.action-btn:visited,
a.report-cta-btn,
a.report-cta-btn:hover,
a.report-cta-btn:visited {
    text-decoration: none !important;
}

/* 검색 설정 패널 chip 톤 (홈과 동일하게 보이도록) */
.filters-panel .filter-chip {
    background: #f8fafc;
    border: 1px solid var(--border, #e2e8f0);
    color: var(--text-secondary, #475569);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
}
.filters-panel .filter-chip:hover { background: #f1f5f9; }
.filters-panel .filter-chip.active {
    background: var(--brand, #4f46e5);
    color: #fff;
    border-color: var(--brand, #4f46e5);
}

/* 헤더 로고 <a> 가 .brand-title 의 모든 속성을 그대로 받도록 강제 (홈의 <h1>Tango NOW</h1> 와 동일 외형) */
.main-header .brand-title a,
.main-header .brand-title a:visited,
.main-header .brand-title a:hover,
.main-header .brand-title a:focus {
    color: var(--primary-color, #4f46e5) !important;
    text-decoration: none !important;
    font: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    display: inline-block;
}

/* 매장 모달 — 네이버/구글 지도 버튼 (밀롱가 모달과 동일한 톤·아이콘) */
.shop-modal-actions .map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: #fff;
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.shop-modal-actions .map-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}
.shop-modal-actions .map-btn:active { transform: scale(0.98); }
.shop-modal-actions .map-btn::before {
    content: '';
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(241, 245, 249, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.9);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
    flex: 0 0 auto;
}
.shop-modal-actions .map-btn.naver::before {
    background-image: url('/assets/icons/naver-map.svg');
}
.shop-modal-actions .map-btn.google::before {
    background-image: url('/assets/icons/google-maps.svg');
}
.shop-modal-actions .map-btn.naver { color: #0eca63; }
.shop-modal-actions .map-btn.google { color: #ea4335; }

/* 제보 매장 — 연락처 미확인 배지 */
.shop-modal-unverified {
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    padding: 2px 6px;
    background: #fef3c7;
    color: #92400e;
    border: 1px dashed #fde68a;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* 매장 공유 버튼 */
.shop-modal-share {
    margin-top: 16px;
    text-align: center;
}
.shop-modal-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: #4f46e5;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
    transition: all 0.15s ease;
    font-family: inherit;
}
.shop-modal-share-btn:hover {
    background: #4338ca;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.35);
}
.shop-modal-share-btn:active { transform: scale(0.98); }

/* 연락처 라벨 (전화번호/이메일/카톡 ID 라벨 prefix) */
.shop-modal-contact .contact-label {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.02em;
    margin-right: 2px;
}
.shop-modal-contact .contact-value {
    font-weight: 700;
}
.shop-modal-contact.kakao .contact-label {
    color: #854d0e;
}

/* [V125] 샵 모달: 출점 일정 + 제보 버튼 */
.shop-modal-popup-events { /* placeholder; loaded async */ }
.shop-popup-events-list {
    display: flex; flex-direction: column; gap: 6px;
}
.shop-popup-event-row {
    display: block;
    padding: 10px 12px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 10px;
    text-decoration: none;
    color: #0f172a;
    transition: background 0.15s;
}
.shop-popup-event-row:hover { background: #e0f2fe; }
.shop-popup-event-date {
    font-size: 11px; font-weight: 800; color: #0369a1; letter-spacing: 0.04em;
}
.shop-popup-event-title {
    font-size: 14px; font-weight: 700; margin-top: 2px;
}
.shop-popup-event-note {
    font-size: 12px; color: #0369a1; margin-top: 2px; font-style: italic;
}
.shop-modal-popup-tip {
    margin-top: 12px; text-align: center;
}
.shop-popup-tip-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px;
    background: #fff;
    color: #0369a1;
    border: 1px dashed #bae6fd;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
}
.shop-popup-tip-btn:hover {
    background: #f0f9ff;
    border-color: #38bdf8;
    color: #075985;
}

/* ============================================
   [V144] 카테고리 행 — grid 로 한번에 보이게 (밀롱가 주간 네비처럼)
   모바일: 4×2 grid (8개 균등)
   데스크탑: 8×1 single row
   ============================================ */
#category-nav-row {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    overflow-x: visible !important;  /* horizontal scroll 해제 */
    white-space: normal !important;
    padding-bottom: 0;
    align-items: stretch;
}

#category-nav-row .quick-nav-btn {
    width: 100%;
    min-width: 0;
    padding: 4px 6px;
    height: auto;
    min-height: 28px;
    font-size: 12px;
    letter-spacing: -0.3px;
    flex-shrink: 1;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 데스크탑 — 한 줄 8개 */
@media (min-width: 768px) {
    #category-nav-row {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }
}

/* 좁은 모바일 (360px 이하) — 폰트/패딩 더 축소 */
@media (max-width: 360px) {
    #category-nav-row .quick-nav-btn {
        font-size: 11px;
        padding: 4px 4px;
        letter-spacing: -0.5px;
    }
}
