/* ══════════════════════════════════════════════
   DAY TOUR LAYOUT — dt- prefixed classes
   Loaded conditionally for tours with duration ≤ 24h
   ══════════════════════════════════════════════ */

/* ── TOKENS ── */
.tour-page-v3 {
  --dt-amber: #FBA504;
  --dt-amber-bg: #FEF3C7;
  --dt-amber-deep: #92400E;
  --dt-green: #16a34a;
  --dt-green-bg: #dcfce7;
  --dt-red: #ef4444;
  --dt-navy: #1A4B89;
  --dt-warm-white: #F7F4EF;
  --dt-r: 10px;
}

/* ── SECTION PATTERN ── */
.dt-section { padding: 36px 0; border-bottom: 1px solid var(--border, #e5e7eb); }
.dt-section:first-child { padding-top: 0; }
.dt-section:last-child { border-bottom: none; }
.dt-sec-label {
  font-size: 10px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--dt-amber);
  display: block; margin-bottom: 6px;
}
.dt-sec-title {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: 24px; font-weight: 600; color: var(--fg, #1C1C1C);
  margin-bottom: 20px; line-height: 1.2;
}

/* ── 0. TITLE BLOCK ── */
.dt-title-block { padding: 0 0 28px; }
.dt-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--dt-amber); margin-bottom: 8px;
}
.dt-title {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: 32px; font-weight: 600; line-height: 1.15;
  color: var(--fg, #1C1C1C); max-width: 700px; margin-bottom: 12px;
}
.dt-meta-row {
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap; font-size: 13px; color: var(--fg-muted, #6b7280);
}
.dt-stars { color: var(--dt-amber); font-size: 14px; letter-spacing: 1px; }
.dt-rating-num { font-weight: 700; color: var(--fg, #1C1C1C); }
.dt-meta-dot { color: #d1d5db; }
.dt-tag {
  background: var(--bg-soft, #f9fafb); border: 1px solid var(--border, #e5e7eb);
  border-radius: 4px; padding: 2px 8px; font-size: 11px;
  font-weight: 600; color: var(--fg-muted, #6b7280);
}
.dt-tag.private { background: var(--dt-amber-bg); border-color: #fde68a; color: var(--dt-amber-deep); }
.dt-tag.unesco { background: #eff6ff; border-color: #bfdbfe; color: var(--dt-navy); }

/* ── 1. HIGHLIGHTS ── */
.dt-hl-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.dt-hl-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; border: 1px solid var(--border, #e5e7eb);
  border-radius: var(--dt-r); background: var(--bg-soft, #f9fafb);
  transition: border-color .18s;
}
.dt-hl-card:hover { border-color: #d1d5db; }
.dt-hl-ico {
  width: 40px; height: 40px; border-radius: 9px;
  background: #fff; border: 1px solid var(--border, #e5e7eb);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dt-hl-ico svg {
  width: 17px; height: 17px; stroke: var(--dt-amber);
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.dt-hl-name { font-size: 14px; font-weight: 600; color: var(--fg, #1C1C1C); margin-bottom: 2px; }
.dt-hl-desc { font-size: 12.5px; color: var(--fg-muted, #6b7280); line-height: 1.55; font-weight: 300; }

/* ── 2. OVERVIEW ── */
.dt-overview-body { font-size: 15px; color: #444; line-height: 1.8; font-weight: 300; }
.dt-overview-body p { margin-bottom: 14px; }
.dt-overview-body p:last-child { margin-bottom: 0; }
.dt-overview-body p:empty { display: none; }
.dt-overview-body * { font-family: var(--font-body, 'Poppins', system-ui, sans-serif) !important; }
.dt-overview-clamp { overflow: hidden; transition: max-height .4s ease; }
.dt-read-more-btn {
  margin-top: 14px; display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600; color: var(--dt-navy);
  border: 1.5px solid var(--border, #e5e7eb); border-radius: 7px;
  padding: 8px 16px; background: none; cursor: pointer;
  font-family: var(--font-body, 'Poppins', sans-serif);
  transition: border-color .18s, background .18s;
}
.dt-read-more-btn:hover { border-color: var(--dt-navy); background: #f0f5ff; }
.dt-read-more-btn svg {
  width: 13px; height: 13px; stroke: currentColor;
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .25s;
}
.dt-read-more-btn.expanded svg { transform: rotate(180deg); }

/* ── 3. GALLERY ── */
.dt-gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.dt-gallery-item {
  position: relative; display: block; border-radius: 8px;
  overflow: hidden; height: 180px; cursor: pointer;
}
.dt-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s ease;
}
.dt-gallery-item:hover img { transform: scale(1.04); }
.dt-gallery-more {
  position: absolute; inset: 0;
  background: rgba(17,24,39,.55);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px; font-weight: 600;
}

/* ── 4. TIMELINE ── */
/* glance strip */
.dt-glance {
  display: flex; flex-wrap: wrap;
  border: 1px solid var(--border, #e5e7eb); border-radius: var(--dt-r);
  overflow: hidden; background: var(--bg-soft, #f9fafb); margin-bottom: 28px;
}
.dt-glance-cell {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-right: 1px solid var(--border, #e5e7eb);
  flex: 1; min-width: 0;
}
.dt-glance-cell:last-child { border-right: none; }
.dt-glance-ico {
  width: 34px; height: 34px; flex-shrink: 0;
  background: #fff; border: 1px solid var(--border, #e5e7eb);
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
}
.dt-glance-ico svg {
  width: 14px; height: 14px; stroke: var(--dt-amber);
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.dt-glance-lbl {
  font-size: 9px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--fg-muted, #6b7280);
  display: block; margin-bottom: 2px;
}
.dt-glance-val {
  font-size: 12.5px; font-weight: 600; color: var(--fg, #1C1C1C);
  display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* timeline core */
.dt-timeline { display: flex; flex-direction: column; }
.dt-tl-row { display: flex; align-items: stretch; }
.dt-tl-t { width: 68px; flex-shrink: 0; padding-top: 17px; padding-right: 10px; text-align: right; }
.dt-tl-t span { font-size: 11px; font-weight: 600; color: var(--fg-muted, #6b7280); white-space: nowrap; }
.dt-tl-t.hidden { visibility: hidden; }
.dt-tl-s {
  width: 24px; flex-shrink: 0; display: flex; flex-direction: column;
  align-items: center; position: relative;
}
.dt-tl-s::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; transform: translateX(-50%); background: var(--border, #e5e7eb);
}
.dt-tl-row.is-last .dt-tl-s::before { bottom: auto; height: 22px; }
.dt-tl-dot {
  position: relative; z-index: 1; width: 12px; height: 12px;
  border-radius: 50%; background: #fff; border: 2px solid #d1d5db;
  flex-shrink: 0; margin-top: 17px;
  transition: background .2s, border-color .2s, transform .2s;
}
.dt-tl-row[data-type="start"] .dt-tl-dot { background: var(--dt-green); border-color: var(--dt-green); width: 14px; height: 14px; margin-top: 16px; }
.dt-tl-row[data-type="end"] .dt-tl-dot { background: var(--dt-navy); border-color: var(--dt-navy); width: 14px; height: 14px; margin-top: 16px; }
.dt-tl-row[data-type="heritage"] .dt-tl-dot { border-color: #fbbf24; }
.dt-tl-row.is-open .dt-tl-dot { background: var(--dt-amber); border-color: var(--dt-amber); transform: scale(1.2); }
.dt-tl-c { flex: 1; min-width: 0; padding-left: 12px; padding-bottom: 5px; }

.dt-stop-card {
  border: 1px solid var(--border, #e5e7eb); border-radius: var(--dt-r);
  background: #fff; overflow: hidden; cursor: pointer;
  transition: border-color .18s, box-shadow .18s;
}
.dt-stop-card:hover { border-color: #d1d5db; box-shadow: 0 1px 6px rgba(0,0,0,.05); }
.dt-tl-row.is-open .dt-stop-card { border-color: var(--dt-amber); box-shadow: 0 0 0 3px rgba(251,165,4,.08); }

.dt-c-hd { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; user-select: none; }
.dt-c-hd-l { flex: 1; min-width: 0; }
.dt-c-name { font-size: 14px; font-weight: 600; color: var(--fg, #1C1C1C); line-height: 1.3; }
.dt-c-tags { display: flex; align-items: center; gap: 5px; margin-top: 4px; flex-wrap: wrap; }
.dt-time-mob { display: none; font-size: 10.5px; font-weight: 600; color: var(--fg-muted, #6b7280); }
.dt-c-tag {
  font-size: 9.5px; font-weight: 600; padding: 2px 7px;
  border-radius: 4px; letter-spacing: .04em; white-space: nowrap;
}
.dt-c-tag-dur { background: var(--bg-soft, #f9fafb); border: 1px solid var(--border, #e5e7eb); color: var(--fg-muted, #6b7280); font-weight: 500; letter-spacing: 0; font-size: 11px; }
.dt-c-tag-unesc { background: #eff6ff; border: 1px solid #bfdbfe; color: #1d4ed8; }
.dt-c-tag-start { background: var(--dt-green-bg); color: var(--dt-green); }
.dt-c-tag-end { background: #eff6ff; color: var(--dt-navy); }

.dt-c-chevron {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  color: var(--fg-muted, #6b7280);
  transition: transform .25s, color .18s;
  stroke: currentColor; fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.dt-tl-row.is-open .dt-c-chevron { transform: rotate(180deg); color: var(--dt-amber); }

.dt-c-bd { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.dt-c-bd-in { padding: 0 14px 14px; border-top: 1px solid var(--border, #e5e7eb); padding-top: 13px; }
.dt-c-desc { font-size: 13px; color: var(--fg-muted, #6b7280); line-height: 1.7; margin-bottom: 10px; font-weight: 300; }
.dt-c-desc p { margin-bottom: 8px; }
.dt-c-desc p:last-child { margin-bottom: 0; }
.dt-c-pts { list-style: none; display: flex; flex-direction: column; gap: 5px; padding: 0; margin: 0; }
.dt-c-pts li { display: flex; gap: 9px; align-items: flex-start; font-size: 12.5px; color: #374151; line-height: 1.55; }
.dt-c-pts li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--dt-amber); flex-shrink: 0; margin-top: 7px; }
.dt-c-tip {
  display: flex; gap: 8px; align-items: flex-start;
  background: #FFFBEB; border-radius: 7px; padding: 10px 12px;
  margin-top: 10px; font-size: 12px; color: var(--dt-amber-deep); line-height: 1.6;
}
.dt-c-tip svg {
  width: 13px; height: 13px; flex-shrink: 0; margin-top: 1px;
  stroke: #d97706; fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* transit rows */
.dt-tl-transit { display: flex; align-items: stretch; }
.dt-tl-transit .dt-tl-c { display: flex; align-items: center; min-height: 34px; }
.dt-transit-lbl {
  display: flex; align-items: center; gap: 6px;
  font-size: 11.5px; color: #9ca3af;
}
.dt-transit-lbl svg {
  width: 13px; height: 13px; stroke: #9ca3af;
  fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

/* time-of-day chips */
.dt-tl-tod { display: flex; align-items: stretch; }
.dt-tl-tod .dt-tl-c { display: flex; align-items: center; padding-top: 10px; padding-bottom: 4px; }
.dt-tod-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 9px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 20px;
}
.dt-tod-chip.morning { background: #fef9ec; color: #b45309; border: 1px solid #fde68a; }
.dt-tod-chip.afternoon { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }

/* ── 5. INCLUDES / EXCLUDES ── */
.dt-inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dt-inc-col-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; margin-bottom: 14px;
}
.dt-inc-col-label.yes { color: var(--dt-green); }
.dt-inc-col-label.no { color: var(--dt-red); }
.dt-inc-list { list-style: none; display: flex; flex-direction: column; gap: 9px; padding: 0; margin: 0; }
.dt-inc-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: #374151; line-height: 1.5; }
.dt-inc-list li svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; }
.dt-inc-list li.yes svg { stroke: var(--dt-green); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.dt-inc-list li.no svg { stroke: var(--dt-red); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── 6. FAQ ── */
.dt-faq-list {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border, #e5e7eb); border-radius: var(--dt-r); overflow: hidden;
}
.dt-faq-item { border-bottom: 1px solid var(--border, #e5e7eb); }
.dt-faq-item:last-child { border-bottom: none; }
.dt-faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 16px 18px; text-align: left;
  font-size: 14px; font-weight: 600; color: var(--fg, #1C1C1C);
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body, 'Poppins', sans-serif);
  transition: background .15s;
}
.dt-faq-q:hover { background: var(--bg-soft, #f9fafb); }
.dt-faq-q svg {
  width: 15px; height: 15px; flex-shrink: 0;
  stroke: var(--fg-muted, #6b7280); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .25s, stroke .18s;
}
.dt-faq-item.open .dt-faq-q svg { transform: rotate(180deg); stroke: var(--dt-amber); }
.dt-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.dt-faq-a-in {
  padding: 0 18px 16px; font-size: 13.5px;
  color: var(--fg-muted, #6b7280); line-height: 1.75; font-weight: 300;
  border-top: 1px solid var(--border, #e5e7eb); padding-top: 13px;
}
.dt-faq-a-in strong { color: var(--fg, #1C1C1C); font-weight: 600; }

/* important info box */
.dt-info-box {
  margin-top: 24px; background: var(--dt-warm-white);
  border-radius: var(--dt-r); padding: 18px 20px;
  border-left: 3px solid var(--dt-amber);
}
.dt-info-box-label {
  font-size: 9.5px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--dt-amber);
  margin-bottom: 10px; display: block;
}
.dt-info-items { list-style: none; display: flex; flex-direction: column; gap: 7px; padding: 0; margin: 0; }
.dt-info-items li {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: 13px; color: #444; line-height: 1.55; font-weight: 300;
}
.dt-info-items li::before { content: '\2192'; color: var(--dt-amber); font-weight: 600; flex-shrink: 0; }

/* ── 7. WHAT TO BRING ── */
.dt-bring-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dt-bring-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border: 1px solid var(--border, #e5e7eb);
  border-radius: 8px; background: var(--bg-soft, #f9fafb);
  font-size: 13.5px; font-weight: 500; color: var(--fg, #1C1C1C);
}
.dt-bring-ico {
  width: 34px; height: 34px; border-radius: 7px;
  background: #fff; border: 1px solid var(--border, #e5e7eb);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dt-bring-ico svg {
  width: 14px; height: 14px; stroke: var(--dt-navy);
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.dt-bring-sub { font-size: 11.5px; color: var(--fg-muted, #6b7280); font-weight: 300; margin-top: 1px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .dt-title { font-size: 26px; }
  .dt-hl-grid { grid-template-columns: 1fr; }
  .dt-gallery-grid { grid-template-columns: 1fr 1fr; }
  .dt-gallery-item { height: 150px; }
  .dt-inc-exc-grid { grid-template-columns: 1fr; }
  .dt-bring-grid { grid-template-columns: 1fr; }
  .dt-glance { display: grid; grid-template-columns: 1fr 1fr; }
  .dt-glance-cell { border-bottom: 1px solid var(--border, #e5e7eb); }
  .dt-glance-cell:nth-child(2n) { border-right: none; }
}
@media (max-width: 576px) {
  .dt-title { font-size: 22px; }
  .dt-sec-title { font-size: 20px; }
  .dt-tl-row .dt-tl-t, .dt-tl-transit .dt-tl-t, .dt-tl-tod .dt-tl-t { display: none; }
  .dt-time-mob { display: inline; }
  .dt-gallery-grid { grid-template-columns: 1fr; }
  .dt-gallery-item { height: 200px; }
  .dt-glance { grid-template-columns: 1fr; }
  .dt-glance-cell { border-right: none; }
}
