/* ====================================================
   도쿄 쇼핑 스팟 가이드 — 디자인 시스템
   --color-primary: #1A2238 (도쿄 야경 딥 네이비) — 세련된 도시·도쿄타워 야경 모티브
   --color-accent : #E94560 (도쿄타워 인터내셔널 오렌지레드) — 도쿄의 상징색
   두 색상은 흰 배경(#fff)에서 우수한 대비를 보장
   ==================================================== */

:root {
  /* 고정 배경 변수 */
  --color-bg:           #ffffff;
  --color-surface-alt:  #f7f7f5;
  --color-gray-light:   #ECECEC;

  /* 도쿄 이미지 기반 메인 컬러 */
  --color-primary:        #1A2238;   /* 도쿄 야경 딥네이비 */
  --color-primary-light:  #2C3E66;   /* primary 밝은 변형 */
  --color-primary-dark:   #0F1626;   /* 히어로 그라디언트용 더 어두운 */

  --color-accent:         #E94560;   /* 도쿄타워 레드오렌지 */
  --color-accent-light:   #FFF1F3;   /* 연한 배경용 */
  --color-accent-muted:   #F47B8E;   /* 중간 톤 */
  --color-accent-bg:      #FFF8F9;   /* 초연한 섹션 배경 */

  /* 4개 구역 강조색 */
  --color-section1:  #5C6BC0;  /* 시부야 — 도시적 인디고 */
  --color-section2:  #EC407A;  /* 하라주쿠 — 발랄한 핑크 */
  --color-section3:  #26A69A;  /* 다이칸야마·에비스 — 차분한 틸 */
  --color-section4:  #1A2238;  /* 긴자 — 명품 다크네이비 (primary 동일) */
  --color-outlet:    #FF8A65;  /* 근교·아울렛 — 따뜻한 오렌지 */

  /* 텍스트 */
  --color-text:        #1A1A1A;
  --color-text-soft:   #4A4A55;
  --color-text-muted:  #8A8A95;

  /* shadow */
  --shadow-sm: 0 2px 8px rgba(26,34,56,0.06);
  --shadow-md: 0 6px 20px rgba(26,34,56,0.10);
  --shadow-lg: 0 14px 40px rgba(26,34,56,0.14);

  --radius: 14px;
  --radius-lg: 22px;
}

