/* ============================================================
   Reusable Components — Design System
   Ein Produkt-Designer, ein Vokabular: Karten, Buttons, Chips,
   Bild-Frames, Listenzeilen. Screens komponieren nur noch.
   ============================================================ */

.eyebrow{
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--coral-deep);
  margin-bottom: 6px; display: block;
}
.lede{ font-size: 15px; color: var(--ink-soft); }
.section-title{
  font-size: 12.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--ink-faint); margin: 0 0 var(--space-3);
}
.section-block{ margin-top: var(--space-6); }
.section-block:first-child{ margin-top: var(--space-3); }
.section-head-row{
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: var(--space-3); gap: var(--space-3);
}
.link-more{
  font-size: 13px; font-weight: 600; color: var(--petrol);
  background: none; border: none; cursor: pointer; white-space: nowrap; padding: 4px 0;
}

/* ---- Cards ---- */
.card{
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: var(--space-4) var(--space-4);
}
.card + .card{ margin-top: var(--space-3); }
.card-flat{ box-shadow: none; }
.card-tint{ background: var(--petrol-tint); border-color: transparent; }

/* ---- Buttons ---- */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  gap: 7px;
  font-size: 14.5px; font-weight: 600;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  min-height: 46px;
  transition: transform 0.12s ease, opacity 0.12s ease, background-color 0.12s ease;
}
.btn svg{ --icon-size: var(--icon-sm); }
.btn:active{ transform: scale(0.97); }
.btn-primary{ background: var(--petrol); color: var(--white); }
.btn-primary:hover{ background: var(--petrol-light); }
.btn-accent{ background: var(--coral); color: var(--white); }
.btn-accent:hover{ background: var(--coral-deep); }
.btn-secondary{ background: var(--white); color: var(--petrol); border-color: var(--border-strong); }
.btn-secondary:hover{ border-color: var(--petrol); }
.btn-ghost{ background: transparent; color: var(--petrol); border-color: transparent; padding-left: 10px; padding-right: 10px; }
.btn-danger-ghost{ background: transparent; color: var(--red); border-color: transparent; }
.btn-sm{ padding: 8px 14px; font-size: 13px; min-height: 34px; border-radius: 9px; }
.btn-block{ width: 100%; }
.btn[disabled]{ opacity: 0.45; cursor: not-allowed; }
.btn-row{ display: flex; gap: var(--space-3); margin-top: var(--space-4); flex-wrap: wrap; }
.btn-row .btn{ flex: 1; }
.btn-row.btn-row-stack{ flex-direction: column; }

.icon-btn{
  width: 38px; height: 38px; border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--border);
  cursor: pointer; flex-shrink: 0; color: var(--petrol);
}
.icon-btn svg{ --icon-size: var(--icon-sm); }
.icon-btn.is-active{ background: var(--coral-tint); color: var(--coral-deep); border-color: transparent; }
.icon-btn:disabled{ opacity: 0.35; cursor: not-allowed; }
.icon-btn-plain{
  width: 38px; height: 38px; border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; flex-shrink: 0; color: var(--petrol-deep);
}
.icon-btn-plain svg{ --icon-size: var(--icon-md); }
.icon-btn-plain.on-image{ color: var(--white); background: rgba(11,36,42,0.32); backdrop-filter: blur(6px); }
.icon-btn-plain.is-active{ color: var(--coral); }
.icon-btn-plain.on-image.is-active{ color: var(--coral); }

