/* ===========================================================
   China 2026 — hoja de estilos compartida
   Paleta: rojo laca / jade / dorado tenue sobre fondo neutro
   =========================================================== */

:root {
  /* Tema oscuro (por defecto) */
  color-scheme: dark;

  --color-bg: #16120f;
  --color-bg-alt: #1d1712;
  --color-surface: #221b16;
  --color-ink: #f3ece1;
  --color-ink-soft: #c7bcae;
  --color-border: #3a2f26;
  --color-header-bg: rgba(22, 18, 15, 0.88);

  --color-lacquer: #e0554c;
  --color-lacquer-dark: #c23f37;
  --color-jade: #3fae92;
  --color-jade-dark: #2c8871;
  --color-gold: #dcae5a;
  --color-gold-soft: #f0d99a;

  --color-booked-bg: #16332a;
  --color-booked-border: #3fae92;
  --color-booked-text: #a8e2cb;

  --color-pending-bg: #3a2a16;
  --color-pending-border: #dcae5a;
  --color-pending-text: #f0cf95;

  --color-forecast-bg: #16283a;
  --color-forecast-border: #5a92dc;
  --color-forecast-text: #a9c8ef;

  --color-estimate-bg: #2a2418;
  --color-estimate-border: #a8905f;
  --color-estimate-text: #d3bd90;

  --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.45);
  --shadow-card-hover: 0 14px 34px rgba(0, 0, 0, 0.6);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --font-display: "Fraunces", "Georgia", "Iowan Old Style", "Noto Serif SC", serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

[data-theme="light"] {
  /* Tema claro (paleta original) */
  color-scheme: light;

  --color-bg: #faf7f2;
  --color-bg-alt: #f1ece2;
  --color-surface: #ffffff;
  --color-ink: #201a17;
  --color-ink-soft: #57504a;
  --color-border: #e4dcce;
  --color-header-bg: rgba(250, 247, 242, 0.92);

  --color-lacquer: #b5322f;
  --color-lacquer-dark: #8c2320;
  --color-jade: #1f6f5c;
  --color-jade-dark: #165445;
  --color-gold: #c99a3c;
  --color-gold-soft: #f3e2b8;

  --color-booked-bg: #eaf4ee;
  --color-booked-border: #1f6f5c;
  --color-booked-text: #165445;

  --color-pending-bg: #fbeee0;
  --color-pending-border: #c98a3c;
  --color-pending-text: #8a5a1c;

  --color-forecast-bg: #e7f0fb;
  --color-forecast-border: #3a6fb0;
  --color-forecast-text: #2a5488;

  --color-estimate-bg: #f2ece0;
  --color-estimate-border: #a08a5f;
  --color-estimate-text: #6e5a34;

  --shadow-card: 0 6px 24px rgba(32, 26, 23, 0.10);
  --shadow-card-hover: 0 14px 34px rgba(32, 26, 23, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.2s ease, color 0.2s ease;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-lacquer-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--color-ink);
}

p {
  margin: 0 0 1em;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Top nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-header-bg);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 12px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle {
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  line-height: 1;
  color: var(--color-ink);
  transition: border-color 0.2s ease;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--color-lacquer);
}

.theme-toggle::before {
  content: "\2600\FE0F";
}

[data-theme="light"] .theme-toggle::before {
  content: "\1F319";
}

.site-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-lacquer);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-logo span {
  color: var(--color-jade);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 38px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-toggle span {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-ink);
  transition: background-color 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--color-ink);
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav a {
  margin-left: 22px;
  text-decoration: none;
  color: var(--color-ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-nav a:hover {
  color: var(--color-lacquer);
}

/* ---------- Hero (index) ---------- */
.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-color: #2c1c18;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-inner {
  padding-top: 60px;
  padding-bottom: 46px;
  width: 100%;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-gold-soft);
  margin-bottom: 14px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 10px;
}

.hero-dates {
  font-size: 1.05rem;
  color: #f2e9da;
  font-weight: 500;
}

/* ---------- City card grid (index) ---------- */
.section-intro {
  padding: 46px 0 10px;
}

.section-intro h2 {
  font-size: 1.6rem;
}

.section-intro p {
  max-width: 68ch;
  color: var(--color-ink-soft);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 26px;
  padding: 24px 0 70px;
}

.city-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--color-surface);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.city-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.city-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.city-card:hover .city-card-media img {
  transform: scale(1.06);
}

