/* =============================================  
 * 简游网 - 组件样式
 * JianYou Travel - Components CSS
 * ============================================= */

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* Tools Section */
.tools-section {
  padding: 60px 0;
  background: white;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.tool-card {
  background: var(--bg-secondary);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.tool-card h3 {
  color: var(--primary-color);
  margin-bottom: 24px;
  font-size: 20px;
}

/* Currency Converter - Modern Style */
.currency-converter-modern {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.converter-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.converter-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.converter-amount,
.converter-result {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: white;
}

.converter-amount:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(29, 114, 179, 0.1);
}

.converter-result {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: var(--primary-color);
  cursor: default;
}

.converter-select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 35px;
}

.converter-select:hover {
  border-color: var(--primary-color);
}

.converter-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(29, 114, 179, 0.1);
}

.swap-btn {
  align-self: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: white;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin: -10px 0;
  z-index: 1;
}

.swap-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: rotate(180deg);
  box-shadow: 0 4px 12px rgba(29, 114, 179, 0.3);
}

.swap-btn.swapping {
  animation: swapRotate 0.3s ease;
}

@keyframes swapRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}

.rate-info {
  text-align: center;
  margin-top: 8px;
}

.rate-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.rate-badge.fallback {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  box-shadow: 0 2px 8px rgba(245, 87, 108, 0.3);
}

.update-time {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

.currency-tool h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Timezone Converter */
.timezone-converter {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tz-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tz-time-box {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
}

.tz-time-box:focus-within {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(29, 114, 179, 0.1);
}

.tz-time-box.result {
  cursor: default;
}

.tz-time-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #1d72b3;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
  line-height: 1.4;
}

.tz-date-value {
  display: block;
  font-size: 12px;
  color: #888;
  margin-top: 2px;
  font-weight: 400;
}

.tz-rate-info {
  text-align: center;
  padding-top: 4px;
}

.timezone-tool h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 600px) {
  .tz-time-value {
    font-size: 16px;
  }
}

/* Popular Cities Section */
.popular-cities {
  padding: 60px 0;
}

.popular-cities h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--text-primary);
}

/* China Map Section */
.china-map-section {
  padding: 60px 0;
  background: white;
}

.china-map-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 12px;
}

.china-map-section p {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.provinces-list {
  max-width: 1000px;
  margin: 0 auto;
}

.provinces-grid {
  display: grid;
  gap: 32px;
}

.province-group {
  background: var(--bg-secondary);
  padding: 24px;
  border-radius: var(--radius-lg);
}

.province-group h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 20px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 12px;
}

.province-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.province-item {
  display: block;
  padding: 12px 16px;
  background: white;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  text-align: center;
}

.province-item:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.province-name-en {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.province-item:hover .province-name-en {
  color: rgba(255, 255, 255, 0.8);
}

/* Links Section */
.links {
  padding: 60px 0;
}

.links .card {
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  display: block;
}

.links .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* =============================================  
 * Scenic Cards
 * ============================================= */

.scenic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.scenic-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.scenic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.scenic-link {
  display: block;
  text-decoration: none;
  color: var(--text-primary);
}

.scenic-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.scenic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.scenic-card:hover .scenic-image img {
  transform: scale(1.05);
}

.scenic-type {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
}

.scenic-info {
  padding: 16px;
}

.scenic-info h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.scenic-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.scenic-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.scenic-price {
  color: var(--secondary-color);
  font-weight: 500;
}

.scenic-rating {
  color: var(--accent-color);
  font-weight: 500;
}

/* =============================================  
 * Food Cards
 * ============================================= */

.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.food-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.food-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.food-link {
  display: block;
  text-decoration: none;
  color: var(--text-primary);
}

.food-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #ff9a9e33, #fecfef33);
  display: flex;
  align-items: center;
  justify-content: center;
}

.food-image:has(img[src=""]) img {
  display: none;
}

.food-image:has(img[src=""])::after {
  content: "🍜";
  font-size: 48px;
  opacity: 0.5;
}

.food-image:has(img:not([src])) img {
  display: none;
}

.food-image:has(img:not([src]))::after {
  content: "🍜";
  font-size: 48px;
  opacity: 0.5;
}

.food-image.img-fallback::after {
  content: "🍜";
  font-size: 48px;
  opacity: 0.5;
}

.food-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.food-card:hover .food-image img {
  transform: scale(1.05);
}

.food-type {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--secondary-color);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
}

.food-info {
  padding: 16px;
}

.food-info h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.food-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.food-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.food-price {
  color: var(--secondary-color);
  font-weight: 500;
}

.food-rating {
  color: var(--accent-color);
  font-weight: 500;
}

/* =============================================  
 * Favorite Button
 * ============================================= */