/* ========== Reset & Base ========== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
  min-width: 1024px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: transparent; color: inherit; }
ul, ol { list-style: none; }

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  transition: box-shadow .3s, background .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  box-shadow: 0 4px 18px rgba(26,34,56,0.08);
  background: rgba(255,255,255,0.95);
  border-bottom-color: var(--color-gray-light);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-primary);
}
.logo i { color: var(--color-accent); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nav-menu a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--color-text-soft);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-accent);
  background: var(--color-accent-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  justify-content: center;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--color-primary);
  transition: all .25s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      var(--color-primary-dark) 0%,
      var(--color-primary) 50%,
      var(--color-primary-light) 100%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(233,69,96,0.22) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(244,123,142,0.18) 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(15,22,38,0.45) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 100px 24px 80px;
}
.hero-eyebrow {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .03em;
  backdrop-filter: blur(4px);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 18px;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 10px); }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .96rem;
  transition: transform .2s, box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(26,34,56,0.35);
}
.btn-primary:hover { background: var(--color-primary-light); box-shadow: 0 10px 22px rgba(26,34,56,0.45); }

.btn-secondary {
  background: rgba(255,255,255,0.92);
  color: var(--color-primary);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover { background: #fff; }

.btn-accent {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(233,69,96,0.40);
}
.btn-accent:hover { background: var(--color-accent-muted); box-shadow: 0 10px 22px rgba(233,69,96,0.45); }

/* ========== SECTION ========== */
.section {
  padding: 100px 28px;
  max-width: 1400px;
  margin: 0 auto;
}
.section-alt {
  background: var(--color-surface-alt);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.section-alt > * { max-width: 1400px; margin-left: auto; margin-right: auto; padding-left: 28px; padding-right: 28px; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  margin-bottom: 16px;
}
.section-badge.badge-shibuya   { background: #E8EAF6; color: var(--color-section1); }
.section-badge.badge-harajuku  { background: #FCE4EC; color: var(--color-section2); }
.section-badge.badge-daikanyama{ background: #E0F2F1; color: var(--color-section3); }
.section-badge.badge-ginza     { background: #E8EAF0; color: var(--color-section4); }
.section-badge.badge-outlet    { background: #FFF3E0; color: var(--color-outlet); }

.section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 1.02rem;
  color: var(--color-text-soft);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ========== Purpose Table ========== */
.purpose-table-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow-x: auto;
}
.purpose-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}
.purpose-table thead {
  background: var(--color-primary);
  color: #fff;
}
.purpose-table th {
  padding: 18px 16px;
  text-align: left;
  font-weight: 600;
  font-size: .94rem;
}
.purpose-table td {
  padding: 18px 16px;
  border-top: 1px solid var(--color-gray-light);
  font-size: .94rem;
  color: var(--color-text-soft);
  vertical-align: top;
}
.purpose-table tbody tr { transition: background .2s; cursor: pointer; }
.purpose-table tbody tr:hover { background: var(--color-accent-bg); }
.purpose-table tbody tr.row-selected {
  background: var(--color-accent-light);
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}
.purpose-table td strong i { color: var(--color-accent); margin-right: 6px; }

.location-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.location-badge.loc-shibuya   { background: var(--color-section1); }
.location-badge.loc-harajuku  { background: var(--color-section2); }
.location-badge.loc-daikanyama{ background: var(--color-section3); }
.location-badge.loc-ginza     { background: var(--color-section4); }
.location-badge.loc-outlet    { background: var(--color-outlet); }

/* ========== MAP ========== */
.map-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
}
.map-wrap {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 560px;
}
.map-canvas { width: 100%; height: 560px; }
.map-legend {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: rgba(255,255,255,0.96);
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--color-text-soft);
  padding: 5px 10px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.legend-item:hover { background: var(--color-accent-bg); }
.legend-item.is-off { opacity: .35; text-decoration: line-through; }
.legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot-shibuya   { background: var(--color-section1); }
.dot-harajuku  { background: var(--color-section2); }
.dot-daikanyama{ background: var(--color-section3); }
.dot-ginza     { background: var(--color-section4); }
.dot-outlet    { background: var(--color-outlet); }

.map-side-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 22px;
  max-height: 560px;
  display: flex;
  flex-direction: column;
}
.map-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-gray-light);
}
.map-filter-btn {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  background: var(--color-surface-alt);
  color: var(--color-text-soft);
  transition: all .2s;
}
.map-filter-btn:hover { background: var(--color-accent-light); color: var(--color-accent); }
.map-filter-btn.active {
  background: var(--color-primary);
  color: #fff;
}
.map-place-list {
  overflow-y: auto;
  flex: 1;
  padding-right: 4px;
}
.map-place-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 4px;
  cursor: pointer;
  transition: background .2s;
}
.map-place-item:hover { background: var(--color-accent-bg); }
.map-place-item.is-active {
  background: var(--color-accent-light);
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}
.map-place-item.is-hidden { display: none; }
.map-place-dot {
  flex-shrink: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
}
.map-place-item strong { font-size: .92rem; color: var(--color-primary); display: block; }
.map-place-item small  { font-size: .78rem; color: var(--color-text-muted); }