.city-card-order {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(20, 14, 12, 0.55);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.city-card-body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.city-card-body h3 {
  font-size: 1.28rem;
  margin-bottom: 4px;
}

.city-card-dates {
  font-size: 0.86rem;
  color: var(--color-jade-dark);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.city-card-desc {
  color: var(--color-ink-soft);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.city-card-cta {
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--color-lacquer);
}

/* ---------- City page hero ---------- */
.city-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.city-hero img.city-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.city-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 14, 12, 0.15) 0%, rgba(20, 14, 12, 0.82) 100%);
  z-index: 1;
}

.city-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 50px;
  padding-bottom: 34px;
  width: 100%;
}

.city-hero-inner h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 8px;
}

.city-hero-dates {
  font-weight: 700;
  color: var(--color-gold-soft);
  font-size: 1rem;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.86rem;
  color: var(--color-ink-soft);
}

.breadcrumb a {
  text-decoration: none;
  color: var(--color-ink-soft);
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--color-lacquer);
}

/* ---------- Content sections ---------- */
.content-section {
  padding: 38px 0;
  border-top: 1px solid var(--color-border);
}

.content-section:first-of-type {
  border-top: none;
}

.content-section h2 {
  font-size: 1.55rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-section h2::before {
  content: "";
  width: 6px;
  height: 26px;
  background: var(--color-lacquer);
  border-radius: 3px;
  display: inline-block;
}

.section-lede {
  max-width: 76ch;
  color: var(--color-ink-soft);
}

/* ---------- Place cards ---------- */
.place-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 10px;
}

.place-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.place-card.is-booked {
  border: 2px solid var(--color-booked-border);
  box-shadow: 0 6px 24px rgba(31, 111, 92, 0.16);
}

.place-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.place-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.place-card-media.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-jade) 0%, var(--color-lacquer) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-align: center;
  padding: 12px;
}

.place-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.place-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 999px;
  width: fit-content;
}

.badge-booked {
  background: var(--color-booked-bg);
  color: var(--color-booked-text);
  border: 1px solid var(--color-booked-border);
}

.badge-pending {
  background: var(--color-pending-bg);
  color: var(--color-pending-text);
  border: 1px solid var(--color-pending-border);
}

.badge-forecast {
  background: var(--color-forecast-bg);
  color: var(--color-forecast-text);
  border: 1px solid var(--color-forecast-border);
}

.badge-estimate {
  background: var(--color-estimate-bg);
  color: var(--color-estimate-text);
  border: 1px solid var(--color-estimate-border);
}

.place-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 0.86rem;
  color: var(--color-ink-soft);
  font-weight: 600;
}

.place-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.place-history {
  font-size: 0.92rem;
  color: var(--color-ink-soft);
}

.place-why {
  font-size: 0.95rem;
}

/* ---------- Pending excursions ---------- */
.pending-section {
  background: var(--color-pending-bg);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  border: 1px dashed var(--color-pending-border);
}

.pending-section h2 {
  margin-bottom: 8px;
}

.pending-section h2::before {
  background: var(--color-gold);
}

.pending-note {
  font-weight: 700;
  color: var(--color-pending-text);
  margin-bottom: 20px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.option-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
}

.option-card h3 {
  font-size: 1.1rem;
}

.option-card ul {
  padding-left: 1.1em;
  margin: 10px 0 0;
  font-size: 0.92rem;
  color: var(--color-ink-soft);
}

.option-card li {
  margin-bottom: 6px;
}

/* ---------- Cómo llegar ---------- */
.transport-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.transport-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.transport-item h3 {
  font-size: 1.02rem;
  margin-bottom: 10px;
}

.transport-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-bg-alt);
  color: var(--color-ink-soft);
  border: 1px solid var(--color-border);
}

.tag-metro { color: var(--color-jade-dark); border-color: var(--color-jade); }
.tag-bus { color: #6e5a34; border-color: var(--color-gold); }
.tag-didi { color: var(--color-lacquer-dark); border-color: var(--color-lacquer); }
.tag-walk { color: #2a5488; border-color: #3a6fb0; }
.tag-boat { color: #2a5488; border-color: #3a6fb0; }
.tag-train { color: #6e5a34; border-color: var(--color-gold); }

.transport-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-ink-soft);
}

/* ---------- Culture / gastronomy ---------- */
.culture-list {
  padding-left: 1.2em;
}

.culture-list li {
  margin-bottom: 8px;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.food-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.food-card h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.food-card p {
  font-size: 0.9rem;
  color: var(--color-ink-soft);
  margin-bottom: 0;
}

.food-price {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-lacquer-dark);
}

.food-note {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--color-ink-soft);
}

/* ---------- Climate ---------- */
.climate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.climate-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  border: 1px solid var(--color-border);
}

.climate-card .badge {
  margin-bottom: 12px;
}

.climate-card p {
  font-size: 0.92rem;
  color: var(--color-ink-soft);
  margin-bottom: 0;
}