.favorite-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.favorite-btn:hover {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.favorite-btn.active {
  color: var(--secondary-color);
}

.favorite-btn.active svg {
  fill: currentColor;
}

/* =============================================  
 * Section Styles
 * ============================================= */

.section {
  padding: 40px 0;
}

.section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.guide {
  padding: 40px 0;
  line-height: 1.8;
}

.content-section {
  max-width: 1200px;
  margin: 0 auto 30px auto;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  box-sizing: border-box;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.info-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.guide-section {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.guide-section h2 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 24px;
}

.guide-section h3 {
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 18px;
}

.guide-section p {
  margin: 8px 0;
  color: var(--text-secondary);
}

.guide-section a {
  color: var(--primary-color);
  font-weight: 500;
}

.guide-section a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* =============================================  
 * Tab Navigation
 * ============================================= */

.tab-nav {
  display: flex;
  gap: 12px;
  margin: 30px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-nav a {
  background: white;
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  text-decoration: none;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.tab-nav a:hover,
.tab-nav a.active {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* =============================================  
 * Membership Cards
 * ============================================= */

.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.membership-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-light);
  transition: all 0.3s ease;
}

.membership-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.membership-card.current {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #f0f8ff, #ffffff);
}

.membership-card.premium {
  border-color: var(--primary-light);
}

.membership-card.vip {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, #fff9e6, #ffffff);
}

.membership-header {
  margin-bottom: 24px;
}

.membership-header h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.membership-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.membership-price .price {
  font-size: 36px;
  font-weight: bold;
  color: var(--secondary-color);
}

.membership-price .period {
  color: var(--text-secondary);
}

.current-badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  margin-top: 8px;
}

.membership-features {
  list-style: none;
  margin-bottom: 24px;
}

.membership-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}

.membership-features li svg {
  flex-shrink: 0;
  color: var(--primary-color);
}

.membership-card .btn-primary {
  width: 100%;
}

/* =============================================  
 * Utility Components
 * ============================================= */

.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.alert-info {
  background: #e3f2fd;
  color: #1976d2;
  border-left: 4px solid #1976d2;
}

.alert-success {
  background: #e8f5e9;
  color: #388e3c;
  border-left: 4px solid #388e3c;
}

.alert-warning {
  background: #fff3e0;
  color: #f57c00;
  border-left: 4px solid #f57c00;
}

.alert-error {
  background: #ffebee;
  color: #d32f2f;
  border-left: 4px solid #d32f2f;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
}

.badge-primary {
  background: var(--primary-color);
  color: white;
}

.badge-secondary {
  background: var(--secondary-color);
  color: white;
}

.badge-success {
  background: #52c41a;
  color: white;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

/* =============================================  
 * Social Icons
 * ============================================= */

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.social-icon:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.social-icon.wechat {
  background: #07c160;
}

.social-icon.weibo {
  background: #e6162d;
}

.social-icon.facebook {
  background: #1877f2;
}

.social-icon.instagram {
  background: #e4405f;
}

/* =============================================
 * Beijing Detail Pages Styles
 * ============================================= */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 42px;
  margin-bottom: 12px;
  color: white;
}

.page-header p {
  font-size: 18px;
  opacity: 0.9;
}

.bg-light {
  background-color: var(--bg-secondary);
}

/* Filter Bar */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 10px 20px;
  background: white;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: white;
}

/* Attraction Cards */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.attraction-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.attraction-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.attraction-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f4fd 0%, #d6ecfa 100%);
}

.attraction-image:has(img[src=""]) img {
  display: none;
}

.attraction-image:has(img:not([src])) img {
  display: none;
}

.attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.attraction-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
}

.scenic-rank {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 2;
}

.attraction-content {
  padding: 20px;
}

.attraction-content h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.attraction-name-en {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: normal;
  margin-left: 8px;
}

.attraction-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 14px;
}

.attraction-rating {
  color: var(--accent-color);
  font-weight: 500;
}

.attraction-price {
  color: var(--secondary-color);
  font-weight: 500;
}

.attraction-duration {
  color: var(--text-secondary);
}

.attraction-popularity {
  color: #ff6b35;
  font-weight: 500;
  font-size: 12px;
}

.attraction-description {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.attraction-address {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 8px;
}

.attraction-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.attraction-tags .tag {
  background: var(--bg-secondary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-secondary);
}

.attraction-tips {
  background: #f8f9fa;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-secondary);
  border-left: 3px solid var(--primary-color);
}

/* Food Cards Detail */
.food-content {
  padding: 20px;
}

.food-content h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.food-name-en {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: normal;
  margin-left: 8px;
}

.food-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 14px;
}

.food-rating {
  color: var(--accent-color);
  font-weight: 500;
}

.food-price {
  color: var(--secondary-color);
  font-weight: 500;
}

.food-description {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.food-restaurants {
  margin-bottom: 12px;
  font-size: 13px;
}

.restaurant-tag {
  display: inline-block;
  background: var(--bg-secondary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-secondary);
  margin: 4px 4px 0 0;
}

.food-tips {
  background: #f8f9fa;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-secondary);
  border-left: 3px solid var(--secondary-color);
}

/* Restaurant Cards */
.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.restaurant-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  overflow: hidden;
}

.restaurant-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.restaurant-image {
  height: 140px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: -24px -24px 16px -24px;
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.restaurant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-image-placeholder {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #999;
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}

.restaurant-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.restaurant-year {
  color: var(--accent-color);
  font-size: 13px;
  margin-bottom: 12px;
}

.restaurant-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.restaurant-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.restaurant-tags .tag {
  background: #fff8f0;
  color: #c0392b;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
}

.restaurant-info {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.restaurant-address {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.restaurant-address::before {
  content: '📍';
  font-size: 13px;
}

.restaurant-price {
  color: #e74c3c;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.restaurant-price .ref-price {
  color: #e74c3c;
  font-size: 11px;
  font-weight: 400;
}

/* Area Cards */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.area-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.area-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 18px;
}

.area-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.area-card strong {
  color: var(--text-primary);
}

.area-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.area-price {
  color: #e74c3c;
  font-size: 14px;
  font-weight: 500;
}

.area-price .ref-price {
  color: #999;
  font-size: 11px;
  font-weight: 400;
}

/* Hotel Cards */
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.hotel-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hotel-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #e0e7ff, #fce7f3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotel-image::before {
  content: '🏨';
  font-size: 48px;
  position: absolute;
  z-index: 0;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.carousel-container {
  position: relative;
}

.carousel-slides {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0, 0, 0, 0.35);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, background 0.2s ease;
}

.carousel-container:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.carousel-prev {
  left: 8px;
}

.carousel-next {
  right: 8px;
}

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: white;
  transform: scale(1.2);
}