/* ========== Shop Card / Accordion ========== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.shop-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s, box-shadow .3s;
  border: 1px solid var(--color-gray-light);
}
.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-featured {
  background: linear-gradient(135deg, #fff 0%, var(--color-accent-bg) 100%);
  border-color: var(--color-accent-muted);
  position: relative;
}
.card-featured::after {
  content: '★ 추천';
  position: absolute;
  top: 16px; right: 16px;
  background: var(--color-accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .05em;
}

.acc-trigger {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.card-icon-wrap {
  font-size: 1.9rem;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: 14px;
  flex-shrink: 0;
}
.card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.card-loc {
  font-size: .85rem;
  color: var(--color-text-muted);
}
.card-loc i { color: var(--color-accent); margin-right: 4px; }

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: .76rem;
  font-weight: 600;
  background: var(--color-gray-light);
  color: var(--color-text-soft);
}
.tag-luxury     { background: #E8EAF0; color: #1A2238; }
.tag-electronics{ background: #E3F2FD; color: #1565C0; }
.tag-food       { background: #FFF3E0; color: #E65100; }
.tag-guestcard  { background: #F3E5F5; color: #6A1B9A; }
.tag-outlet     { background: #FFE0B2; color: #BF360C; }
.tag-gift       { background: #FCE4EC; color: #AD1457; }
.tag-casual     { background: #E0F2F1; color: #00695C; }
.tag-fashion    { background: #FFF1F3; color: #E94560; }
.tag-brand      { background: #ECEFF1; color: #37474F; }
.tag-coupon     { background: #FFFDE7; color: #F57F17; }
.tag-beauty     { background: #FCE4EC; color: #C2185B; }
.tag-drink      { background: #F3E5F5; color: #6A1B9A; }
.tag-night      { background: #1A2238; color: #fff; }

.acc-chevron {
  position: absolute;
  right: 20px;
  top: 28px;
  color: var(--color-text-muted);
  transition: transform .3s;
  font-size: .9rem;
}
.acc-card.is-open .acc-chevron { transform: rotate(180deg); color: var(--color-accent); }

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 24px;
}
.acc-card.is-open .acc-body {
  max-height: 1200px;
  padding: 0 24px 22px;
}
.card-desc {
  font-size: .92rem;
  color: var(--color-text-soft);
  margin-bottom: 14px;
  line-height: 1.7;
  padding-top: 4px;
  border-top: 1px dashed var(--color-gray-light);
  padding-top: 16px;
  margin-top: 4px;
}

.info-box {
  background: var(--color-surface-alt);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-row {
  font-size: .88rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-text-soft);
}
.info-row i { margin-top: 3px; flex-shrink: 0; }
.info-row strong { color: var(--color-primary); margin-right: 4px; }
.info-row-tax i { color: #2E7D32; }
.info-row-tax .fa-circle-xmark { color: #C62828; }
.info-row-discount i { color: var(--color-accent); }
.info-row-guest i { color: #6A1B9A; }

.card-recommend, .card-check {
  font-size: .88rem;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 8px;
  line-height: 1.6;
  color: var(--color-text-soft);
}
.card-recommend {
  background: #E8F5E9;
  border-left: 3px solid #43A047;
}
.card-recommend i { color: #43A047; margin-right: 4px; }
.card-recommend strong { color: #2E7D32; }
.card-check {
  background: #FFF8E1;
  border-left: 3px solid #FB8C00;
}
.card-check i { color: #FB8C00; margin-right: 4px; }
.card-check strong { color: #E65100; }

.card-map-btns {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.card-map-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--color-primary);
  color: #fff;
  font-size: .86rem;
  font-weight: 600;
  transition: background .2s, transform .2s;
}
.card-map-btn:hover { background: var(--color-accent); transform: translateY(-1px); }
.card-map-btn:last-child { background: var(--color-accent); }
.card-map-btn:last-child:hover { background: var(--color-primary); }

/* ========== Popular ========== */
.popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.popular-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .3s;
  border: 1px solid var(--color-gray-light);
}
.popular-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.popular-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}
.popular-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.popular-card p {
  font-size: .88rem;
  color: var(--color-text-soft);
  line-height: 1.65;
  margin-bottom: 12px;
}
.popular-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: .74rem;
  font-weight: 600;
}

.popular-notice {
  margin-top: 28px;
  background: linear-gradient(135deg, var(--color-accent-light), #fff);
  border: 1px solid var(--color-accent-muted);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.popular-notice i {
  color: var(--color-accent);
  font-size: 1.4rem;
  margin-top: 2px;
}
.popular-notice strong {
  display: block;
  color: var(--color-primary);
  margin-bottom: 6px;
  font-size: 1rem;
}
.popular-notice p { color: var(--color-text-soft); font-size: .92rem; line-height: 1.7; }
.popular-notice u { color: var(--color-accent); }

/* ========== Popular Accordion (New) ========== */
/* 그리드 레이아웃 */
.popular-grid-acc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

/* 아코디언 카드 wrapper — 호버 리프트 제거 (trigger가 담당) */
.popular-acc {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-light);
  overflow: hidden;
  transition: box-shadow .25s;
}
.popular-acc:hover {
  box-shadow: var(--shadow-md);
}
.popular-acc.is-open {
  border-color: var(--color-accent-muted);
  box-shadow: var(--shadow-md);
}

/* 트리거 버튼 */
.popular-acc-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 20px 18px;
  text-align: left;
  display: block;
  transition: background .18s;
}
.popular-acc-trigger:hover {
  background: rgba(233,69,96,.04);
}
.popular-acc .popular-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}
.popular-acc-trigger h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 7px;
}
.popular-acc-trigger > p {
  font-size: .875rem;
  color: var(--color-text-soft);
  line-height: 1.65;
  margin-bottom: 14px;
}

/* 카드 하단 푸터 (태그 + 쉐브론) */
.popular-acc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.popular-acc-chevron {
  color: var(--color-accent);
  font-size: .85rem;
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
}
.popular-acc.is-open .popular-acc-chevron {
  transform: rotate(180deg);
}