/* ---- Chips (Tags, Filter) ---- */
.chip{
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: var(--petrol-tint); color: var(--petrol);
  border: 1px solid transparent;
  white-space: nowrap;
}
.chip svg{ --icon-size: 13px; }
.chip-outline{ background: transparent; border-color: var(--border-strong); color: var(--ink-soft); }
.chip-coral{ background: var(--coral-tint); color: var(--coral-deep); }
.chip-green{ background: var(--green-tint); color: var(--green); }
.chip-amber{ background: var(--amber-tint); color: var(--amber); }
.chip-petrol-solid{ background: var(--petrol); color: var(--white); }
.chip-row{ display: flex; flex-wrap: wrap; gap: 6px; }
.chip-scroll{ display: flex; gap: 8px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
.chip-scroll::-webkit-scrollbar{ display: none; }
.chip-filter{
  flex-shrink: 0; border: 1.5px solid var(--border-strong); background: var(--white);
  color: var(--ink-soft); font-size: 12.5px; font-weight: 600;
  padding: 7px 14px; border-radius: var(--radius-pill); cursor: pointer;
}
.chip-filter.active{ background: var(--petrol); border-color: var(--petrol); color: var(--white); }

/* ---- Selectable options (Konfigurator) ---- */
.option-list{ display: flex; flex-wrap: wrap; gap: 8px; }
.option-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.option{
  cursor: pointer; text-align: center; font-family: inherit;
}
.option.opt-pill{
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white); border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm); padding: 10px 16px;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
}
.option.opt-pill.selected{ background: var(--petrol); border-color: var(--petrol); color: var(--white); }
.option.opt-icon{
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--white); border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm); padding: 12px 6px;
  color: var(--petrol);
}
.option.opt-icon svg{ --icon-size: var(--icon-md); }
.option.opt-icon .opt-title{ font-size: 11.5px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.option.opt-icon.selected{ background: var(--petrol); border-color: var(--petrol); }
.option.opt-icon.selected svg{ color: var(--white); }
.option.opt-icon.selected .opt-title{ color: var(--white); }

.qprogress{ display: flex; gap: 6px; margin-bottom: var(--space-4); }
.qprogress span{ height: 3px; flex: 1; border-radius: var(--radius-pill); background: var(--border); }
.qprogress span.done, .qprogress span.current{ background: var(--coral); }

/* ---- Bild-Frames (Destinationen, Routen, Spots) ---- */
.img-frame{
  position: relative; width: 100%; overflow: hidden;
  border-radius: var(--radius-md); background: var(--petrol-tint);
}
.img-frame img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.img-placeholder-fill{
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--coral-tint) 0%, var(--cream-deep) 55%, var(--petrol-tint) 100%);
}
.img-placeholder-mark{
  width: 22%; min-width: 32px; max-width: 58px; aspect-ratio: 1;
  border-radius: 50%; background: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(18,51,59,0.08);
}
.img-placeholder-mark svg{ --icon-size: 52%; color: var(--petrol); opacity: 0.6; }
.img-placeholder-label{
  font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--petrol);
  opacity: 0.68; text-align: center; padding: 0 12px; letter-spacing: 0.01em;
}
.img-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,36,42,0.86) 0%, rgba(11,36,42,0.35) 42%, rgba(11,36,42,0) 72%);
  display: flex; align-items: flex-end; padding: var(--space-3);
}
.img-badge{ position: absolute; top: 10px; right: 10px; }
.country-badge{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 3px 7px; border-radius: 6px;
  background: rgba(255,255,255,0.22); border: 1px solid rgba(255,255,255,0.4);
  color: var(--white); font-size: 10.5px; font-weight: 700; letter-spacing: 0.03em;
  backdrop-filter: blur(3px);
}

/* ---- Status-Badges (Content-Status) ---- */
.status-badge{
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
  padding: 4px 9px; border-radius: 7px;
  background: var(--petrol-deep); color: var(--white);
}
.status-badge.status-complete{ background: var(--coral); color: var(--white); }
.status-badge.on-image{ position: absolute; top: 10px; right: 10px; }

/* ---- Destination-Karten (Home, Häfen) — bildgeführt ---- */
.destination-grid{ display: flex; flex-direction: column; gap: var(--space-3); }
.destination-grid.grid-2col{
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3);
}
.destination-card{
  position: relative; display: block; width: 100%; text-align: left;
  cursor: pointer; border: none; background: none; padding: 0;
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.destination-card .img-frame{ border-radius: var(--radius-md); }
.destination-card-caption{ color: var(--white); }
.destination-card-name{
  font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--white);
  display: flex; align-items: center; gap: 6px; line-height: 1.2;
}
.destination-card-region{ font-size: 12px; color: rgba(255,255,255,0.85); margin-top: 1px; }
.grid-2col .destination-card-name{ font-size: 14.5px; }