.hotel-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
}

.hotel-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hotel-content h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.hotel-name-en {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: normal;
  margin-left: 8px;
}

.hotel-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 14px;
}

.hotel-rating {
  color: var(--accent-color);
  font-weight: 500;
}

.hotel-price {
  color: var(--secondary-color);
  font-weight: 500;
}

.hotel-description {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.hotel-address {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 8px;
}

.hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
  margin-top: auto;
}

.amenity-tag {
  background: var(--bg-secondary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-secondary);
}

.hotel-tips {
  background: #f8f9fa;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-secondary);
  border-left: 3px solid var(--primary-color);
}

/* Tips Grid Extended */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.tip-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tip-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.tip-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 18px;
}

.tip-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* Route Cards */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.route-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.route-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.route-time {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 14px;
}

.route-list {
  list-style: none;
  padding: 0;
}

.route-list li {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.route-list li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Season Cards */
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.season-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.season-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.season-card.spring {
  border-top: 4px solid #4caf50;
}

.season-card.summer {
  border-top: 4px solid #ff9800;
}

.season-card.autumn {
  border-top: 4px solid #ff5722;
}

.season-card.winter {
  border-top: 4px solid #2196f3;
}

.season-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.season-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.season-badge {
  display: inline-block;
  background: var(--accent-color);
  color: var(--text-primary);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}

.season-weather {
  background: var(--bg-secondary);
  padding: 12px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

.season-weather p {
  margin: 4px 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.season-activities h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.season-activities ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.season-activities li {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.season-activities li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.season-tips h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.season-tips p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

/* Month Cards */
.months-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.month-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
}

.month-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.month-card.highlight {
  border: 2px solid var(--accent-color);
  background: linear-gradient(135deg, #fff9e6, #ffffff);
}

.month-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 20px;
}

.month-season {
  color: var(--secondary-color);
  font-size: 12px;
  margin-bottom: 8px;
  font-weight: 500;
}

.month-card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

/* Event Cards */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.event-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.event-season {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}

.event-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 18px;
}

.event-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 4px;
}

.event-card strong {
  color: var(--text-primary);
}

/* Clothing Cards */
.clothing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.clothing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.clothing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.clothing-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.clothing-card ul {
  list-style: none;
  padding: 0;
}

.clothing-card li {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.clothing-card li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Transport Cards */
.transport-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.transport-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.transport-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.transport-card-header {
  margin-bottom: 16px;
}

.transport-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.transport-card-title h3 {
  color: var(--primary-color);
  margin: 0;
  font-size: 18px;
}

.btn-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.3s;
}

.btn-nav-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(66, 133, 244, 0.4);
}

.btn-nav-icon svg {
  width: 16px;
  height: 16px;
}

.transport-card-header .transport-subtitle {
  color: var(--secondary-color);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 4px 0;
}

.transport-card-header .transport-info {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
}

.transport-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.method {
  background: var(--bg-secondary);
  padding: 12px;
  border-radius: var(--radius-md);
}

.method h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.method p {
  color: var(--text-secondary);
  font-size: 13px;
  margin: 4px 0;
}

.transport-tips {
  background: #f8f9fa;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-secondary);
  border-left: 3px solid var(--primary-color);
}

/* Subway Info */
.subway-info {
  margin-bottom: 32px;
}

.subway-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.stat-item {
  background: white;
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
}

.subway-tips {
  background: white;
  padding: 20px;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.subway-tips h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.subway-tips ul {
  list-style: none;
  padding: 0;
}

.subway-tips li {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.subway-tips li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.popular-routes {
  background: white;
  padding: 20px;
  border-radius: var(--radius-lg);
}

.popular-routes h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 16px;
}

.route-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
}

.route-from,
.route-to {
  flex: 1;
  font-size: 14px;
  color: var(--text-primary);
}

.route-arrow {
  color: var(--text-secondary);
}

.route-detail {
  flex: 2;
  font-size: 13px;
  color: var(--text-secondary);
}

/* Taxi Info */
.taxi-info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 280px));
  gap: 20px;
  justify-content: center;
}

.taxi-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.taxi-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.taxi-card ul {
  list-style: none;
  padding: 0;
}

.taxi-card li {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.taxi-card li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Bus Grid */
.bus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 280px));
  gap: 20px;
  justify-content: center;
}

.bus-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.bus-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.bus-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.bus-card ul {
  list-style: none;
  padding: 0;
}

.bus-card li {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.bus-card li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Station Grid */
.station-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 280px));
  gap: 20px;
  justify-content: center;
}

.station-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.station-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.station-location {
  color: var(--secondary-color);
  font-size: 12px;
  margin-bottom: 12px;
}

.station-card ul {
  list-style: none;
  padding: 0;
}

.station-card li {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.station-card li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Scenic Tips */
.scenic-tips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.scenic-tip-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.scenic-tip-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 18px;
}

.scenic-tip-card ul {
  list-style: none;
  padding: 0;
}

