/* =========================================================
   NIKO 城市体验官 - 前台样式表
   与 views/*.php 的 class 名称严格对齐（v2）
   后台 admin.php 自带独立 <style>，此处不干预
   ========================================================= */

:root {
  --primary: #4ade80;
  --primary-dark: #22c55e;
  --primary-light: #dcfce7;
  --bg: #f3f4f6;
  --card: #ffffff;
  --text: #1f2937;
  --text-light: #6b7280;
  --danger: #ef4444;
  --warn: #f59e0b;
  --radius: 16px;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  --max-w: 480px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button { border: none; background: none; font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
input, select, textarea { font-family: inherit; font-size: 14px; outline: none; }

/* 前台容器：限宽居中，避免影响后台页面 */
.app {
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg);
  position: relative;
  padding-bottom: 76px;
}

.page { padding-bottom: 80px; min-height: 100vh; }
.hidden { display: none !important; }
.empty { text-align: center; color: var(--text-light); padding: 32px 0; font-size: 13px; }
.loading { text-align: center; color: var(--text-light); padding: 20px; font-size: 13px; }

/* ============ 顶部栏 ============ */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 48px;
  background: linear-gradient(135deg, #86efac 0%, #4ade80 100%);
  padding: 10px 14px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-bar.simple { justify-content: center; }
.top-bar .title {
  font-size: 17px;
  font-weight: 600;
  flex: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-bar.simple .title { flex: none; }
.top-bar .back-btn {
  font-size: 26px;
  line-height: 1;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex: none;
  margin-top: -4px;
}
.top-bar .location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  flex: none;
  cursor: pointer;
  max-width: 34%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-box {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
}
.search-box input {
  border: 0;
  background: transparent;
  width: 100%;
  font-size: 13px;
  color: var(--text);
}
.search-box input::placeholder { color: #9ca3af; }
.flex-1 { flex: 1; min-width: 0; }
.search-btn { color: #fff; font-size: 17px; flex: none; padding: 0 2px; }

/* ============ 首页 Banner ============ */
.banner-swipe {
  display: flex;
  gap: 12px;
  padding: 14px 14px 4px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.banner-swipe::-webkit-scrollbar { display: none; }
.banner {
  flex: 0 0 88%;
  height: 150px;
  border-radius: var(--radius);
  background-color: #d1fae5;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  scroll-snap-align: center;
  box-shadow: var(--shadow);
}
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.45) 100%);
}
.banner-text {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
.banner-text h2 { font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.banner-text p { font-size: 12px; opacity: 0.95; }

/* ============ 首页快捷入口 ============ */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 14px 10px 6px;
}
.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 2px;
  border-radius: 12px;
  cursor: pointer;
}
.quick-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.quick-name { font-size: 12px; color: var(--text); font-weight: 500; }

/* ============ 板块 ============ */
.block { margin: 10px 14px 18px; }
.block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}
.block-head h3 { font-size: 16px; font-weight: 700; }
.block-head a { font-size: 12px; color: var(--primary-dark); }

.apply-banner {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* 动态中心（活动卡片） */
.activity-grid { display: flex; flex-direction: column; gap: 10px; }
.activity-card {
  display: flex;
  gap: 12px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow);
  cursor: pointer;
  align-items: stretch;
}
.activity-card img {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  object-fit: cover;
  background: #f3f4f6;
  flex: none;
}
.activity-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2px 0;
}
.activity-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.activity-info p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.activity-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.activity-price { color: var(--danger); font-size: 15px; font-weight: 700; }
.activity-book { font-size: 12px; color: var(--text-light); }

/* 排行榜 */
.rank-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 8px;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.rank-num {
  width: 22px;
  flex: none;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  color: #9ca3af;
  font-style: italic;
}
.rank-num-1 { color: #f59e0b; }
.rank-num-2 { color: #94a3b8; }
.rank-num-3 { color: #d97706; }
.rank-item img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #e5e7eb;
  flex: none;
}
.rank-info { flex: 1; min-width: 0; }
.rank-name {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.rank-tags {
  font-size: 11px;
  color: var(--text-light);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rank-price { color: var(--danger); font-size: 14px; font-weight: 700; flex: none; }
.level-badge {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 6px;
  font-style: normal;
  flex: none;
}

/* ============ 城市 / 排序 / 分类 ============ */
.city-row {
  padding: 10px 14px 4px;
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: #fff;
}
.sort-row {
  display: flex;
  gap: 18px;
  padding: 8px 14px;
  background: #fff;
  font-size: 13px;
  color: var(--text-light);
}
.sort-item { cursor: pointer; padding: 2px 0; }
.sort-item.active { color: var(--primary-dark); font-weight: 700; }
.category-tabs {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  overflow-x: auto;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.category-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  flex: none;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #f3f4f6;
  color: var(--text-light);
  cursor: pointer;
  white-space: nowrap;
}
.cat-tab.active { background: var(--primary-light); color: var(--primary-dark); font-weight: 600; }

/* ============ 达人列表 ============ */
.talent-list { padding: 12px 14px; display: flex; flex-direction: column; gap: 10px; }
.talent-card {
  display: flex;
  gap: 12px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.talent-avatar { position: relative; flex: none; }
.talent-avatar img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: #e5e7eb;
}
.online-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-dark);
  color: #fff;
  font-size: 10px;
  padding: 1px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.talent-body { flex: 1; min-width: 0; }
.talent-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.talent-name { font-size: 15px; font-weight: 700; }
.rating, .distance { font-size: 11px; color: var(--text-light); }
.talent-attr {
  display: flex;
  gap: 8px;
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 6px;
}
.talent-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 8px; }
.talent-tags span {
  background: #f3f4f6;
  color: var(--text-light);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 6px;
}
.talent-footer { display: flex; align-items: center; justify-content: space-between; }
.talent-meta { font-size: 11px; color: var(--text-light); }
.price { color: var(--danger); font-weight: 700; font-size: 15px; margin-right: 8px; }
.reserve-btn {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ============ 商家列表 ============ */
.merchant-banner {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 14px;
  border-radius: 12px;
  margin: 12px 14px;
}
.merchant-list { padding: 4px 14px 12px; display: flex; flex-direction: column; gap: 10px; }

/* ============ 详情页 ============ */
.detail-banner {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #e5e7eb;
}
.detail-header {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  padding: 18px 14px;
}
.detail-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  background: #e5e7eb;
  flex: none;
}
.detail-info { flex: 1; min-width: 0; }
.detail-title {
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.detail-meta { font-size: 12px; color: var(--text-light); margin-bottom: 6px; }
.detail-tags { font-size: 12px; color: var(--primary-dark); }

.info-block {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px 14px;
  margin: 10px 14px;
  box-shadow: var(--shadow);
}
.info-block h2 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.info-block h4 { font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.info-block p { font-size: 13px; color: var(--text-light); line-height: 1.7; }
.info-tags {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.info-grid > div {
  background: #f9fafb;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.info-grid span { color: var(--text-light); }
.info-grid b { font-size: 13px; }
.rule-list { list-style: none; }
.rule-list li { font-size: 12px; color: var(--text-light); line-height: 2; }

.review-item { border-top: 1px solid #f3f4f6; padding-top: 10px; margin-top: 10px; }
.review-item:first-of-type { border-top: 0; margin-top: 0; padding-top: 0; }
.review-head { font-size: 12px; font-weight: 600; margin-bottom: 4px; }
.review-content { font-size: 12px; color: var(--text-light); line-height: 1.6; }

/* ============ 底部操作条 ============ */
.bottom-action {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-w);
  background: #fff;
  border-top: 1px solid #f3f4f6;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 120;
}
.action-price { flex: none; }
.action-price span { color: var(--danger); font-size: 20px; font-weight: 800; }
.action-price small { color: var(--text-light); font-size: 11px; margin-left: 2px; }
.action-btn {
  flex: 1;
  text-align: center;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 999px;
}

/* ============ 下单页 ============ */
.order-target {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  padding: 14px;
}
.order-target img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  background: #e5e7eb;
  flex: none;
}
.order-target h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.order-target p { font-size: 12px; color: var(--text-light); }
.order-form { background: #fff; margin-top: 10px; padding: 0 14px; }
.order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 14px;
}
.order-row:last-child { border-bottom: 0; }
.order-row > span { color: var(--text); flex: none; }
.order-row select,
.order-row input,
.order-row textarea {
  border: 0;
  background: transparent;
  text-align: right;
  flex: 1;
  min-width: 0;
  color: var(--text);
}
.order-row textarea { text-align: left; resize: none; }
.order-summary {
  background: #fff;
  border-radius: var(--radius);
  margin: 10px 14px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
  padding: 6px 0;
}
.summary-line.total {
  border-top: 1px solid #f3f4f6;
  margin-top: 6px;
  padding-top: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.summary-line.total span:last-child { color: var(--danger); font-size: 18px; }

/* ============ 订单列表 ============ */
.order-tabs {
  display: flex;
  background: #fff;
  padding: 0 6px;
  margin-bottom: 10px;
}
.order-tab {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-size: 13px;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
}
.order-tab.active { color: var(--primary-dark); font-weight: 700; border-bottom-color: var(--primary-dark); }
.order-list { padding: 0 14px; }
.order-card {
  display: flex;
  gap: 12px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 12px;
  margin-bottom: 10px;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.order-card > img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  background: #e5e7eb;
  flex: none;
}
.order-card-body { flex: 1; min-width: 0; }
.order-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}
.order-card-head h4 {
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.order-status { font-size: 12px; font-weight: 600; flex: none; }
.status-pending { color: var(--warn); }
.status-paid { color: var(--primary-dark); }
.status-completed { color: #3b82f6; }
.status-cancelled { color: #9ca3af; }
.status-approved { color: var(--primary-dark); }
.status-rejected { color: var(--danger); }
.order-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 6px;
}
.order-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f3f4f6;
  padding-top: 8px;
}
.order-no { font-size: 11px; color: #9ca3af; font-family: ui-monospace, Menlo, monospace; }
.order-amount { font-size: 15px; font-weight: 700; color: var(--danger); }

/* 支付成功 */
.success-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto 18px;
}

/* ============ 个人中心 ============ */
.profile-header {
  display: flex;
  gap: 14px;
  align-items: center;
  background: linear-gradient(135deg, #86efac 0%, #4ade80 100%);
  padding: 22px 16px 26px;
  color: #fff;
}
.profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  object-fit: cover;
  background: #e5e7eb;
  flex: none;
}
.profile-info { flex: 1; min-width: 0; }
.profile-name { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.profile-name small { font-weight: 400; opacity: 0.8; }
.profile-tags {
  display: inline-block;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.25);
  padding: 2px 10px;
  border-radius: 999px;
}
.wallet-row {
  display: flex;
  background: #fff;
  margin: -14px 14px 0;
  border-radius: var(--radius);
  padding: 16px 0;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}
.wallet-item { flex: 1; text-align: center; }
.wallet-item h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.wallet-item p { font-size: 11px; color: var(--text-light); }
.order-types {
  display: flex;
  background: #fff;
  margin: 12px 14px 0;
  border-radius: var(--radius);
  padding: 16px 0;
  box-shadow: var(--shadow);
}
.order-type {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-light);
}
.order-type div { font-size: 22px; }
.profile-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px 14px;
  margin: 12px 14px 0;
  box-shadow: var(--shadow);
}
.profile-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.apply-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.apply-card {
  border-radius: 12px;
  padding: 14px;
  color: #fff;
  cursor: pointer;
}
.apply-card h5 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.apply-card p { font-size: 10px; opacity: 0.9; }
.func-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px 0; }
.func-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-light);
}
.func-item span { font-size: 20px; }

/* ============ 弹层（入驻申请）============ */
.modal-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.modal-card {
  background: #fff;
  width: 100%;
  max-width: var(--max-w);
  border-radius: 20px 20px 0 0;
  padding: 18px 16px calc(18px + env(safe-area-inset-bottom, 0px));
  max-height: 82vh;
  overflow-y: auto;
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}
.modal-body label {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.modal-body input,
.modal-body textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  background: #f9fafb;
}
.modal-body textarea { resize: none; }
.modal-btn {
  width: 100%;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 13px;
  border-radius: 999px;
  margin-top: 6px;
}

/* ============ 底部导航 ============ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-w);
  background: #fff;
  display: flex;
  justify-content: space-around;
  padding: 8px 0 calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.05);
  z-index: 110;
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: var(--text-light);
  padding: 4px 12px;
}
.nav-item.active { color: var(--primary-dark); }
.nav-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  font-size: 14px;
}
.nav-item.active .nav-icon { background: var(--primary-light); }
.nav-text { font-size: 11px; }

/* ============ 城市选择面板（app.js 动态生成）============ */
.sheet-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 998;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.city-sheet {
  background: #fff;
  width: 100%;
  max-width: var(--max-w);
  border-radius: 20px 20px 0 0;
  padding: 16px 16px calc(16px + env(safe-area-inset-bottom, 0px));
  max-height: 70vh;
  overflow-y: auto;
}
.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}
.sheet-close { cursor: pointer; color: var(--text-light); font-weight: 400; }
.city-gps {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 11px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 14px;
}
.city-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.city-item {
  text-align: center;
  padding: 11px 0;
  border-radius: 10px;
  background: #f3f4f6;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
}
.city-item.active { background: var(--primary-light); color: var(--primary-dark); font-weight: 700; }