.climate-card strong {
  color: var(--color-ink);
}

/* ---------- Bad weather plan ---------- */
.weather-plan {
  background: var(--color-jade);
  color: #f4faf7;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
}

.weather-plan h2 {
  color: #fff;
}

.weather-plan h2::before {
  background: var(--color-gold-soft);
}

.weather-plan ul {
  padding-left: 1.2em;
  margin: 12px 0 0;
}

.weather-plan li {
  margin-bottom: 10px;
}

.weather-plan a {
  color: var(--color-gold-soft);
}

/* ---------- Page navigation (prev/next) ---------- */
.page-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 40px 0 60px;
  border-top: 1px solid var(--color-border);
  margin-top: 20px;
}

.page-nav a {
  text-decoration: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-ink);
  background: var(--color-surface);
  flex: 1;
  min-width: 160px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-nav a:hover {
  border-color: var(--color-lacquer);
  transform: translateY(-2px);
}

.page-nav a.nav-index {
  text-align: center;
  color: var(--color-lacquer-dark);
  flex: 0 0 auto;
}

.page-nav .nav-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-ink-soft);
  font-weight: 700;
  margin-bottom: 3px;
}

.page-nav .nav-next {
  text-align: right;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 26px 0;
  text-align: center;
  color: var(--color-ink-soft);
  font-size: 0.84rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: 10px 20px 18px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    margin: 8px 0;
  }

  .hero, .city-hero {
    min-height: 52vh;
  }

  .page-nav {
    flex-direction: column;
  }

  .page-nav .nav-next {
    text-align: left;
  }
}

/* ===========================================================
   Páginas de detalle de lugar (subcarpetas /cities/<ciudad>/)
   =========================================================== */
.place-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 4px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-lacquer);
  text-decoration: none;
  width: fit-content;
}

.place-card-cta:hover {
  color: var(--color-lacquer-dark);
  text-decoration: underline;
}

.place-card-body h3 a {
  color: inherit;
  text-decoration: none;
}

.place-card-body h3 a:hover {
  color: var(--color-lacquer);
  text-decoration: underline;
}

.detail-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gold-soft);
  margin-bottom: 6px;
}

.detail-info-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.detail-info-box span {
  display: block;
}

.detail-tips {
  margin-top: 10px;
  padding-left: 1.2em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-tips li {
  line-height: 1.55;
}

.detail-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0 8px;
  font-weight: 700;
  color: var(--color-jade);
  text-decoration: none;
}

.detail-back-link:hover {
  color: var(--color-jade-dark);
  text-decoration: underline;
}

/* ===========================================================
   Páginas de detalle de lugares (public/cities/<ciudad>/<lugar>.html)
   =========================================================== */

.place-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-lacquer);
  text-decoration: none;
}

.place-card-cta:hover {
  color: var(--color-lacquer-dark);
  text-decoration: underline;
}

.place-card-body h3 a {
  color: inherit;
  text-decoration: none;
}

.place-card-body h3 a:hover {
  color: var(--color-lacquer);
  text-decoration: underline;
}

/* ---------- Detail hero (lugar individual) ---------- */
.detail-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.detail-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.72) 100%);
  z-index: 1;
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 30px;
  width: 100%;
}

.detail-hero-inner h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  margin-bottom: 6px;
}

.detail-hero-kicker {
  font-weight: 700;
  color: var(--color-gold-soft);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Caja precio/horario en páginas de detalle ---------- */
.detail-infobox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 16px 0 6px;
  box-shadow: var(--shadow-card);
}

.detail-infobox span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-ink-soft);
}

/* ---------- Listas de "Qué ver" y consejos ---------- */
.detail-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.96rem;
}

.detail-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--color-lacquer);
  font-weight: 800;
}

.detail-tips li::before {
  content: "✓";
  color: var(--color-jade);
  font-size: 0.85rem;
  top: 1px;
}

/* ---------- Volver ---------- */
.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 30px 0 10px;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-ink);
}

.detail-back:hover {
  color: var(--color-lacquer);
}

/* ---------- Dirección bilingüe + copiar + Amap ---------- */
.place-address {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin: 10px 0;
  padding: 10px 14px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.place-address .address-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 220px;
  min-width: 0;
}

.place-address .address-en,
.place-address .address-zh {
  color: var(--color-ink-soft);
  overflow-wrap: break-word;
}

.place-address .address-zh {
  color: var(--color-ink);
  font-weight: 600;
}

.address-copy,
.address-amap {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-ink);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.address-copy:hover,
.address-amap:hover {
  border-color: var(--color-lacquer);
  color: var(--color-lacquer);
}

.address-copy.is-copied {
  border-color: var(--color-jade);
  color: var(--color-jade);
}