/* 아코디언 본문 (숨김/보임) */
.popular-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s;
  padding: 0 20px;
  border-top: 1px solid transparent;
}
.popular-acc.is-open .popular-acc-body {
  max-height: 600px;
  padding: 16px 20px 20px;
  border-top-color: var(--color-gray-light);
}

/* 대표 지점 타이틀 */
.popular-spot-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 7px;
  letter-spacing: .02em;
}

/* 대표 지점 리스트 */
.popular-spot-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.popular-spot-list li {
  font-size: .84rem;
  color: var(--color-text-soft);
  padding-left: 14px;
  position: relative;
  line-height: 1.6;
}
.popular-spot-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--color-accent);
  font-weight: 700;
}

/* 체크 포인트 */
.popular-check {
  background: rgba(233,69,96,.06);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 6px 6px 0;
  padding: 8px 12px;
  font-size: .83rem;
  color: var(--color-text-soft);
  line-height: 1.6;
  margin-bottom: 12px;
}
.popular-check span {
  font-weight: 700;
  color: var(--color-accent);
  margin-right: 4px;
}

/* 함께 묶기 좋은 스팟 */
.popular-combo-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.popular-combo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

/* 구글맵 버튼 */
.popular-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.popular-map-btn:hover {
  background: var(--color-accent);
  transform: translateY(-1px);
}
.popular-map-btn i {
  font-size: .85rem;
}

/* 모바일: 1열 */
@media (max-width: 767px) {
  .popular-grid-acc {
    grid-template-columns: 1fr;
  }
  .popular-acc.is-open .popular-acc-body {
    max-height: 800px;
  }
}