/* Editorial-Variante (Häfen-Übersicht): Foto oben, Text als eigener
   Block darunter statt nur als Overlay-Kaption — stärkere Typografie,
   klare "Entdecken"-Affordanz statt riesiger Pfeil-Icons. */
.destination-card-editorial{ background: var(--white); }
.destination-card-editorial .img-frame{ border-radius: var(--radius-md) var(--radius-md) 0 0; }
.destination-card-footer{ padding: 13px 15px 15px; }
.destination-card-footer-title{
  font-family: var(--font-display); font-size: 17px; font-weight: 600;
  color: var(--petrol-deep); text-transform: uppercase; letter-spacing: 0.02em;
}
.destination-card-footer-region{ font-size: 13px; color: var(--ink-faint); margin-top: 1px; }
.destination-card-footer-meta{
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border);
}
.destination-card-footer-category{
  font-size: 11px; color: var(--ink-faint); text-transform: uppercase;
  letter-spacing: 0.03em; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.destination-card-cta{
  display: inline-flex; align-items: center; gap: 3px; flex-shrink: 0;
  font-size: 12.5px; font-weight: 700; color: var(--coral-deep);
}
.destination-card-cta svg{ --icon-size: 13px; }

/* Kompakte Zeilenkarte (Häfen-Liste im Listenmodus / Fallback) */
.destination-row-select{
  display: flex; align-items: center; gap: var(--space-3);
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); padding: var(--space-3);
  cursor: pointer; text-align: left; width: 100%;
}
.destination-row-select.is-selected{ border-color: var(--petrol); background: var(--petrol-tint); }
.destination-row-thumb{ width: 52px; height: 52px; border-radius: var(--radius-sm); flex-shrink: 0; overflow: hidden; }
.destination-row-body{ flex: 1; min-width: 0; }
.destination-row-name{ font-weight: 600; font-size: 14.5px; color: var(--ink); display: flex; align-items: center; gap: 6px; }
.destination-row-region{ font-size: 12.5px; color: var(--ink-faint); margin-top: 1px; }
.destination-row-check{
  width: 24px; height: 24px; border-radius: var(--radius-pill);
  border: 2px solid var(--border-strong); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.destination-row-check svg{ --icon-size: 13px; color: var(--white); }
.is-selected .destination-row-check{ background: var(--petrol); border-color: var(--petrol); }

/* ---- Trip-Zeilen (Meine Reise, mit Reihenfolge) ---- */
.trip-row{
  display: flex; align-items: center; gap: var(--space-3);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px var(--space-3);
}
.trip-row + .trip-row{ margin-top: 6px; }
.trip-row-num{
  width: 26px; height: 26px; border-radius: var(--radius-pill);
  background: var(--petrol-tint); color: var(--petrol);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.trip-row-flag{ font-size: 19px; flex-shrink: 0; line-height: 1; }
.trip-row-body{ flex: 1; min-width: 0; }
.trip-row-name{ font-weight: 600; font-size: 14px; color: var(--ink); }
.trip-row-meta{ font-size: 11.5px; color: var(--ink-faint); margin-top: 1px; }
.trip-row-controls{ display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.trip-row-controls .icon-btn-plain{ width: 30px; height: 30px; }
.trip-row-controls .icon-btn-plain svg{ --icon-size: var(--icon-sm); }
.trip-row-reorder{ display: flex; flex-direction: column; }
.trip-row-reorder .icon-btn-plain{ width: 22px; height: 16px; }
.trip-row-reorder .icon-btn-plain svg{ --icon-size: 14px; }

/* ---- Quick Actions (Home) — 5 kompakte Icon-Tiles, immer in einer Reihe ---- */
.quick-action-row{
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px;
}
.quick-action-tile{
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  background: none; border: none; cursor: pointer; padding: 2px; min-width: 0;
}
.quick-action-tile-icon{
  width: 44px; height: 44px; border-radius: 13px;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--petrol); box-shadow: var(--shadow-sm);
}
.quick-action-tile-icon svg{ --icon-size: 19px; }
.quick-action-tile:active .quick-action-tile-icon{ transform: scale(0.94); background: var(--petrol-tint); }
.quick-action-tile-label{ font-size: 10px; font-weight: 600; color: var(--ink); text-align: center; line-height: 1.28; }

.quick-action-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-2); }
.quick-action{
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 6px;
  text-align: center; cursor: pointer;
}
.quick-action:active{ background: var(--petrol-tint); }
.quick-action-icon{
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--petrol-tint); color: var(--petrol);
  display: flex; align-items: center; justify-content: center;
}
.quick-action-icon svg{ --icon-size: var(--icon-sm); }
.quick-action-label{ font-size: 12px; font-weight: 600; color: var(--ink); line-height: 1.25; }
.quick-action.is-muted{ opacity: 0.5; }

