:root {
    --green: #007dff;
    --green-light: #007dff;
    --green-pale: #cce4ff;
    --green-xpale: #f0f7ff;
    --cream: #faf9f6;
    --dark: #1a1a1a;
    --mid: #4a4a4a;
    --light: #8a8a8a;
    --border: #e8e8e4;
    --white: #ffffff;
    --success: #00c27a;
    --radius: 16px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ─── NAV ─────────────────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.4rem 6%;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s;
  }
  .nav-logo { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--dark); text-decoration: none; letter-spacing: -0.02em; }
  .nav-logo em { color: var(--green); font-style: normal; }
  .back-btn {
    color: var(--mid); font-size: 0.88rem; font-weight: 500; text-decoration: none;
    display: flex; align-items: center; gap: 0.4rem; transition: color 0.2s;
  }
  .back-btn:hover { color: var(--dark); }

  /* ─── PAGE WRAP ───────────────────────────────────────────── */
  .page-wrap {
    max-width: 680px;
    margin: 0 auto;
    padding: 6rem 1.5rem 5rem;
  }

  /* ─── PAGE HEADER ─────────────────────────────────────────── */
  .page-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .page-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--green-pale); color: var(--green);
    padding: 0.45rem 1rem; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
  }
  .page-eyebrow::before { content: '●'; font-size: 0.5rem; }
  .page-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 0.7rem;
  }
  .page-title em { font-style: normal; color: var(--green); }
  .page-sub { font-size: 0.97rem; color: var(--mid); font-weight: 300; line-height: 1.7; }

  /* ─── STEP BAR ────────────────────────────────────────────── */
  .step-bar {
    display: flex; align-items: center; gap: 0; margin-bottom: 3rem;
  }
  .step-dot-wrap { position: relative; display: flex; flex-direction: column; align-items: center; }
  .step-dot {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 800;
    border: 2px solid var(--border);
    color: var(--light);
    background: var(--white);
    transition: all 0.35s;
    flex-shrink: 0; position: relative; z-index: 1;
  }
  .step-dot.active {
    border-color: var(--green); color: var(--white); background: var(--green);
    box-shadow: 0 0 16px rgba(0,125,255,0.35);
  }
  .step-dot.done {
    border-color: var(--success); color: var(--success);
    background: rgba(0,194,122,0.08);
  }
  .step-dot.done::after { content: '✓'; }
  .step-dot.done .dot-num { display: none; }
  .step-line {
    flex: 1; height: 2px;
    background: var(--border);
    transition: background 0.35s;
  }
  .step-line.done { background: var(--success); }
  .step-label {
    position: absolute; top: 38px; left: 50%; transform: translateX(-50%);
    font-size: 0.68rem; color: var(--light); white-space: nowrap;
    font-weight: 500; letter-spacing: 0.03em;
  }
  .step-dot.active .step-label { color: var(--green); }
  .step-dot.done .step-label { color: var(--success); }

  /* ─── CARD ────────────────────────────────────────────────── */
  .card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    animation: fadeUp 0.4s ease both;
  }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

  .card-eyebrow {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--green); margin-bottom: 0.5rem;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .card-eyebrow::before { content: ''; display: block; width: 18px; height: 2px; background: var(--green); border-radius: 2px; }
  .card-title {
    font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 800;
    letter-spacing: -0.02em; color: var(--dark); margin-bottom: 0.4rem; line-height: 1.2;
  }
  .card-sub { font-size: 0.88rem; color: var(--mid); margin-bottom: 2rem; line-height: 1.65; font-weight: 300; }

  /* ─── SECTION SEP ─────────────────────────────────────────── */
  .section-sep {
    font-size: 0.75rem; font-weight: 600; color: var(--light);
    text-transform: uppercase; letter-spacing: 0.08em;
    margin: 1.5rem 0 0.8rem;
  }

  /* ─── OPTION GRID ─────────────────────────────────────────── */
  .option-grid { display: grid; gap: 0.85rem; }
  .option-grid.cols2 { grid-template-columns: 1fr 1fr; }
  .option-grid.cols3 { grid-template-columns: 1fr 1fr 1fr; }

  .opt-card {
    border: 1.5px solid var(--border); border-radius: var(--radius);
    padding: 1.2rem 1rem; cursor: pointer;
    transition: all 0.2s; position: relative; overflow: hidden;
    text-align: center; background: var(--cream);
  }
  .opt-card:hover { border-color: var(--green); background: var(--green-xpale); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,125,255,0.1); }
  .opt-card.selected { border-color: var(--green); background: var(--green-xpale); }
  .opt-card.selected::after {
    content: '✓'; position: absolute; top: 8px; right: 10px;
    font-size: 0.75rem; font-weight: 700; color: var(--green);
  }
  .opt-icon { font-size: 1.8rem; margin-bottom: 0.5rem; display: block; }
  .opt-name { font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; }
  .opt-price { font-size: 0.8rem; color: var(--green); font-weight: 600; }
  .opt-desc { font-size: 0.75rem; color: var(--mid); margin-top: 0.3rem; line-height: 1.4; }

  /* ─── FORMULE FULL ────────────────────────────────────────── */
  .opt-full {
    border: 1.5px solid var(--border); border-radius: var(--radius);
    padding: 1.2rem 1.5rem; cursor: pointer;
    transition: all 0.2s; display: flex; align-items: center; gap: 1rem;
    background: var(--cream); position: relative;
  }
  .opt-full:hover { border-color: var(--green); background: var(--green-xpale); transform: translateX(4px); box-shadow: 0 4px 16px rgba(0,125,255,0.1); }
  .opt-full.selected { border-color: var(--green); background: var(--green-xpale); }
  .opt-full.selected::after {
    content: '✓'; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%);
    font-size: 1rem; font-weight: 700; color: var(--green);
  }
  .opt-full-icon { font-size: 2rem; flex-shrink: 0; }
  .opt-full-body { flex: 1; }
  .opt-full-name { font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--dark); }
  .opt-full-desc { font-size: 0.8rem; color: var(--mid); margin-top: 0.2rem; line-height: 1.5; }
  .opt-full-price { font-size: 1.1rem; font-weight: 700; color: var(--green); font-family: 'Poppins', sans-serif; flex-shrink: 0; }

  /* ─── FIELDS ──────────────────────────────────────────────── */
  .field { margin-bottom: 1.2rem; }
  .field label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--dark); margin-bottom: 0.4rem; }
  .field input, .field select {
    width: 100%; padding: 0.9rem 1.1rem;
    border: 1.5px solid var(--border); border-radius: 12px;
    font-family: 'Inter', sans-serif; font-size: 0.92rem; color: var(--dark);
    background: var(--cream); outline: none; transition: border-color 0.2s;
    appearance: none; font-weight: 400;
  }
  .field input:focus, .field select:focus { border-color: var(--green); background: var(--white); }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* ─── HORAIRE ─────────────────────────────────────────────── */
  .horaire-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
  .horaire-slot {
    border: 1.5px solid var(--border); border-radius: 10px;
    padding: 0.7rem 0.5rem; text-align: center; cursor: pointer;
    font-size: 0.85rem; font-weight: 600; color: var(--mid);
    background: var(--cream); transition: all 0.15s;
  }
  .horaire-slot:hover { border-color: var(--green); color: var(--green); background: var(--green-xpale); }
  .horaire-slot.selected { border-color: var(--green); color: var(--green); background: var(--green-xpale); }
  .horaire-slot.disabled { opacity: 0.35; cursor: not-allowed; }

  /* ─── RECAP ───────────────────────────────────────────────── */
  .recap-block {
    background: var(--green-xpale); border: 1px solid var(--green-pale);
    border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem;
  }
  .recap-title {
    font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 700;
    color: var(--green); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem;
  }
  .recap-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 0.5rem 0; border-bottom: 1px solid var(--green-pale); font-size: 0.88rem;
  }
  .recap-row:last-child { border-bottom: none; }
  .recap-row-label { color: var(--mid); }
  .recap-row-val { font-weight: 600; color: var(--dark); text-align: right; max-width: 60%; }
  .recap-total {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 1rem; padding-top: 1rem; border-top: 2px solid var(--green-pale);
  }
  .recap-total-label { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.9rem; }
  .recap-total-price { font-family: 'Poppins', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--green); }

  /* ─── BADGES ──────────────────────────────────────────────── */
  .frais-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.35rem 0.8rem; border-radius: 50px; font-size: 0.78rem; font-weight: 600; margin-top: 0.5rem;
  }
  .frais-badge.free { background: rgba(0,194,122,0.08); color: var(--success); border: 1px solid rgba(0,194,122,0.25); }
  .frais-badge.paid { background: rgba(251,191,36,0.1); color: #b45309; border: 1px solid rgba(251,191,36,0.3); }

  .distance-info {
    background: var(--cream); border: 1px solid var(--border); border-radius: 12px;
    padding: 1rem 1.2rem; margin-top: 1rem; font-size: 0.83rem; color: var(--mid);
    display: none; line-height: 1.6;
  }
  .distance-info.show { display: block; }

  /* ─── CARD NAV ────────────────────────────────────────────── */
  .card-nav {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 2rem; gap: 1rem;
  }
  .btn-prev {
    padding: 0.85rem 1.8rem; border-radius: 50px; font-size: 0.9rem; font-weight: 600;
    border: 1.5px solid var(--border); color: var(--mid); background: none;
    cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.2s;
  }
  .btn-prev:hover { border-color: var(--dark); color: var(--dark); }
  .btn-next {
    flex: 1; padding: 0.95rem 1.8rem; border-radius: 50px; font-size: 0.95rem; font-weight: 600;
    background: var(--dark); color: var(--white); border: none;
    cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.2s;
  }
  .btn-next:hover { background: var(--green); transform: translateY(-1px); }
  .btn-next:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

  /* ─── SUCCESS ─────────────────────────────────────────────── */
  .success-wrap { text-align: center; padding: 1rem 0; }
  .success-icon { font-size: 4rem; margin-bottom: 1.2rem; display: block; animation: pop 0.5s ease; }
  @keyframes pop { 0% { transform: scale(0); } 70% { transform: scale(1.15); } 100% { transform: scale(1); } }
  .success-title { font-family: 'Poppins', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--dark); margin-bottom: 0.6rem; }
  .success-sub { color: var(--mid); font-size: 0.92rem; line-height: 1.7; margin-bottom: 2rem; font-weight: 300; }
  .success-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-wa {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #25d366; color: white; padding: 0.9rem 1.8rem; border-radius: 50px;
    font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: all 0.2s;
  }
  .btn-wa:hover { background: #1da851; transform: translateY(-2px); }
  .btn-home {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--cream); border: 1.5px solid var(--border); color: var(--dark);
    padding: 0.9rem 1.8rem; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
    text-decoration: none; transition: all 0.2s;
  }
  .btn-home:hover { border-color: var(--dark); transform: translateY(-1px); }

  /* ─── VEHICLE TYPE GRID ──────────────────────────────────── */
  .vehicle-type-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.6rem; margin-top: 0.8rem;
  }
  .vtype-card {
    border: 1.5px solid var(--border); border-radius: 12px;
    padding: 0.9rem 0.4rem; cursor: pointer;
    transition: all 0.2s; text-align: center; background: var(--cream);
    position: relative;
  }
  .vtype-card:hover { border-color: var(--green); background: var(--green-xpale); transform: translateY(-2px); }
  .vtype-card.selected { border-color: var(--green); background: var(--green-xpale); }
  .vtype-card.selected::after {
    content: '✓'; position: absolute; top: 5px; right: 7px;
    font-size: 0.65rem; font-weight: 700; color: var(--green);
  }
  .vtype-icon { font-size: 1.5rem; display: block; margin-bottom: 0.3rem; }
  .vtype-name { font-size: 0.68rem; font-weight: 600; color: var(--dark); line-height: 1.2; }

  /* ─── ALERT BOX ───────────────────────────────────────────── */
  .alert-box {
    background: #fff8e1; border: 1.5px solid #fbbf24;
    border-radius: 14px; padding: 1.1rem 1.3rem; margin-top: 1rem;
    display: none;
  }
  .alert-box.show { display: block; animation: fadeUp 0.3s ease both; }
  .alert-box-title {
    font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 0.9rem;
    color: #92400e; margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.4rem;
  }
  .alert-box-body { font-size: 0.82rem; color: #78350f; line-height: 1.6; }
  .alert-checkbox-row {
    display: flex; align-items: center; gap: 0.6rem;
    margin-top: 0.8rem; cursor: pointer;
  }
  .alert-checkbox-row input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--green); cursor: pointer; flex-shrink: 0; }
  .alert-checkbox-row label { font-size: 0.83rem; font-weight: 500; color: #78350f; cursor: pointer; line-height: 1.4; }
  .alert-extra {
    margin-top: 0.6rem; font-size: 0.78rem; color: #b45309;
    background: rgba(251,191,36,0.15); border-radius: 8px; padding: 0.4rem 0.7rem;
    font-weight: 600;
  }

  /* ─── OPTIONS SECTION ─────────────────────────────────────── */
  .options-section {
    margin-top: 1.5rem; display: none;
  }
  .options-section.show { display: block; animation: fadeUp 0.3s ease both; }
  .option-check-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.85rem 1rem; border: 1.5px solid var(--border);
    border-radius: 12px; margin-bottom: 0.6rem; cursor: pointer;
    background: var(--cream); transition: all 0.2s; gap: 1rem;
  }
  .option-check-item:hover { border-color: var(--green); background: var(--green-xpale); }
  .option-check-item.checked { border-color: var(--green); background: var(--green-xpale); }
  .option-check-left { display: flex; align-items: center; gap: 0.7rem; flex: 1; }
  .option-check-left input[type=checkbox] { width: 17px; height: 17px; accent-color: var(--green); cursor: pointer; flex-shrink: 0; }
  .option-check-info { flex: 1; }
  .option-check-name { font-size: 0.88rem; font-weight: 600; color: var(--dark); }
  .option-check-desc { font-size: 0.75rem; color: var(--mid); margin-top: 0.1rem; }
  .option-check-price { font-size: 0.9rem; font-weight: 700; color: var(--green); flex-shrink: 0; font-family: 'Poppins', sans-serif; }

  /* Tapis counter */
  .tapis-counter {
    display: none; align-items: center; gap: 0.6rem;
    margin-top: 0.5rem; padding: 0.6rem 1rem 0.6rem 3rem;
  }
  .tapis-counter.show { display: flex; }
  .tapis-btn {
    width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--green);
    background: none; color: var(--green); font-size: 1rem; font-weight: 700;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
  }
  .tapis-btn:hover { background: var(--green); color: white; }
  .tapis-count { font-size: 0.9rem; font-weight: 700; color: var(--dark); min-width: 20px; text-align: center; }
  .tapis-label { font-size: 0.78rem; color: var(--mid); }

  /* ─── CALENDRIER ──────────────────────────────────────────── */
  .cal-wrap {
    border: 1.5px solid var(--border); border-radius: var(--radius);
    overflow: hidden; margin-bottom: 1.5rem;
  }
  .cal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.9rem 1.2rem;
    background: var(--green); color: white;
  }
  .cal-month-label {
    font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700;
    letter-spacing: -0.01em; text-transform: capitalize;
  }
  .cal-nav {
    background: rgba(255,255,255,0.2); border: none; color: white;
    width: 32px; height: 32px; border-radius: 50%; font-size: 1.2rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.15s; line-height: 1;
  }
  .cal-nav:hover { background: rgba(255,255,255,0.35); }
  .cal-weekdays {
    display: grid; grid-template-columns: repeat(7, 1fr);
    background: rgba(0,125,255,0.07);
    border-bottom: 1px solid var(--border);
  }
  .cal-weekdays span {
    text-align: center; padding: 0.55rem 0;
    font-size: 0.7rem; font-weight: 700; color: var(--mid);
    text-transform: uppercase; letter-spacing: 0.04em;
  }
  .cal-grid {
    display: grid; grid-template-columns: repeat(7, 1fr);
    background: var(--white);
  }
  .cal-day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    font-size: 0.88rem; font-weight: 600;
    border: 1px solid transparent; cursor: pointer;
    transition: all 0.15s; position: relative;
    margin: 2px; border-radius: 10px;
  }
  .cal-day.empty { cursor: default; }
  .cal-day.past { color: #ccc; cursor: not-allowed; }
  .cal-day.full {
    background: #fee2e2; color: #ef4444; cursor: not-allowed;
    border-color: #fca5a5;
  }
  .cal-day.full::after {
    content: ''; position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%);
    width: 5px; height: 5px; border-radius: 50%; background: #ef4444;
  }
  .cal-day.avail {
    background: #dcfce7; color: #16a34a;
    border-color: #86efac;
  }
  .cal-day.avail:hover {
    background: #16a34a; color: white; border-color: #16a34a;
    transform: scale(1.08); box-shadow: 0 4px 12px rgba(22,163,74,0.3);
  }
  .cal-day.avail::after {
    content: ''; position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%);
    width: 5px; height: 5px; border-radius: 50%; background: #16a34a;
  }
  .cal-day.avail:hover::after { background: white; }
  .cal-day.selected-day {
    background: #16a34a !important; color: white !important;
    border-color: #16a34a !important; box-shadow: 0 4px 14px rgba(22,163,74,0.4);
    transform: scale(1.08);
  }
  .cal-day.selected-day::after { background: white !important; }
  .cal-day.today-marker { box-shadow: inset 0 0 0 2px var(--green); }

  /* ─── RESPONSIVE ──────────────────────────────────────────── */
  /* ===== RESPONSIVE INTERMEDIAIRE — TABLETTES / GRANDS TELEPHONES (601-900px) ===== */
  @media (max-width: 900px) and (min-width: 601px) {
    .page-wrap { padding: 6rem 1.2rem 4rem; }
    .vehicle-type-grid { grid-template-columns: repeat(4, 1fr); }
  }

  /* ===== RESPONSIVE FIN — PETITS TELEPHONES ===== */
  @media (max-width: 600px) {
    nav { padding: 1rem 5%; }
    .nav-logo { font-size: 1.15rem; }
    .page-wrap { padding: 5rem 1rem 4rem; }
    .page-title { font-size: clamp(1.5rem, 7vw, 2rem); }
    .page-sub { font-size: 0.88rem; }

    /* Barre d'étapes : réduire les points et masquer les libellés texte pour éviter le chevauchement */
    .step-bar { margin-bottom: 2.2rem; }
    .step-dot { width: 26px; height: 26px; font-size: 0.68rem; }
    .step-label { display: none; }

    .card { padding: 1.5rem 1.1rem; border-radius: 16px; }
    .card-title { font-size: 1.25rem; }
    .card-eyebrow { font-size: 0.75rem; }
    .card-sub { font-size: 0.85rem; }

    /* Options en grille : passer à 1 seule colonne pour rester lisible et garder des cibles tactiles confortables */
    .option-grid.cols2, .option-grid.cols3 { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
    .opt-card { padding: 1rem 0.7rem; }
    .opt-icon { font-size: 1.5rem; }
    .opt-name { font-size: 0.82rem; }
    .opt-desc { font-size: 0.7rem; }

    .opt-full { padding: 1rem 1.1rem; gap: 0.8rem; }
    .opt-full-icon { font-size: 1.6rem; }
    .opt-full-name { font-size: 0.88rem; }
    .opt-full-desc { font-size: 0.75rem; }
    .opt-full-price { font-size: 1rem; }

    .option-check-item { padding: 0.9rem; }
    .option-check-name { font-size: 0.85rem; }
    .option-check-desc { font-size: 0.72rem; }

    /* Champs de formulaire : cibles tactiles plus confortables au pouce */
    .field input, .field select { padding: 0.85rem 1rem; font-size: 1rem; } /* 16px+ évite le zoom automatique iOS au clic */
    .field-row { grid-template-columns: 1fr; }

    /* Type de véhicule : passer de 5 colonnes fixes à 3, pour des cartes réellement cliquables au pouce */
    .vehicle-type-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .vtype-card { padding: 0.7rem 0.3rem; }
    .vtype-icon { font-size: 1.3rem; }
    .vtype-name { font-size: 0.72rem; }

    /* Calendrier : boutons de navigation agrandis pour le pouce, jours plus lisibles */
    .cal-header { padding: 0.8rem 1rem; }
    .cal-month-label { font-size: 0.92rem; }
    .cal-nav { width: 40px; height: 40px; font-size: 1.3rem; }
    .cal-day { font-size: 0.82rem; margin: 1px; }
    .cal-weekdays span { font-size: 0.64rem; padding: 0.45rem 0; }

    /* Créneaux horaires : 2 colonnes au lieu de 3, plus grands et faciles à toucher */
    .horaire-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .horaire-slot { padding: 0.85rem 0.5rem; font-size: 0.9rem; }

    /* Navigation entre étapes : boutons pleine largeur, empilés, faciles à atteindre au pouce */
    .card-nav { flex-direction: column-reverse; gap: 0.7rem; }
    .btn-prev, .btn-next { width: 100%; text-align: center; justify-content: center; padding: 0.95rem; }
  }