/* ========== Tax Change ========== */
.tax-change-section {
  background: #FFF7ED;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.tax-change-banner {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid #FCD34D;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  box-shadow: 0 8px 24px rgba(252,211,77,0.18);
}
.tax-change-icon {
  font-size: 2.4rem;
  color: #F59E0B;
  flex-shrink: 0;
}
.tax-change-banner h3 {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.tax-change-banner ul {
  list-style: disc inside;
  color: var(--color-text-soft);
  font-size: .92rem;
  line-height: 1.85;
  margin-bottom: 12px;
}
.tax-change-banner ul li b { color: #B45309; }
.tax-change-note {
  font-size: .82rem;
  color: var(--color-text-muted);
  border-top: 1px dashed var(--color-gray-light);
  padding-top: 10px;
}

/* ========== Tax Quick ========== */
.tax-quick-section {
  background: var(--color-surface-alt);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.tax-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.tax-quick-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s, box-shadow .3s;
}
.tax-quick-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.quick-num {
  display: inline-block;
  font-size: .85rem;
  font-weight: 800;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  letter-spacing: .08em;
}
.tax-quick-card h3 {
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.tax-quick-card p {
  font-size: .9rem;
  color: var(--color-text-soft);
  line-height: 1.7;
}
.tax-quick-card b { color: var(--color-primary); }

/* ========== Tips ========== */
.tip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.tip-card {
  border-radius: var(--radius);
  padding: 24px 26px;
  position: relative;
  overflow: hidden;
  border: 1px solid;
}
.tip-card i {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}
.tip-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.tip-card p { font-size: .92rem; line-height: 1.7; }
.tip-card b { font-weight: 700; }
.tip-yellow { background: #FFFBEB; border-color: #FDE68A; color: #78350F; }
.tip-yellow i, .tip-yellow h3 { color: #B45309; }
.tip-orange { background: #FFF7ED; border-color: #FED7AA; color: #7C2D12; }
.tip-orange i, .tip-orange h3 { color: #C2410C; }
.tip-green  { background: #ECFDF5; border-color: #A7F3D0; color: #064E3B; }
.tip-green i, .tip-green h3 { color: #047857; }
.tip-blue   { background: #EFF6FF; border-color: #BFDBFE; color: #1E3A8A; }
.tip-blue i, .tip-blue h3 { color: #1D4ED8; }

/* ========== Course ========== */
.course-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.course-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .3s;
}
.course-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.course-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  background: var(--color-accent);
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.course-body { flex: 1; }
.course-body h3 {
  font-size: 1.12rem;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.course-body > p {
  font-size: .92rem;
  color: var(--color-text-soft);
  margin-bottom: 14px;
}
.course-route {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.route-step {
  padding: 8px 14px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
}
.route-arrow {
  color: var(--color-text-muted);
  font-size: .8rem;
}

/* ========== Checklist ========== */
.checklist-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.checklist { margin-bottom: 28px; }
.checklist-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-gray-light);
  font-size: 1rem;
  color: var(--color-text-soft);
  transition: opacity .2s;
}
.checklist-item:last-child { border-bottom: none; }
.checklist-btn {
  padding: 0;
}
.check-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border: 2px solid var(--color-gray-light);
  border-radius: 8px;
  transition: all .25s;
  color: transparent;
  font-size: .85rem;
}
.checklist-item.is-checked .check-box {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.checklist-item.is-checked { opacity: .55; text-decoration: line-through; }

.progress-wrap { text-align: center; }
.progress-bar-bg {
  width: 100%;
  height: 12px;
  background: var(--color-gray-light);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 12px;
}
.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-muted) 100%);
  border-radius: 100px;
  transition: width .4s ease;
}
.progress-label {
  font-size: .95rem;
  color: var(--color-text-soft);
}
.progress-label span { font-weight: 800; color: var(--color-accent); }
.progress-done {
  display: none;
  margin-top: 14px;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px;
  background: var(--color-accent-light);
  border-radius: 12px;
}
.progress-done.is-shown { display: block; animation: popIn .4s ease; }
@keyframes popIn {
  from { transform: scale(.85); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ========== Footer ========== */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.78);
  padding: 50px 28px 30px;
  text-align: center;
}
.footer-inner { max-width: 1000px; margin: 0 auto; }
.footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.footer-logo i { color: var(--color-accent); margin-right: 8px; }
.footer-note {
  font-size: .88rem;
  margin-bottom: 18px;
  line-height: 1.7;
}
.footer-copy {
  font-size: .82rem;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  margin-top: 18px;
}

/* ========== Back to top ========== */
#back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(233,69,96,0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .3s;
  z-index: 900;
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top:hover { background: var(--color-primary); transform: translateY(-3px); }

/* ========== Fade-up animations ========== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Custom InfoWindow ========== */
.gm-style .gm-style-iw-c {
  border-radius: 14px !important;
  padding: 14px 18px !important;
}
.iw-content { font-family: 'Noto Sans KR', sans-serif; max-width: 220px; }
.iw-content h4 { font-size: 1rem; color: var(--color-primary); margin-bottom: 4px; }
.iw-content p  { font-size: .82rem; color: var(--color-text-soft); margin-bottom: 8px; }
.iw-content a {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 8px;
  background: var(--color-accent);
  color: #fff !important;
  font-size: .8rem;
  font-weight: 600;
}

/* ========== Custom map markers ========== */
.map-marker {
  width: 32px; height: 32px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 3px solid #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
}
.map-marker.is-highlight {
  transform: rotate(-45deg) scale(1.25);
  z-index: 999;
}
.map-marker.mk-shibuya    { background: var(--color-section1); }
.map-marker.mk-harajuku   { background: var(--color-section2); }
.map-marker.mk-daikanyama { background: var(--color-section3); }
.map-marker.mk-ginza      { background: var(--color-section4); }
.map-marker.mk-outlet     { background: var(--color-outlet); }
.map-marker > span { transform: rotate(45deg); }

/* ========== Responsive ========== */
@media (max-width: 1100px) {
  .nav-menu { display: none; }
  .nav-menu.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px;
    border-top: 1px solid var(--color-gray-light);
    box-shadow: 0 12px 24px rgba(26,34,56,0.10);
    gap: 0;
  }
  .nav-menu.is-open a { padding: 12px 10px; border-bottom: 1px solid var(--color-gray-light); }
  .nav-menu.is-open a:last-child { border-bottom: none; }
  .hamburger { display: flex; }
}

@media (max-width: 920px) {
  .map-layout { grid-template-columns: 1fr; }
  .map-side-panel { max-height: 460px; }
  .shop-grid, .popular-grid, .tip-grid { grid-template-columns: 1fr; }
  .popular-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  body { min-width: 0; }
  .section { padding: 70px 18px; }
  .section-alt > * { padding-left: 18px; padding-right: 18px; }
  .header-inner { padding: 12px 18px; }
  .hero-content { padding: 80px 20px 60px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .popular-grid { grid-template-columns: 1fr; }
  .course-card { flex-direction: column; }
  .course-num { width: 48px; height: 48px; font-size: 1.2rem; }
  .tax-change-banner { flex-direction: column; padding: 22px; }
  .checklist-wrap { padding: 22px; }
  .map-legend { position: static; margin: 0 14px 14px; }
  .map-canvas { height: 420px; }
}
