    /* ==========================================================
       MODAL CENTRES — Trouver un centre
    ========================================================== */
    .center-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding: 24px 16px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .center-modal.is-open {
      opacity: 1;
      visibility: visible;
    }

    /* Backdrop */
    .center-modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(10, 10, 20, 0.55);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    /* Dialog container */
    .center-modal-dialog {
      position: relative;
      width: 100%;
      max-width: 520px;
      max-height: calc(100vh - 48px);
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transform: translateY(16px) scale(0.97);
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .center-modal.is-open .center-modal-dialog {
      transform: translateY(0) scale(1);
    }

    /* Header */
    .center-modal-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      padding: 20px 20px 16px;
      border-bottom: 1px solid #f0f0f0;
      background: #fff;
      flex-shrink: 0;
    }
    .center-modal-header-text {
      min-width: 0;
    }
    .center-modal-header h3 {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 4px;
      font-size: 18px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--dark, #1a1a1a);
      letter-spacing: -0.2px;
      line-height: 1.2;
    }
    .center-modal-header h3 svg {
      flex-shrink: 0;
    }
    .center-modal-header p {
      margin: 0;
      color: #888;
      font-size: 12.5px;
      font-weight: 500;
      line-height: 1.4;
    }
    .center-modal-header p strong {
      color: var(--dark, #1a1a1a);
      font-weight: 700;
    }
    .center-modal-header p em {
      font-style: normal;
      color: var(--orange, #F26522);
      font-weight: 600;
    }

    /* Close button */
    .center-modal-close {
      flex-shrink: 0;
      width: 36px;
      height: 36px;
      border: none;
      border-radius: 10px;
      background: var(--gray, #F4F4F4);
      color: #555;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, transform 0.15s;
    }
    .center-modal-close:hover {
      background: #eaeaea;
      color: var(--dark, #1a1a1a);
      transform: scale(1.05);
    }

    /* Scrollable body */
    .center-modal-body {
      padding: 16px;
      overflow-y: auto;
      flex: 1 1 auto;
      overscroll-behavior: contain;
    }
    .center-modal-body::-webkit-scrollbar { width: 6px; }
    .center-modal-body::-webkit-scrollbar-thumb { background: #ddd; border-radius: 999px; }
    .center-modal-body::-webkit-scrollbar-track { background: transparent; }

    /* ======= Hero Modal (Prendre RDV) ======= */
    .hero-modal-dialog {
      max-width: 560px;
    }

    .hero-modal-top {
      padding: 24px 24px 20px;
      border-bottom: 1px solid #f0f0f0;
      background: #fff;
      flex-shrink: 0;
    }

    .hero-modal-title-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .hero-modal-badge {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: var(--orange, #F26522);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .hero-modal-title-text {
      flex: 1;
      min-width: 0;
    }
    .hero-modal-title-text h3 {
      margin: 0 0 2px;
      font-size: 17px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--dark, #1a1a1a);
      letter-spacing: -0.2px;
      line-height: 1.2;
    }
    .hero-modal-title-text p {
      margin: 0;
      font-size: 12.5px;
      font-weight: 500;
      color: #888;
      line-height: 1.4;
    }
    .hero-modal-title-text p strong {
      color: var(--dark, #1a1a1a);
      font-weight: 700;
    }
    .hero-modal-title-text p em {
      font-style: normal;
      color: var(--orange, #F26522);
      font-weight: 600;
    }

    /* Close button is already styled by .center-modal-close — positioned inside title-row flex */

    /* Search row */
    .hero-modal-search-row {
      display: flex;
      width: 100%;
    }
    .hero-modal-search-wrap {
      flex: 1;
      position: relative;
      display: flex;
      align-items: center;
    }
    .hero-modal-search-ico {
      position: absolute;
      left: 14px;
      pointer-events: none;
      flex-shrink: 0;
    }
    .hero-modal-search-wrap input {
      width: 100%;
      height: 50px;
      padding: 0 16px 0 44px;
      font-size: 14.5px;
      font-family: inherit;
      font-weight: 500;
      color: var(--dark, #1a1a1a);
      border: 2px solid #e8e8e8;
      border-radius: 14px;
      background: #f8f8f9;
      outline: none;
      transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    }
    .hero-modal-search-wrap input:focus {
      border-color: var(--orange, #F26522);
      box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.10);
      background: #fff;
    }
    .hero-modal-search-wrap input::placeholder {
      color: #b5b5b5;
      font-weight: 400;
      font-size: 13.5px;
    }
    /* Google Places autocomplete dropdown above modal */
    .pac-container {
      z-index: 100001 !important;
      border-radius: 12px !important;
      border: none !important;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04) !important;
      margin-top: 4px !important;
      font-family: inherit !important;
    }
    .pac-item {
      padding: 10px 14px !important;
      font-size: 13px !important;
      cursor: pointer !important;
      border-top: 1px solid #f5f5f5 !important;
    }
    .pac-item:first-child {
      border-top: none !important;
    }
    .pac-item:hover {
      background: #fef6f1 !important;
    }
    .pac-item-selected {
      background: #fef6f1 !important;
    }
    .pac-icon {
      margin-top: 2px !important;
    }
    .pac-item-query {
      font-size: 13px !important;
      font-weight: 600 !important;
      color: var(--dark, #1a1a1a) !important;
    }

    /* Empty state */
    .hero-modal-empty {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      padding: 40px 24px;
      text-align: center;
    }
    .hero-modal-empty-circle {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(242, 101, 34, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-modal-empty-msg {
      margin: 0;
      font-size: 13px;
      color: #888;
      font-weight: 500;
      line-height: 1.6;
      max-width: 320px;
    }
    .hero-modal-all-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 2px;
      font-size: 12.5px;
      font-weight: 700;
      color: var(--orange, #F26522);
      text-decoration: none;
      transition: color 0.2s;
    }
    .hero-modal-all-link:hover {
      color: #d85a1e;
    }
    .hero-modal-all-link svg {
      transition: transform 0.2s;
    }
    .hero-modal-all-link:hover svg {
      transform: translateX(3px);
    }

    /* Loading spinner */
    .center-loading {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      padding: 48px 10px;
      color: #999;
      font-size: 13px;
      font-weight: 500;
    }
    .center-loading-spinner {
      width: 36px;
      height: 36px;
      border: 3px solid #f0f0f0;
      border-top-color: var(--orange, #F26522);
      border-radius: 50%;
      animation: modal-spin 0.7s linear infinite;
    }
    @keyframes modal-spin {
      to { transform: rotate(360deg); }
    }

    /* Empty state */
    .center-empty {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 40px 16px;
      text-align: center;
    }
    .center-empty p {
      margin: 0;
      font-size: 15px;
      font-weight: 600;
      color: #555;
    }
    .center-empty span {
      font-size: 13px;
      color: #aaa;
      font-weight: 400;
    }

    /* Results grid */
    .center-results-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
    }

    /* ---- Card ---- */
    .center-card {
      background: #fff;
      border: 1px solid #ebebeb;
      border-radius: 16px;
      padding: 18px;
      transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
      animation: card-slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
    }
    .center-card:hover {
      border-color: rgba(242, 101, 34, 0.25);
      box-shadow: 0 8px 24px rgba(242, 101, 34, 0.08), 0 2px 8px rgba(0,0,0,0.04);
      transform: translateY(-2px);
    }
    @keyframes card-slide-up {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Card head */
    .center-card-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 14px;
    }
    .center-card-title {
      margin: 0;
      font-size: 16px;
      line-height: 1.15;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--dark, #1a1a1a);
      letter-spacing: -0.2px;
    }
    .center-card-distance {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: var(--orange-light, #FFF0E8);
      color: var(--orange, #F26522);
      border: 1px solid rgba(242, 101, 34, 0.15);
      border-radius: 999px;
      padding: 4px 10px;
      font-size: 11px;
      font-weight: 700;
      white-space: nowrap;
    }

    /* Info rows */
    .center-card-infos {
      display: grid;
      gap: 10px;
      margin-bottom: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid #f3f3f3;
    }
    .center-info-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .center-info-icon {
      width: 32px;
      height: 32px;
      flex: 0 0 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--orange-light, #FFF0E8);
      color: var(--orange, #F26522);
      border-radius: 8px;
    }
    .center-info-icon svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .center-info-text { min-width: 0; }
    .center-info-label {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      color: #b0b0b0;
      letter-spacing: 0.4px;
      margin-bottom: 2px;
    }
    .center-info-value {
      color: #444;
      font-size: 13.5px;
      line-height: 1.35;
      font-weight: 500;
      word-break: break-word;
    }
    .center-phone-link {
      display: inline-block;
      color: var(--orange, #F26522);
      font-size: 14px;
      line-height: 1.2;
      font-weight: 700;
      text-decoration: none;
      transition: color 0.2s;
    }
    .center-phone-link:hover {
      color: #d85a1e;
      text-decoration: underline;
    }

    /* Action buttons */
    .centre-card-actions {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
    }
    .btn-discover {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      height: 44px;
      padding: 0 16px;
      background: var(--dark, #1a1a1a);
      color: #fff;
      border-radius: 12px;
      text-decoration: none;
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.3px;
      text-transform: uppercase;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-discover:hover {
      background: #333;
      transform: translateY(-1px);
    }
    .btn-discover svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }
    .btn-rdv-card {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      height: 44px;
      padding: 0 16px;
      background: var(--orange, #F26522);
      color: #fff;
      border-radius: 12px;
      text-decoration: none;
      font-size: 11.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-rdv-card:hover {
      background: #d85a1e;
      transform: translateY(-1px);
    }
    .btn-rdv-card svg { flex-shrink: 0; }

    /* ---- Modal responsive ---- */
    @media (max-width: 640px) {
      .center-modal {
        padding: 24px 12px;
        align-items: flex-start;
      }
      .center-modal-dialog {
        max-height: calc(100vh - 24px);
        border-radius: 20px 20px 12px 12px;
      }
      .center-modal.is-open .center-modal-dialog {
        transform: translateY(0) scale(1);
      }
      .center-modal-header {
        padding: 16px 16px 12px;
      }
      .center-modal-header h3 {
        font-size: 16px;
      }
      .center-modal-body {
        padding: 12px;
      }
      .hero-modal-top {
        padding: 18px 16px 16px;
      }
      .hero-modal-title-row {
        margin-bottom: 14px;
      }
      .hero-modal-title-text h3 {
        font-size: 15px;
      }
      .hero-modal-search-wrap input {
        height: 46px;
        font-size: 13.5px;
      }
      .hero-modal-empty {
        padding: 28px 16px;
      }
      .center-card {
        padding: 14px;
        border-radius: 14px;
      }
      .center-card-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }
      .center-card-title { font-size: 15px; }
      .centre-card-actions {
        grid-template-columns: 1fr;
      }
    }