.scenic-tip-card li {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.scenic-tip-card li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Food Tips */
.food-tips {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.food-tip-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.food-tip-item h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.food-tip-item p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* Traffic Tips */
.traffic-tips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.traffic-tip-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.traffic-tip-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.traffic-tip-card ul {
  list-style: none;
  padding: 0;
}

.traffic-tip-card li {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.traffic-tip-card li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Stay Tips */
.stay-tips {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stay-tip-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.stay-tip-item h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.stay-tip-item p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.stay-tip-item strong {
  color: var(--text-primary);
}

/* Life Tips */
.life-tips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.life-tip-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.life-tip-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.life-tip-card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

/* Safety Tips */
.safety-tips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.safety-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.safety-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.safety-card ul {
  list-style: none;
  padding: 0;
}

.safety-card li {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.safety-card li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.safety-card.warning {
  border-left: 4px solid #ff9800;
}

.safety-card.info {
  border-left: 4px solid #2196f3;
}

/* Shopping Tips */
.shopping-tips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.shopping-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.shopping-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.shopping-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.shopping-guide {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 20px;
  box-shadow: var(--shadow-sm);
}

.shopping-guide h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 18px;
}

.shopping-guide ul {
  list-style: none;
  padding: 0;
}

.shopping-guide li {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.shopping-guide li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.shopping-guide strong {
  color: var(--text-primary);
}

/* Metro Lines */
.metro-lines {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metro-line {
  background: white;
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.metro-line h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.line-number {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: bold;
  margin-right: 8px;
}

.metro-line p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  margin: 4px 0;
}

/* Walking Routes */
.walking-routes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.walking-routes .route-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.walking-routes .route-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.walking-routes .route-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 4px 0;
}

.walking-routes .route-card strong {
  color: var(--text-primary);
}

/* Footer Styles */
.site-footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 60px 0 20px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: white;
}

.footer-col p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 14px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--text-light);
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 13px;
}

/* =============================================
 * Season Page Styles
 * ============================================= */

/* Climate Overview */
.climate-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.climate-stat {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: #1a1a2e;
  padding: 24px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.stat-icon {
  font-size: 40px;
}

.stat-info h3 {
  font-size: 14px;
  margin-bottom: 4px;
  opacity: 0.8;
}

.stat-value {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 2px;
}

.stat-desc {
  font-size: 12px;
  opacity: 0.7;
}

/* Climate Alert Box */
.climate-alert-box {
  background: #fff3e0;
  border-left: 4px solid #ff9800;
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}

.climate-alert-box h3 {
  color: #f57c00;
  margin-bottom: 12px;
  font-size: 18px;
}

.climate-alert-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.climate-alert-box li {
  color: #5d4037;
  font-size: 14px;
  line-height: 1.8;
  padding-left: 24px;
  position: relative;
}

.climate-alert-box li:before {
  content: "⚠️";
  position: absolute;
  left: 0;
  top: 0;
}

/* Season Details */
.season-details {
  margin-bottom: 16px;
}

.season-details h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.season-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.season-details li {
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 4px;
}

.season-details li strong {
  color: var(--text-primary);
}

.season-details .detail-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 8px;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.06);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.season-details .detail-item:last-child {
  border-bottom: none;
}

.season-details .detail-item .detail-icon {
  grid-column: 1;
  font-size: 16px;
}

.season-details .detail-item strong {
  grid-column: 2;
  color: var(--text-primary);
  font-size: 13px;
}

.season-details .detail-item span {
  grid-column: 2;
  font-size: 13px;
  color: var(--text-secondary);
}

.season-tips {
  background: #fff3e0;
  padding: 12px;
  border-radius: var(--radius-md);
  margin-top: 12px;
}

.season-tips h4 {
  color: #f57c00;
  margin-bottom: 8px;
  font-size: 13px;
}

.season-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.season-tips li {
  color: #5d4037;
  font-size: 12px;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.season-tips li:before {
  content: "💡";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 11px;
}

/* Origin Clothing Guide */
.clothing-origin {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.clothing-origin h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 24px;
}

.origin-tip {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 14px;
}

.origins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.origin-card {
  background: var(--bg-secondary);
  padding: 24px;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--primary-color);
}

.origin-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.origin-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.origin-desc {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 13px;
}

.origin-clothing h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.origin-clothing ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.origin-clothing li {
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 4px;
  padding-left: 20px;
  position: relative;
}

.origin-clothing li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Clothing Tips */
.clothing-tips {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  margin-top: 32px;
  box-shadow: var(--shadow-sm);
}

.clothing-tips h3 {
  color: var(--primary-color);
  margin-bottom: 24px;
  font-size: 20px;
  text-align: center;
}

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

.tip-card {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary-color);
}

.tip-card h4 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.tip-card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin: 4px 0;
}

/* Month Temperature */
.month-temp {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 12px;
}

.month-tips {
  color: #4caf50;
  font-size: 11px;
  line-height: 1.4;
  margin: 4px 0;
}

.month-tips:before {
  content: "";
  margin-right: 4px;
}

/* Event Cards with Navigation */
.event-card.spring-event {
  border-top: 4px solid #4caf50;
}

.event-card.summer-event {
  border-top: 4px solid #ff9800;
}

.event-card.autumn-event {
  border-top: 4px solid #ff5722;
}

.event-card.winter-event {
  border-top: 4px solid #2196f3;
}

.btn-navigate-sm {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: 12px;
  transition: all 0.3s ease;
}

.btn-navigate-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Month Summary */
.month-summary {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  margin-top: 32px;
  box-shadow: var(--shadow-sm);
}

.month-summary h3 {
  color: var(--primary-color);
  margin-bottom: 24px;
  font-size: 20px;
  text-align: center;
}

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