/* ---- Feature-Cards (Home "Was möchtest du machen?") — bewusst groß,
   keine kleinen Utility-Icons im leeren Raum ---- */
.feature-list{ display: flex; flex-direction: column; gap: 10px; }
.feature-card{
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 15px 16px;
  box-shadow: var(--shadow-sm); text-align: left; cursor: pointer; width: 100%;
}
.feature-card:active{ background: var(--cream); }
.feature-card-icon{
  width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
  background: var(--petrol-tint); color: var(--petrol);
  display: flex; align-items: center; justify-content: center;
}
.feature-card-icon svg{ --icon-size: 23px; }
.feature-card-body{ flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.feature-card-title{ font-weight: 700; font-size: 15px; color: var(--ink); }
.feature-card-desc{ font-size: 12.5px; color: var(--ink-faint); }
.feature-card-chevron{ color: var(--ink-faint); flex-shrink: 0; }
.feature-card-chevron svg{ --icon-size: var(--icon-sm); }

/* ---- Cruise Quick Check — kompakte Statzeile ---- */
.quick-check-strip{
  display: flex; overflow-x: auto; scrollbar-width: none;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.quick-check-strip::-webkit-scrollbar{ display: none; }
.quick-check-stat{
  flex: 0 0 auto; padding: 12px 16px; min-width: 84px;
  border-right: 1px solid var(--border);
}
.quick-check-stat:last-child{ border-right: none; }
.quick-check-label{ font-size: 10px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.03em; font-weight: 700; }
.quick-check-value{ font-size: 13.5px; font-weight: 600; color: var(--ink); margin-top: 3px; white-space: nowrap; }
.quick-check-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
.quick-check-item{ background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 12px; }

/* ---- Recommendation-Badges ---- */
.recommendation-badge{
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: var(--radius-pill);
  margin-bottom: 8px;
}
.recommendation-badge svg{ --icon-size: 12px; }
.recommendation-badge.personal{ background: var(--coral); color: var(--white); }
.recommendation-badge.editorial{ background: var(--petrol-tint); color: var(--petrol); }
.personal-label-row{ display: flex; flex-wrap: wrap; gap: 6px; margin-top: var(--space-2); }

/* ---- Erlebnis-Karten ("Singapur erleben") — editorial, bildgeführt ---- */
.experience-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.experience-card{
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer;
}
.experience-card .img-frame{ border-radius: var(--radius-md) var(--radius-md) 0 0; }
.experience-card-body{ padding: 12px 13px 14px; }
.experience-card-title{ font-weight: 700; font-size: 14.5px; color: var(--ink); }
.experience-card-cat{ font-size: 10.5px; color: var(--coral-deep); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-top: 3px; }
.experience-card-desc{ font-size: 12.5px; color: var(--ink-soft); margin: 6px 0 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.experience-card-cta{ display: inline-flex; align-items: center; gap: 3px; font-size: 12px; font-weight: 700; color: var(--petrol); }
.experience-card-cta svg{ --icon-size: 12px; }

/* ---- Persönliche Editorial-Ebene ("Britts Tipp") ---- */
.tip-card{ display: flex; gap: 14px; background: var(--petrol-tint); border-radius: var(--radius-md); padding: 16px; align-items: flex-start; }
.tip-card-photo{ width: 60px; height: 60px; border-radius: 50%; flex-shrink: 0; border: 2px solid var(--white); box-shadow: var(--shadow-sm); }
.tip-card-body{ flex: 1; min-width: 0; }
.tip-card-label{ font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--petrol-deep); margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.tip-card-label svg{ --icon-size: 14px; color: var(--coral); }
.tip-card-text{ font-size: 13.5px; color: var(--ink-soft); margin: 0; }

/* ---- Spot-Karten (kompakte Listendarstellung) ---- */
.spot-card{
  display: flex; gap: var(--space-3);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: var(--space-3);
  box-shadow: var(--shadow-sm); text-align: left; width: 100%; cursor: pointer;
}
.spot-card + .spot-card{ margin-top: var(--space-3); }
.spot-card-visual{ width: 72px; height: 72px; flex-shrink: 0; }
.spot-card-body{ flex: 1; min-width: 0; display: flex; flex-direction: column; }
.spot-card-name{ font-weight: 700; font-size: 14.5px; color: var(--ink); display: flex; align-items: center; gap: 5px; }
.spot-card-name svg{ --icon-size: 13px; color: var(--coral); }
.spot-card-desc{ font-size: 12.5px; color: var(--ink-soft); margin: 3px 0 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.spot-card-meta-row{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
.meta-pill{ display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--ink-faint); font-weight: 600; }
.meta-pill svg{ --icon-size: 13px; }

/* ---- Route-Karten (Ergebnisliste) — großformatig, bildgeführt ---- */
.route-card{
  display: block;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer; width: 100%; text-align: left; box-shadow: var(--shadow-sm); padding: 0;
}
.route-card .img-frame{ border-radius: var(--radius-md) var(--radius-md) 0 0; }
.route-card + .route-card{ margin-top: var(--space-4); }
.route-card-body{ padding: var(--space-4); }
.route-card-name{ font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--petrol-deep); line-height: 1.25; }
.route-card-duration{ display: flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--ink-faint); margin-top: 8px; font-weight: 600; }
.route-card-duration svg{ --icon-size: 13px; }
.img-badge.badge-left{ left: 10px; right: auto; }

/* ---- Route-Detail Timeline ---- */
.timeline{ position: relative; }
.timeline-item{ display: flex; gap: var(--space-3); position: relative; padding-bottom: var(--space-5); }
.timeline-item:last-child{ padding-bottom: 0; }
.timeline-marker{
  display: flex; flex-direction: column; align-items: center; flex-shrink: 0;
}
.timeline-num{
  width: 26px; height: 26px; border-radius: var(--radius-pill);
  background: var(--petrol); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0; z-index: 1;
}
.timeline-num.is-endpoint{ background: var(--coral); }
.timeline-num.is-endpoint svg{ --icon-size: 13px; }
.timeline-line{ width: 2px; flex: 1; background: var(--border-strong); margin-top: 4px; }
.timeline-content{
  flex: 1; min-width: 0; display: flex; gap: var(--space-3); align-items: center;
  padding-bottom: 2px;
}
.timeline-thumb{ width: 56px; height: 56px; border-radius: var(--radius-sm); flex-shrink: 0; }
.timeline-body{ flex: 1; min-width: 0; }
.timeline-title{ font-weight: 600; font-size: 14.5px; color: var(--ink); }
.timeline-sub{ font-size: 12px; color: var(--ink-faint); margin-top: 2px; }
.timeline-indicator{ color: var(--ink-faint); flex-shrink: 0; }
.timeline-indicator svg{ --icon-size: var(--icon-sm); }

/* ---- Info-/KV-Zeilen (Spot-Detail) ---- */
.info-row{
  display: flex; align-items: flex-start; gap: 10px;
  padding: 11px 0; border-bottom: 1px solid var(--border);
}
.info-row:last-child{ border-bottom: none; }
.info-row-icon{ color: var(--petrol); flex-shrink: 0; margin-top: 1px; }
.info-row-icon svg{ --icon-size: var(--icon-sm); }
.info-row-label{ font-size: 12px; color: var(--ink-faint); font-weight: 600; }
.info-row-value{ font-size: 14px; color: var(--ink); font-weight: 600; margin-top: 1px; }
.info-row-note{ font-size: 12.5px; color: var(--ink-faint); margin-top: 2px; }

.kv-row{ display: flex; justify-content: space-between; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.kv-row:last-child{ border-bottom: none; }
.kv-row .k{ color: var(--ink-faint); }
.kv-row .v{ font-weight: 600; color: var(--ink); text-align: right; }

/* ---- Listenzeilen mit Icon-Kreis (Zurück zum Schiff, Reisevorbereitung) ---- */
.action-list{ background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.action-row{
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border);
  background: none; border-left: none; border-right: none; border-top: none;
  width: 100%; text-align: left; cursor: pointer;
}
.action-row:last-child{ border-bottom: none; }
.action-row:active{ background: var(--cream); }
.action-row-icon{
  width: 38px; height: 38px; border-radius: var(--radius-pill);
  background: var(--petrol-tint); color: var(--petrol);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.action-row-icon svg{ --icon-size: var(--icon-sm); }
.action-row-body{ flex: 1; min-width: 0; }
.action-row-title{ font-weight: 600; font-size: 14.5px; color: var(--ink); }
.action-row-sub{ font-size: 12px; color: var(--ink-faint); margin-top: 1px; }
.action-row-chevron{ color: var(--ink-faint); flex-shrink: 0; }
.action-row-chevron svg{ --icon-size: var(--icon-sm); }

/* ---- Compact list rows (Landgang, Gespeichert) ---- */
.list-row{
  display: flex; align-items: center; gap: var(--space-3);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px var(--space-3);
}
.list-row + .list-row{ margin-top: 6px; }
.list-row-visual{ width: 44px; height: 44px; border-radius: var(--radius-sm); flex-shrink: 0; }
.list-row-body{ flex: 1; min-width: 0; }
.list-row-title{ font-weight: 600; font-size: 14px; color: var(--ink); }
.list-row-sub{ font-size: 12px; color: var(--ink-faint); }

.destination-group-label{
  font-family: var(--font-display); font-size: 14.5px; font-weight: 600; color: var(--petrol-deep);
  margin: var(--space-5) 0 var(--space-2);
  display: flex; align-items: center; gap: 6px;
}
.destination-group-label:first-child{ margin-top: 0; }

.duration-strip{
  background: var(--petrol); color: var(--white);
  border-radius: var(--radius-md); padding: var(--space-4);
  margin-bottom: var(--space-4);
}
.duration-strip .big{ font-family: var(--font-display); font-size: 18px; font-weight: 600; }
.duration-strip .small{ font-size: 12px; opacity: 0.72; margin-top: 4px; line-height: 1.4; }

/* ---- Forms ---- */
.field{ margin-bottom: var(--space-4); }
.field label{ display: block; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); margin-bottom: 6px; }
.field-desc{ font-size: 12.5px; color: var(--ink-faint); margin-bottom: 6px; }
.field input[type="text"], .field input[type="date"], .field input[type="time"], .field select, .field textarea{
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--white); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--petrol); }
.field-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }

/* ---- Callouts / disclaimers ---- */
.callout{
  font-size: 12.5px; color: var(--ink-soft); line-height: 1.5;
  background: var(--cream-deep); border-radius: var(--radius-sm);
  padding: 11px 13px; display: flex; gap: 9px; align-items: flex-start;
}
.callout svg{ --icon-size: var(--icon-sm); flex-shrink: 0; margin-top: 1px; color: var(--ink-faint); }
.callout-tight{ padding: 9px 12px; font-size: 12px; }
.callout-dark{ background: var(--petrol); color: rgba(255,255,255,0.88); }
.callout-dark svg{ color: rgba(255,255,255,0.7); }

/* ---- Empty states ---- */
.empty-state{ text-align: center; padding: var(--space-8) var(--space-5); color: var(--ink-faint); }
.empty-state svg{ --icon-size: 34px; margin: 0 auto var(--space-3); opacity: 0.45; }
.empty-state h3{ color: var(--ink); }
.empty-state p{ color: var(--ink-faint); font-size: 13.5px; }

/* ---- Home ---- */
.home-greeting{ font-size: 17px; font-weight: 600; color: rgba(255,255,255,0.95); margin-bottom: 6px; }
.home-question{ font-size: 32px; font-weight: 700; color: var(--white); line-height: 1.14; letter-spacing: -0.01em; }

