/* ===================== Itinerary type picker "1a" (moved from create.html) ===================== */
  /* Itinerary type picker — design 1a ("foto-kaarten · duur als kompas") */
  .create-page {
    min-height: 100vh;
    padding: 2.5rem 1.5rem 4rem;
  }

  .create-header {
    text-align: center;
    margin-bottom: 2.2rem;
  }

  .create-header img {
    height: 150px;
    display: block;
    margin: 0 auto 1.6rem;
  }

  .create-header h1 {
    font-size: clamp(1.7rem, 4vw, 2.15rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0 0 0.5rem;
    color: #0f172a;
  }

  .create-header p {
    color: #475569;
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.5;
  }

  /* Back to the intake: this page is the escape hatch from the routing, so the
     way back to it has to be just as visible (docs/type-d-plan.md §7.1). */
  .create-header p.create-subhead-link {
    margin-top: 0.7rem;
    font-size: 0.93rem;
    color: #64748b;
  }

  .create-header p.create-subhead-link a {
    color: #43b0b3;
    font-weight: 600;
  }

  .create-options {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
  }

  .create-card {
    position: relative;
    flex: 1 1 320px;
    max-width: 360px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 22px rgba(0,0,0,0.09);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .create-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.16);
  }

  .create-card.is-featured {
    border: 2px solid #43b0b3;
    box-shadow: 0 12px 34px rgba(67,176,179,0.28);
    position: relative;
  }

  .create-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: #ff914d;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    padding: 5px 11px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }

  .create-card-photo {
    height: 158px;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .create-card-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.05), rgba(15,23,42,0.72));
  }

  .create-card-photo .create-card-cap {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 14px;
    z-index: 1;
  }

  .create-card-tag {
    display: inline-block;
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
  }

  .create-card-name {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.15;
  }

  .create-card-body {
    padding: 1.25rem 1.35rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .create-card-best {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.9rem;
    flex-wrap: wrap;
  }

  .create-card-best .best-lbl {
    font-size: 0.68rem;
    font-weight: 700;
    color: #43b0b3;
    letter-spacing: 0.3px;
  }

  .create-card-best .best-val {
    font-size: 0.82rem;
    color: #334155;
    font-weight: 600;
  }

  .create-card-desc {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.55;
    margin: 0 0 1rem;
  }

  .create-card-diagram {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 13px;
    margin-bottom: 1rem;
  }

  .create-card-diagram-lbl {
    font-size: 0.6rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 9px;
  }

  .dgm-rows { display: flex; flex-direction: column; gap: 6px; }
  .dgm-row { display: flex; align-items: center; gap: 7px; }
  .dgm-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
  .dgm-bar { height: 8px; border-radius: 4px; background: #cbd5e1; flex: 1; }
  .dgm-fill { height: 8px; border-radius: 4px; }

  .dgm-regions { display: flex; flex-direction: column; gap: 7px; }
  .dgm-region {
    background: #fff;
    border-radius: 6px;
    padding: 6px 8px;
  }
  .dgm-region-lbl { font-size: 0.56rem; font-weight: 700; margin-bottom: 4px; }
  .dgm-region-bars { display: flex; gap: 4px; }
  .dgm-region-bars span { height: 7px; flex: 1; background: #cbd5e1; border-radius: 3px; }

  .dgm-days { display: flex; gap: 6px; align-items: stretch; }
  .dgm-day {
    flex: 1;
    border: 1.5px dashed #cbd5e1;
    border-radius: 6px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 700;
  }

  .create-card-body .spacer { flex: 1; }

  .create-start-btn {
    display: block;
    width: 100%;
    padding: 0.85rem;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(135deg, #43b0b3, #7589d5);
    color: white;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.15s;
    box-sizing: border-box;
  }

  .create-start-btn.is-dark { background: #1e293b; }
  .create-start-btn:hover { opacity: 0.88; }