.summary-card {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
}

.summary-card h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.summary-card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin: 4px 0;
}

/* =============================================
 * Travel Tips Page Styles
 * ============================================= */

/* Quick Navigation */
.quick-nav {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

.quick-nav h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 18px;
}

.quick-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-nav-link {
  background: var(--bg-secondary);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.3s ease;
}

.quick-nav-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Preparation Checklist */
.preparation-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* 新版行前准备样式 - 重排版版本 */
.prep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .prep-grid {
    grid-template-columns: 1fr;
  }
}

.prep-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prep-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.prep-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  position: relative;
}

.prep-card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.documents-theme { background: linear-gradient(135deg, #E8F5E9, #F1F8E9); }
.documents-theme::after { background: linear-gradient(90deg, #4CAF50, #81C784); }

.apps-theme { background: linear-gradient(135deg, #E3F2FD, #E8EAF6); }
.apps-theme::after { background: linear-gradient(90deg, #2196F3, #64B5F6); }

.luggage-theme { background: linear-gradient(135deg, #FFF3E0, #FFF8E1); }
.luggage-theme::after { background: linear-gradient(90deg, #FF9800, #FFB74D); }

.finance-theme { background: linear-gradient(135deg, #F3E5F5, #FCE4EC); }
.finance-theme::after { background: linear-gradient(90deg, #9C27B0, #BA68C8); }

.prep-card-icon {
  font-size: 36px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

.prep-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.prep-card-badge {
  display: inline-block;
  font-size: 11px;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.6);
  padding: 2px 10px;
  border-radius: 10px;
  margin-top: 4px;
}

.prep-card-body {
  padding: 16px 24px;
}

.prep-item {
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
}

.prep-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.prep-checkbox {
  display: none;
}

.prep-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 6px 0;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.prep-label:hover {
  background: var(--bg-secondary);
}

.prep-checkbox-custom {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  background: white;
  position: relative;
  transition: all 0.2s ease;
  margin-top: 1px;
}

.prep-checkbox-custom::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}

.prep-checkbox:checked + .prep-label .prep-checkbox-custom {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.prep-checkbox:checked + .prep-label .prep-checkbox-custom::after {
  transform: rotate(45deg) scale(1);
}

.prep-checkbox:checked + .prep-label .prep-name {
  text-decoration: line-through;
  color: var(--text-secondary);
}

.prep-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.prep-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
}

.prep-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.prep-links {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.prep-link {
  display: inline-block;
  padding: 2px 10px;
  font-size: 11px;
  color: var(--primary-color);
  background: #E3F2FD;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.prep-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-1px);
}

/* Progress Bar */
.prep-progress {
  padding: 14px 24px 20px;
  border-top: 1px solid var(--border-light);
}

.prep-bar-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.prep-bar {
  flex: 1;
  height: 8px;
  background: var(--bg-secondary);
  border-radius: 4px;
  overflow: hidden;
}

.prep-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 4px;
  transition: width 0.35s ease;
}

.prep-bar-text {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  min-width: 72px;
  text-align: right;
}

.preparation-header {
  text-align: center;
  margin-bottom: 40px;
}

.preparation-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  margin-top: 8px;
}

.preparation-checklist-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.preparation-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.preparation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.preparation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.documents-card::before {
  background: linear-gradient(90deg, #4CAF50, #81C784);
}

.apps-card::before {
  background: linear-gradient(90deg, #2196F3, #64B5F6);
}

.luggage-card::before {
  background: linear-gradient(90deg, #FF9800, #FFB74D);
}

.finance-card::before {
  background: linear-gradient(90deg, #9C27B0, #BA68C8);
}

.card-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.card-title {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.checklist-items {
  margin-bottom: 24px;
}

.check-item-new {
  margin-bottom: 16px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  transition: background 0.2s ease;
}

.check-item-new:hover {
  background: var(--bg-tertiary);
}

.check-item-new:last-child {
  margin-bottom: 0;
}

.custom-checkbox {
  display: none;
}

.check-item-new label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding-left: 36px;
  position: relative;
}

.check-item-new label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  background: white;
  transition: all 0.2s ease;
}

.check-item-new label::after {
  content: '✓';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.custom-checkbox:checked + label::before {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.custom-checkbox:checked + label::after {
  opacity: 1;
}

.item-name {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  flex: 1;
}

.item-desc {
  color: var(--text-secondary);
  font-size: 13px;
  background: var(--bg-primary);
  padding: 4px 10px;
  border-radius: 12px;
}

.download-links {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.download-link {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.download-link:hover {
  background: var(--accent-color);
  transform: translateY(-1px);
}

.nav-link-sm {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 11px;
  background: #E3F2FD;
  color: #1976D2;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.nav-link-sm:hover {
  background: #BBDEFB;
  transform: translateY(-1px);
}

.card-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.progress-bar {
  flex: 1;
  height: 8px;
  background: var(--bg-secondary);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 4px;
}

.progress-text {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  min-width: 40px;
  text-align: right;
}

.preparation-tips {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.preparation-tips h3 {
  color: var(--text-primary);
  font-size: 20px;
  margin-bottom: 24px;
  text-align: center;
}

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

.tip-item {
  padding: 20px;
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  border-radius: var(--radius-lg);
  text-align: center;
}

.tip-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.tip-item h4 {
  color: var(--text-primary);
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.tip-item p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* Alert Box */
.alert-box {
  padding: 20px;
  border-radius: var(--radius-lg);
  margin: 24px 0;
}

.alert-box.warning {
  background: #fff3e0;
  border-left: 4px solid #ff9800;
}

.alert-box.info {
  background: #e3f2fd;
  border-left: 4px solid #2196f3;
}

.alert-box h4 {
  margin-bottom: 12px;
  font-size: 16px;
}

.alert-box.warning h4 {
  color: #f57c00;
}

.alert-box.info h4 {
  color: #1976d2;
}

.alert-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.alert-box li {
  font-size: 14px;
  line-height: 1.8;
  padding-left: 24px;
  position: relative;
}

.alert-box li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Scenic Guide Cards */
.scenic-guides {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.scenic-guide-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.scenic-guide-card:hover {
  box-shadow: var(--shadow-lg);
}

.guide-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, var(--bg-secondary), white);
  border-bottom: 2px solid var(--border-light);
}

.guide-icon {
  font-size: 40px;
}

.guide-title {
  flex: 1;
}

.guide-title h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 4px;
}

.guide-rating {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

.guide-content {
  padding: 20px;
}

.guide-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.guide-info {
  font-size: 13px;
  color: var(--text-secondary);
}

.guide-info strong {
  color: var(--text-primary);
}

.guide-tips,
.guide-route,
.guide-transport {
  margin-bottom: 16px;
}

.guide-tips h4,
.guide-route h4,
.guide-transport h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.guide-tips ul,
.guide-transport ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-tips li,
.guide-transport li {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 4px;
  padding-left: 20px;
  position: relative;
}

.guide-tips li:before,
.guide-transport li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.guide-route p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

/* Food Guide */
.food-guide-section {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.food-guide-section h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 18px;
}

.food-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.food-item {
  padding: 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--secondary-color);
}

.food-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.food-item-header h4 {
  color: var(--primary-color);
  font-size: 16px;
  margin: 0;
}

.food-price {
  color: #e74c3c;
  font-weight: 500;
  font-size: 14px;
}

.food-price .ref-price {
  color: #e74c3c;
  font-size: 11px;
  font-weight: 400;
}

.food-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.food-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.food-tip {
  background: white;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-secondary);
}

/* Snacks Grid */
.snacks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.snack-item {
  background: var(--bg-secondary);
  padding: 16px;
  border-radius: var(--radius-md);
  text-align: center;
}

.snack-item h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.snack-price {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}

.snack-desc {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.snack-warning {
  display: inline-block;
  background: #fff3e0;
  color: #f57c00;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
}

.snack-tag {
  display: inline-block;
  background: #e8f5e9;
  color: #388e3c;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
}

/* Snack Areas */
.snack-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.snack-area {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: var(--radius-md);
}

.snack-area h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.snack-area p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Transport Guide */
.transport-guide {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.transport-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.transport-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--bg-secondary), white);
  border-bottom: 1px solid var(--border-light);
}

.transport-icon {
  font-size: 32px;
}

.transport-header h3 {
  color: var(--primary-color);
  font-size: 18px;
  margin: 0;
  flex: 1;
}

.transport-badge {
  background: var(--accent-color);
  color: var(--text-primary);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
}

.transport-content {
  padding: 20px;
}

.transport-info {
  background: var(--bg-secondary);
  padding: 12px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.transport-info p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin: 4px 0;
}

.transport-info strong {
  color: var(--text-primary);
}

.transport-tips,
.transport-lines,
.transport-transport,
.transport-warning {
  margin-bottom: 16px;
}

.transport-tips h4,
.transport-lines h4,
.transport-transport h4,
.transport-warning h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.transport-tips ul,
.transport-lines ul,
.transport-transport ul,
.transport-warning ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.transport-tips li,
.transport-lines li,
.transport-transport li,
.transport-warning li {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 4px;
  padding-left: 20px;
  position: relative;
}

.transport-tips li:before,
.transport-lines li:before,
.transport-transport li:before,
.transport-warning li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.transport-warning {
  background: #fff3e0;
  padding: 12px;
  border-radius: var(--radius-md);
}

.transport-warning h4 {
  color: #f57c00;
}

.transport-warning li {
  color: #5d4037;
}

/* Stay Guide */
.stay-guide {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stay-section h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 20px;
}

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

.area-card {
  background: white;
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.area-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.area-badge {
  display: inline-block;
  background: var(--accent-color);
  color: var(--text-primary);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 8px;
}

.area-card h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.area-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.area-tag {
  background: var(--bg-secondary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-secondary);
}

.area-attractions {
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.area-attractions p {
  color: var(--text-secondary);
  font-size: 13px;
  margin: 0;
}

.area-attractions strong {
  color: var(--primary-color);
}

/* Price Grid */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.price-card {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.price-card h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.price-range {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 12px;
}

.price-card p {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 12px;
}

.price-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.price-features li {
  color: var(--text-secondary);
  font-size: 12px;
  margin-bottom: 6px;
  padding-left: 20px;
  position: relative;
}

.price-features li:before {
  content: "✓";
  color: #4caf50;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Booking Platforms */
.booking-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.platform-card {
  background: var(--bg-secondary);
  padding: 16px;
  border-radius: var(--radius-md);
  text-align: center;
}

.platform-card h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.platform-card p {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 8px;
}

.platform-tag {
  display: inline-block;
  background: var(--accent-color);
  color: var(--text-primary);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
}

.booking-tips {
  background: white;
  padding: 20px;
  border-radius: var(--radius-lg);
}

.booking-tips h4 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 16px;
}

.booking-tips ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-tips li {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.booking-tips li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Life Info Grid */
.life-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.life-info-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.life-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.life-info-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 18px;
}

.life-info-card > p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 14px;
}

.life-detail {
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.life-detail h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.life-detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.life-detail li {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 4px;
  padding-left: 20px;
  position: relative;
}

.life-detail li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.life-detail li strong {
  color: var(--text-primary);
}

/* Foreign Guide */
.foreign-guide {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.foreign-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.foreign-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--bg-secondary), white);
  border-bottom: 1px solid var(--border-light);
}

.foreign-icon {
  font-size: 32px;
}

.foreign-header h3 {
  color: var(--primary-color);
  font-size: 18px;
  margin: 0;
}

.foreign-content {
  padding: 20px;
}

.foreign-content h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.foreign-content h4:first-child {
  padding-top: 0;
  border-top: none;
}

.foreign-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.foreign-content li {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 4px;
  padding-left: 20px;
  position: relative;
}

.foreign-content li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.foreign-content li strong {
  color: var(--text-primary);
}

/* Emergency Section */
.emergency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.emergency-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.emergency-card.important {
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  color: white;
}

.emergency-card.important .emergency-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.emergency-card.important h3 {
  color: white;
}

.emergency-card.important .emergency-item .number {
  background: white;
  color: #ff6b6b;
}

.emergency-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.emergency-card h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.emergency-note {
  color: var(--text-secondary);
  font-size: 12px;
  margin-bottom: 16px;
}

.emergency-numbers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.emergency-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}

/* =============================================
 * Like Button Styles
 * ============================================= */

.like-btn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 5px 12px;
  border: none;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 13px;
  color: #888;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  user-select: none;
  -webkit-user-select: none;
  position: relative;
  overflow: visible;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.like-btn:hover {
  background: rgba(255, 230, 230, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(231, 76, 60, 0.12);
}

.like-btn.liked {
  background: rgba(255, 240, 240, 0.95);
  box-shadow: 0 2px 10px rgba(231, 76, 60, 0.18);
}

.like-btn .like-label {
  font-size: 12px;
  color: #aaa;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.like-btn.liked .like-label {
  color: #e74c3c;
  font-weight: 500;
}

.like-btn.liked .like-icon {
  color: #e74c3c;
}

.like-btn.liked .like-count {
  color: #e74c3c;
  font-weight: 600;
}

.like-btn .like-icon {
  font-size: 15px;
  color: #ccc;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
}

.like-btn:hover .like-icon {
  color: #e74c3c;
}

.like-btn:hover .like-label {
  color: #e74c3c;
}

.like-btn.liked .like-icon {
  animation: likePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes likePop {
  0% { transform: scale(1); }
  30% { transform: scale(1.4); }
  60% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.like-btn .like-count {
  color: #999;
  font-weight: 500;
  font-size: 12px;
  transition: all 0.3s ease;
}

.like-btn-sm {
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 14px;
}

.like-btn-sm .like-icon {
  font-size: 14px;
}

.like-btn-sm .like-label {
  font-size: 11px;
}

.like-btn-sm .like-count {
  font-size: 11px;
}

.like-btn:active {
  transform: scale(0.92);
}

/* Positioning variations */
.card-likes {
  display: flex;
  align-items: center;
  gap: 12px;
}

.emergency-item .number {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
}

.emergency-item .label {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: right;
}

.emergency-desc {
  color: var(--text-secondary);
  font-size: 12px;
  margin-top: 12px;
}

.emergency-tips {
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.emergency-tips h4 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 18px;
}

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

.emergency-tip {
  background: var(--bg-secondary);
  padding: 16px;
  border-radius: var(--radius-md);
}

.emergency-tip h5 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.emergency-tip ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.emergency-tip li {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 4px;
  padding-left: 20px;
  position: relative;
}

.emergency-tip li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.content-section {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.attraction-hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.attraction-hero p {
  font-size: 18px;
  opacity: 0.9;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.food-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  color: white;
}

.food-badge.must-try {
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
}

.food-badge.traditional {
  background: linear-gradient(135deg, #f39c12, #e67e22);
}

.food-badge.snack {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

.food-badge.special {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.food-badge.local-flavor {
  background: linear-gradient(135deg, #27ae60, #219a52);
}

.food-rank {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #ff9800, #f57c00);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 2;
}

.hotel-badge.luxury, .hotel-badge.badge-luxury {
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: white;
}

.hotel-badge.high-end, .hotel-badge.badge-high-end {
  background: linear-gradient(135deg, #1d72b3, #155a91);
  color: white;
}

.hotel-badge.boutique, .hotel-badge.badge-boutique {
  background: linear-gradient(135deg, #e91e63, #c2185b);
  color: white;
}

.hotel-badge.budget, .hotel-badge.badge-budget {
  background: linear-gradient(135deg, #4caf50, #388e3c);
  color: white;
}

.hotel-badge.economy, .hotel-badge.badge-economy {
  background: linear-gradient(135deg, #9e9e9e, #757575);
  color: white;
}

.map-section {
  padding: 40px 0;
}

.map-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

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

.map-link-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  border-left: 4px solid var(--primary-color);
}

.map-link-card:hover {
  border-left-color: var(--primary-dark);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.map-link-card h4 {
  color: var(--text-primary);
  margin-bottom: 12px;
  font-size: 18px;
}

.map-link-card p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.map-link-card .btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary-color);
  color: white;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
  margin-right: 8px;
  margin-bottom: 8px;
}

.map-link-card .btn:hover {
  background: var(--primary-dark);
}

.map-link-card .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.attraction-map {
  display: grid;
  gap: 15px;
}

.attraction-map-item {
  background: white;
  border-left: 4px solid var(--primary-color);
  padding: 15px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.attraction-map-item h4 {
  margin-bottom: 8px;
  color: var(--text-primary);
}

.attraction-map-item p {
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: 14px;
}

.attraction-map-item .metro-info {
  background: #e3f2fd;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: #1976d2;
}

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

.hub-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 20px;
  border-top: 3px solid #28a745;
}

.hub-card h4 {
  margin-bottom: 10px;
  color: var(--text-primary);
}

.hub-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.prepare-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.prepare-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
  font-weight: 700;
}

.prepare-hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

.section-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid #667eea;
}

.section-card h2 {
  font-size: 24px;
  color: #667eea;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-card h3 {
  font-size: 18px;
  color: var(--text-primary);
  margin: 20px 0 12px;
  font-weight: 600;
}

.section-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.section-card ul {
  list-style: none;
  padding-left: 0;
}

.section-card li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.section-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

.section-card li.warning::before {
  content: "⚠";
}

.section-card li.important::before {
  content: "!";
  font-weight: bold;
}

.highlight-box {
  background: #f8f9fa;
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid #ffc107;
}

.highlight-box h4 {
  color: #856404;
  margin-bottom: 12px;
  font-size: 16px;
}

.highlight-box p {
  color: #856404;
  margin-bottom: 8px;
}

.highlight-box a {
  color: #667eea;
  font-weight: 500;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.app-item {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.app-item .icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.app-item h4 {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.app-item p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
}

.payment-methods {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.payment-badge {
  display: inline-block;
  background: #28a745;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.payment-badge:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.payment-badge.secondary {
  background: #6c757d;
}

.visa-info {
  background: linear-gradient(135deg, #fff3cd 0%, #ffe8a1 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 20px 0;
}

.visa-info h4 {
  color: #856404;
  margin-bottom: 16px;
  font-size: 18px;
}

.visa-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.visa-table th,
.visa-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.visa-table th {
  background: #667eea;
  color: white;
  font-weight: 600;
}

.visa-table tr:hover {
  background: var(--bg-secondary);
}

.back-to-top.visible {
  display: flex !important;
}

.hero-banner a {
  transition: transform 0.3s ease;
}

.hero-banner a:hover {
  transform: scale(1.05);
}

.btn-navigate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-navigate:hover {
  background: linear-gradient(135deg, #3367d6, #2d9e3e);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.btn-book {
  padding: 10px 15px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-book:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 114, 179, 0.3);
}

.btn-ctrip {
  padding: 10px 15px;
  background: linear-gradient(135deg, #e63946, #dc2626);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-ctrip:hover {
  background: linear-gradient(135deg, #c53030, #b22222);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.btn-booking {
  padding: 10px 15px;
  background: linear-gradient(135deg, #003580, #0055a5);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-booking:hover {
  background: linear-gradient(135deg, #00296b, #004488);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 53, 128, 0.3);
}

.btn-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-book-international {
  padding: 10px 15px;
  background: #1a1a1a;
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-book-international:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.transport-subtitle {
  color: var(--secondary-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.method .price {
  color: #e74c3c;
  font-weight: 600;
}

.ref-price {
  color: #e74c3c;
  font-size: 11px;
  font-weight: 400;
  margin-right: 2px;
}

.quick-tips {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  margin-top: 40px;
}

.quick-tips h3 {
  margin: 0 0 20px;
  font-size: 1.5rem;
  text-align: center;
}

.quick-tips .tip-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.quick-tips .tip-item h4 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.quick-tips .tip-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.95;
}

.language-tips {
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  margin-top: 30px;
  box-shadow: var(--shadow-sm);
}

.language-tips h3 {
  margin: 0 0 20px;
  font-size: 1.4rem;
  color: var(--text-primary);
  text-align: center;
}

.lang-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 320px));
  gap: 20px;
  justify-content: center;
}

.lang-card {
  background: var(--bg-secondary);
  padding: 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
}

.lang-card h4 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--text-primary);
}

.lang-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.food-info-box {
  background: var(--bg-secondary);
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  border-left: 3px solid var(--secondary-color);
}

.food-info-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.food-info-content {
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hotel-stars {
  color: #f39c12;
  font-weight: bold;
}

.hotel-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 15px;
}

.station-nav {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--border-light);
}

/* Card Pagination */
.card-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 0 8px;
  flex-wrap: wrap;
}

.card-pagination .card-page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--border-color, #e0e0e0);
  background: white;
  border-radius: var(--radius-md, 8px);
  cursor: pointer;
  font-size: 14px;
  color: var(--text-primary, #333);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card-pagination .card-page-btn:hover:not(:disabled) {
  background: var(--primary-color, #1d72b3);
  color: white;
  border-color: var(--primary-color, #1d72b3);
}

.card-pagination .card-page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.card-pagination .card-page-btn.active {
  background: var(--primary-color, #1d72b3);
  color: white;
  border-color: var(--primary-color, #1d72b3);
  font-weight: 600;
}

.card-pagination .card-page-info {
  margin-left: 12px;
  font-size: 13px;
  color: var(--text-secondary, #888);
}

.card-pagination .card-page-ellipsis {
  padding: 0 4px;
  color: var(--text-secondary, #888);
  font-size: 14px;
}

.card-pagination-wrapper {
  display: none;
}

.card-pagination-wrapper.visible {
  display: block;
}