/* Randloser Hero: bricht bewusst aus dem Content-Padding von .view-root
   aus, damit das Foto bis an die Viewport-Kanten reicht (keine Karte). */
.hero-banner{
  position: relative; z-index: 1;
  width: calc(100% + var(--space-5) * 2);
  margin: 0 calc(-1 * var(--space-5)) 0;
  border-radius: 0; overflow: hidden;
}
.hero-banner-caption{ padding: var(--space-4) var(--space-5) 44px; display: flex; flex-direction: column; }
.dest-hero-title{ font-size: 23px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.dest-hero-subtitle{ font-size: 13.5px; color: rgba(255,255,255,0.88); }
.dest-hero-tagline{ font-size: 13px; color: rgba(255,255,255,0.82); margin-top: 3px; }

/* Weiße Karte, die über die Unterkante des Hero-Fotos ragt — erzeugt die
   geschichtete Tiefe aus der Referenz statt eines flachen Abschnitts. */
.home-overlap-card{
  position: relative; z-index: 2;
  background: var(--white); border-radius: 22px;
  box-shadow: var(--shadow-md); padding: var(--space-4);
  margin: -42px 0 var(--space-6);
}

.dot-row{ display: flex; justify-content: center; gap: 5px; margin-top: 10px; }
.dot-row span{ width: 5px; height: 5px; border-radius: 50%; background: var(--border-strong); }
.dot-row span.active{ background: var(--petrol); width: 14px; border-radius: var(--radius-pill); }

.hscroll{ display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; padding-bottom: 2px; }
.hscroll::-webkit-scrollbar{ display: none; }
.hscroll .destination-card{ width: 104px; flex: 0 0 auto; scroll-snap-align: start; box-shadow: none; }
.hscroll .destination-card-name{ font-size: 12px; gap: 3px; }
.hscroll .destination-card-region{ display: none; }
.hscroll .country-badge{ font-size: 9px; padding: 2px 5px; }
.hscroll .destination-card-caption{ padding: var(--space-2); }

/* ---- Kompakte Mini-Feature-Karten ("Für deinen nächsten Landgang",
   "Praktisch an Bord") ---- */
.mini-feature-card{
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 10px 14px 10px 10px;
  box-shadow: var(--shadow-sm); cursor: pointer; width: 100%; text-align: left;
}
.mini-feature-thumb{ width: 52px; height: 52px; flex-shrink: 0; border-radius: 12px; }
.mini-feature-body{ flex: 1; min-width: 0; }
.mini-feature-title{ font-weight: 700; font-size: 14px; color: var(--ink); }
.mini-feature-sub{ font-size: 12px; color: var(--coral-deep); font-weight: 600; margin-top: 1px; }
.mini-feature-chevron{ color: var(--ink-faint); flex-shrink: 0; }
.mini-feature-chevron svg{ --icon-size: var(--icon-sm); }

.onboard-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.onboard-card{
  display: flex; align-items: center; gap: 9px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 12px 10px; cursor: pointer;
  box-shadow: var(--shadow-sm); text-align: left;
  /* Grid-Items sind ohne dies standardmäßig min-width:auto — ein langes,
     nicht trennbares Wort (z.B. "Reisevorbereitung") würde die Karte sonst
     über ihre 1fr-Spalte hinaus breiter als der Viewport zwingen. */
  min-width: 0;
}
.onboard-card-icon{
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  background: var(--petrol-tint); color: var(--petrol);
  display: flex; align-items: center; justify-content: center;
}
.onboard-card-icon svg{ --icon-size: var(--icon-sm); }
.onboard-card-label{ flex: 1; min-width: 0; font-size: 12.5px; font-weight: 700; color: var(--ink); line-height: 1.25; }
.onboard-card-chevron{ color: var(--ink-faint); flex-shrink: 0; }
.onboard-card-chevron svg{ --icon-size: 15px; }

/* ---- Zentrierter Icon-Kreis (Zurück zum Schiff) ---- */
.icon-circle-hero{
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--petrol); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-3);
}
.icon-circle-hero svg{ --icon-size: 28px; }
.centered-header{ text-align: center; padding: var(--space-2) 0 var(--space-4); }
.centered-header .destination-card-region{ justify-content: center; display: flex; }

/* ---- About screen sections ---- */
.about-section{ margin-bottom: var(--space-5); }
.about-section h3{ margin-bottom: 6px; font-size: 15.5px; }
.about-section p{ font-size: 13.5px; }
