
/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, Helvetica, sans-serif; font-size: 15px; color: #333; line-height: 1.7; background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: #2a6ebb; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== WRAPPER ===== */
.cgt-wrap { max-width: 900px; margin: 0 auto; padding: 30px 20px 60px; }

/* ===== HERO HEADER ===== */
.cgt-hero { background: linear-gradient(135deg, #c0392b 0%, #e74c3c 40%, #c0392b 100%); color: #fff; border-radius: 8px; padding: 40px 36px 36px; margin-bottom: 36px; position: relative; overflow: hidden; }
.cgt-hero::before { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; background: rgba(255,255,255,0.07); border-radius: 50%; }
.cgt-hero-badge { display: inline-block; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.4); border-radius: 20px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 14px; margin-bottom: 14px; }
.cgt-hero h1 { font-size: 32px; font-weight: 800; line-height: 1.2; margin-bottom: 10px; }
.cgt-hero-sub { font-size: 16px; opacity: 0.9; margin-bottom: 24px; }
.cgt-hero-meta { display: flex; flex-wrap: wrap; gap: 20px; }
.cgt-hero-meta-item { display: flex; align-items: center; gap: 7px; font-size: 14px; }
.cgt-hero-meta-item .icon { width: 18px; height: 18px; fill: rgba(255,255,255,0.8); flex-shrink: 0; }
.cgt-price-box { margin-top: 24px; display: inline-block; background: rgba(0,0,0,0.25); border-radius: 8px; padding: 14px 24px; }
.cgt-price-from { font-size: 12px; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; }
.cgt-price-value { font-size: 34px; font-weight: 800; }
.cgt-price-note { font-size: 12px; opacity: 0.75; }

/* ===== SECTION TITLE ===== */
.cgt-section-title { font-size: 20px; font-weight: 700; color: #1a1a1a; border-left: 4px solid #c0392b; padding-left: 12px; margin: 36px 0 18px; }

/* ===== DESCRIPTION ===== */
.cgt-desc { background: #f9f9f9; border-radius: 8px; padding: 20px 24px; font-size: 15px; color: #444; line-height: 1.8; border-left: 4px solid #e74c3c; margin-bottom: 10px; }

/* ===== ITINERARY ===== */
.cgt-itinerary { border: 1px solid #e8e8e8; border-radius: 8px; overflow: hidden; }
.cgt-day { border-bottom: 1px solid #ececec; }
.cgt-day:last-child { border-bottom: none; }
.cgt-day-header { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: #fff; cursor: default; }
.cgt-day-num { background: #c0392b; color: #fff; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 5px; padding: 5px 10px; white-space: nowrap; flex-shrink: 0; }
.cgt-day-title { font-size: 15px; font-weight: 700; color: #1a1a1a; flex: 1; }
.cgt-day-cities { font-size: 12px; color: #888; white-space: nowrap; }
.cgt-day-body { padding: 4px 20px 20px 44px; }
.cgt-day-meal { display: inline-flex; align-items: center; gap: 5px; background: #fff8e1; border: 1px solid #ffe082; border-radius: 20px; font-size: 12px; color: #7a5c00; padding: 3px 12px; margin-bottom: 12px; }
.cgt-day-p { font-size: 14px; color: #444; margin-bottom: 10px; line-height: 1.75; }
.cgt-day-spots { list-style: none; padding: 0; }
.cgt-day-spots li { position: relative; padding-left: 22px; font-size: 14px; color: #333; margin-bottom: 8px; }
.cgt-day-spots li::before { content: '▶'; position: absolute; left: 0; color: #c0392b; font-size: 10px; top: 3px; }
.cgt-day-spots li strong { color: #1a1a1a; }
.cgt-day-hotel { display: flex; align-items: center; gap: 6px; background: #f0f4ff; border-radius: 5px; padding: 7px 12px; font-size: 13px; color: #2a4ea6; margin-top: 10px; }
.cgt-tip { background: #fffde7; border: 1px dashed #f9ca24; border-radius: 6px; padding: 10px 14px; font-size: 13px; color: #555; margin-top: 10px; }
.cgt-tip strong { color: #b7850a; }

/* ===== DAY IMAGES — FIXED SIZE ===== */
.cgt-day-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}
.cgt-day-img {
  width: 280px;      /* 固定宽度 */
  height: 175px;     /* 固定高度 */
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.cgt-day-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}
.cgt-day-img-placeholder {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  border: 2px dashed #ccc;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #999;
}

/* ===== INCLUDES / EXCLUDES ===== */
.cgt-inex-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .cgt-inex-grid { grid-template-columns: 1fr; } }
.cgt-inex-box { border-radius: 8px; padding: 20px; }
.cgt-inex-box.included { background: #f0fff4; border: 1px solid #a8d5b5; }
.cgt-inex-box.excluded { background: #fff5f5; border: 1px solid #f5c6c6; }
.cgt-inex-box h3 { font-size: 14px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.cgt-inex-box.included h3 { color: #1e7e3e; }
.cgt-inex-box.excluded h3 { color: #c0392b; }
.cgt-inex-list { list-style: none; padding: 0; }
.cgt-inex-list li { font-size: 13px; color: #444; padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; align-items: flex-start; gap: 8px; }
.cgt-inex-list li:last-child { border-bottom: none; }
.cgt-inex-list li .tick { font-size: 14px; flex-shrink: 0; margin-top: 1px; }

/* ===== OPTIONAL ADD-ONS ===== */
.cgt-addon-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.cgt-addon-list li { background: #fafafa; border: 1px solid #e0e0e0; border-radius: 7px; padding: 12px 14px; font-size: 13px; color: #444; display: flex; align-items: center; gap: 8px; }
.cgt-addon-list li::before { content: '＋'; font-size: 16px; color: #c0392b; font-weight: 700; }

/* ===== WHY CHOOSE ===== */
.cgt-why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; }
.cgt-why-card { background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 18px 16px; text-align: center; box-shadow: 0 2px 6px rgba(0,0,0,0.05); }
.cgt-why-card .cgt-why-icon { font-size: 28px; margin-bottom: 10px; }
.cgt-why-card h4 { font-size: 13px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
.cgt-why-card p { font-size: 12px; color: #666; line-height: 1.6; }

/* ===== CTA ===== */
.cgt-cta { background: linear-gradient(135deg, #c0392b, #e74c3c); border-radius: 10px; padding: 32px 28px; text-align: center; color: #fff; margin-top: 40px; }
.cgt-cta h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.cgt-cta p { font-size: 14px; opacity: 0.9; margin-bottom: 22px; }
.cgt-cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.cgt-btn { display: inline-block; padding: 13px 30px; border-radius: 6px; font-size: 15px; font-weight: 700; cursor: pointer; transition: opacity 0.2s; }
.cgt-btn:hover { opacity: 0.88; text-decoration: none; }
.cgt-btn-primary { background: #fff; color: #c0392b; }
.cgt-btn-secondary { background: rgba(255,255,255,0.15); color: #fff; border: 2px solid rgba(255,255,255,0.6); }

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .cgt-hero h1 { font-size: 22px; }
  .cgt-price-value { font-size: 26px; }
  .cgt-hero-meta { gap: 12px; }
  .cgt-day-body { padding-left: 20px; }
  .cgt-highlights { grid-template-columns: repeat(2, 1fr); }
  .cgt-day-img-grid { grid-template-columns: repeat(3, 1fr); }
  .cgt-day-img { width: 100%; height: 120px; }
}
