/* 页面精简调整（用户指定）
   1) 门票不再显示“需提前购票 / 建议预约”等提示
   2) 自驾只保留车型与取车/还车地点
   不改动 Golden 样式文件，全部用追加规则覆盖 */

/* ---------- 1. 门票提示 ---------- */
.schedule-ticket:not(.is-purchased) .schedule-ticket__status { display: none; }
.schedule-ticket__toggle { gap: 6px; }

/* ---------- 2. 自驾精简 ---------- */
#drive .soft-label { display: none; }            /* 顶部右侧租赁商标签 */
#drive .return-deadline { display: none; }        /* 还车截止大块（RETURN 卡里已有时间） */
#drive #rental-countdown { display: none; }       /* 倒计时块 */
#drive .rental-sub { display: none; }             /* 无限里程等 */
#drive .rental-price { display: none; }           /* 价格 */
#drive #drive-notes { display: none; }            /* 租车清单 / 驾驶备注 / 参考链接 */

/* 让剩下的两块更清爽 */
#drive .rental-details { grid-template-columns: 1fr; }
#drive .rental-car { font-size: 20px; letter-spacing: .02em; }
#drive .rental-stops { margin-top: 14px; }

/* ---------- 3. 顶层导航：个人信息（与「记账」同款） ---------- */
.topbar .primary-navigation__link {
  position: relative;
  min-width: 44px;
  min-height: 44px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 680;
}
.topbar .primary-navigation__link:hover { color: var(--ink); }
.topbar .primary-navigation__link[aria-current="page"] { color: var(--ink); }
.topbar .primary-navigation__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 0;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: var(--lake);
}

.section-note { margin: -4px 0 14px; color: var(--muted); font-size: 12.5px; line-height: 1.6; }

/* ---------- 4. 店铺推荐 ---------- */
.shop-list { display: grid; gap: 16px; }
.shop-city {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.shop-city__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 18px;
  background: linear-gradient(180deg, rgba(217,235,238,.55), rgba(217,235,238,0));
  border-bottom: 1px solid var(--line);
}
.shop-city__head h3 { margin: 0; font-size: 17px; font-weight: 760; letter-spacing: .04em; color: var(--ink); }
.shop-city__head span { font-size: 11.5px; color: var(--muted); }
.shop-group { padding: 12px 18px 4px; }
.shop-group + .shop-group { border-top: 1px dashed var(--line); }
.shop-group h4 {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: .1em;
  color: var(--lake);
}
.shop-items { margin: 0; padding: 0; list-style: none; }
.shop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(215,223,220,.6);
}
.shop-items .shop-item:last-child { border-bottom: 0; }
.shop-main { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.shop-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.shop-star { margin-right: 5px; color: var(--terracotta); font-size: 12px; }
.shop-note { font-size: 12px; color: var(--muted); line-height: 1.5; }
.shop-nav {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(40,123,144,.4);
  border-radius: 999px;
  color: var(--lake);
  text-decoration: none;
  font-size: 12px;
  font-weight: 680;
  background: rgba(217,235,238,.35);
}
.shop-nav:hover { background: var(--lake); color: #fff; border-color: var(--lake); }

/* ---------- 5. 个人信息 ---------- */
.contacts-list { display: grid; gap: 14px; }
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 15px 18px;
}
.contact-card__head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.contact-card__head h3 { margin: 0; font-size: 16px; font-weight: 760; color: var(--ink); letter-spacing: .04em; }
.contact-role { font-size: 11.5px; color: var(--muted); }
.contact-fields { margin: 0; display: grid; gap: 8px; }
.contact-fields > div { display: grid; grid-template-columns: 68px 1fr; align-items: baseline; gap: 10px; }
.contact-fields dt { font-size: 12px; color: var(--muted); }
.contact-fields dd { margin: 0; font-size: 14px; color: var(--ink); font-weight: 600; }
.contact-fields dd a { color: var(--lake); text-decoration: none; font-variant-numeric: tabular-nums; }
.contact-id { font: 600 14px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .04em; }
.contact-todo { font-size: 12.5px; font-weight: 500; color: var(--muted); }

@media (max-width: 640px) {
  .shop-group { padding: 12px 14px 4px; }
  .shop-city__head { padding: 13px 14px; }
  .contact-card { padding: 14px; }
  .contact-fields > div { grid-template-columns: 1fr; gap: 2px; }
}

/* ---------- 6. 店铺卡片可折叠 ---------- */
.shop-city__head {
  cursor: pointer;
  list-style: none;
  align-items: center;
}
.shop-city__head::-webkit-details-marker { display: none; }
.shop-city__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--muted);
}
.shop-city__chevron {
  font-style: normal;
  font-size: 15px;
  line-height: 1;
  color: var(--lake);
  transition: transform .2s ease;
}
.shop-city[open] .shop-city__chevron { transform: rotate(45deg); }
.shop-city__head:hover h3 { color: var(--lake); }
.shop-city__body { padding-bottom: 6px; }
