/* ========== HERO CENTRE ========== */
    .hero-centre {
      position: relative;
      min-height: 520px;
      display: flex;
      align-items: stretch;
      overflow: hidden;
    }
    .hero-centre-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.2) 65%, transparent 100%),
        url('https://drive.google.com/thumbnail?id=1lBrR4DRg__q8vp6LmWNF0NlG3ETQRKnL&sz=w2000') center/cover no-repeat;
    }
    /* Simulated centre building on right */
    .hero-centre-building {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 60%;
    }
    .building-facade {
      position: absolute;
      right: 5%;
      top: 8%;
      width: 70%;
      height: 75%;
      background: url('https://drive.google.com/thumbnail?id=1lBrR4DRg__q8vp6LmWNF0NlG3ETQRKnL&sz=w2000') center/cover no-repeat;
      border-radius: 4px 4px 0 0;
    }
    .building-facade::before {
      content: '';
      position: absolute;
      top: -12px;
      left: 0;
      right: 0;
      height: 14px;
      background: #5A4A3A;
      border-radius: 2px 2px 0 0;
    }
    /* Windows */
    .building-window {
      position: absolute;
      background: linear-gradient(135deg, rgba(173,216,230,0.15) 0%, rgba(200,220,240,0.08) 100%);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 2px;
    }
    .building-window.w1 { width: 25%; height: 30%; top: 15%; left: 8%; }
    .building-window.w2 { width: 25%; height: 30%; top: 15%; left: 38%; }
    .building-window.w3 { width: 25%; height: 30%; top: 15%; right: 8%; }
    /* OuiGlass sign */
    .building-sign {
      position: absolute;
      top: 5%;
      left: 50%;
      transform: translateX(-16.666%);
      background: var(--orange);
      color: #fff;
      font-size: 14px;
      font-weight: 900;
      font-style: italic;
      padding: 8px 24px;
      border-radius: 4px;
      white-space: nowrap;
      letter-spacing: 0.5px;
    }
    .building-sign { display: none; }
    .building-window { display: none; }
    .building-facade { display: none; }
    .franchise-badge { display: none; }
    /* Franchise badge */
    .franchise-badge {
      position: absolute;
      top: 12%;
      right: 8%;
      background: var(--orange);
      color: #fff;
      padding: 10px 16px;
      border-radius: 8px;
      text-align: center;
      transform: rotate(5deg);
    }
    .franchise-badge .amount {
      font-size: 20px;
      font-weight: 900;
      line-height: 1;
    }
    .franchise-badge .label {
      font-size: 9px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    /* Breadcrumb pill */
    .hero-breadcrumb-pill { display: none; }
    .hero-centre-content {
      position: relative;
      z-index: 2;
      padding: 80px 56px 64px;
      max-width: 600px;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-centre-breadcrumb {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      opacity: 0.6;
      margin-bottom: 20px;
    }
    .hero-centre h1 {
      font-size: 52px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.04;
      margin-bottom: 20px;
      letter-spacing: -1px;
    }
    /* h1 all white — no orange on this page */
    .hero-centre .hero-desc {
      font-size: 15px;
      line-height: 1.7;
      opacity: 0.8;
      margin-bottom: 36px;
      max-width: 470px;
    }
    .hero-centre .btn-rdv-hero {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      padding: 16px 32px;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: background .2s;
      width: fit-content;
    }
    .hero-centre .btn-rdv-hero:hover { background: #d9551a; }

    /* Hero entrance */
    .hero-centre-content > * {
      opacity: 0;
      transform: translateY(25px);
      animation: heroFadeIn .7s cubic-bezier(.25,.46,.45,.94) forwards;
    }
    .hero-centre-content > *:nth-child(1) { animation-delay: .1s; }
    .hero-centre-content > *:nth-child(2) { animation-delay: .25s; }
    .hero-centre-content > *:nth-child(3) { animation-delay: .4s; }
    .hero-centre-content > *:nth-child(4) { animation-delay: .55s; }
    @keyframes heroFadeIn {
      to { opacity: 1; transform: translateY(0); }
    }

    /* ========== SCROLL BANNER ========== */
    .scroll-banner {
      background: var(--orange);
      color: #fff;
      padding: 13px 0;
      overflow: hidden;
      white-space: nowrap;
    }
    .scroll-banner-track {
      display: inline-flex;
      animation: scrollBanner 25s linear infinite;
    }
    .scroll-banner-item {
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      padding: 0 20px;
      display: inline-flex;
      align-items: center;
      gap: 16px;
    }
    .scroll-banner-item::after {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #fff;
      flex-shrink: 0;
    }
    @keyframes scrollBanner {
      0% { transform: translateX(0); }
      100% { transform: translateX(-16.666%); }
    }

    /* ========== SEARCH SECTION ========== */
    .search-section {
      padding: 72px 56px 48px;
      text-align: center;
      background: #fff;
    }
    .search-section h2 {
      font-size: 38px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.1;
      margin-bottom: 32px;
    }
    .search-section h2 span { color: var(--orange); }
    .search-bar {
      display: flex;
      align-items: center;
      gap: 0;
      background: #fff;
      border: 2px solid #e0e0e0;
      border-radius: 40px;
      padding: 6px 6px 6px 24px;
      max-width: 620px;
      width: 100%;
      margin: 0 auto;
      transition: border-color .2s;
    }
    .search-bar:focus-within { border-color: var(--orange); }
    .search-bar .search-icon {
      flex-shrink: 0;
      opacity: 0.4;
    }
    .search-bar .search-label {
      font-size: 12px;
      font-weight: 700;
      color: var(--dark);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      white-space: nowrap;
      margin-left: 8px;
    }
    .search-bar input {
      flex: 1;
      border: none;
      outline: none;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 500;
      padding: 14px 16px;
      color: var(--dark);
      background: transparent;
      min-width: 0;
    }
    .search-bar input::placeholder { color: #aaa; font-weight: 500; }
    .search-bar .btn-search {
      flex-shrink: 0;
      background: var(--orange);
      color: #fff;
      border: none;
      padding: 14px 28px;
      border-radius: 30px;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      transition: background .2s;
    }
    .search-bar .btn-search:hover { background: #d9551a; }
    .search-locate {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-left: 20px;
      font-size: 12px;
      font-weight: 700;
      color: var(--dark);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: color .2s;
      flex-shrink: 0;
    }
    .search-locate:hover { color: var(--orange); }
    .search-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      max-width: 750px;
      margin: 0 auto;
    }

    /* ========== MAP SECTION ========== */
    .map-section {
      padding: 0 56px 72px;
      background: #fff;
    }
    .map-container {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      height: 420px;
      border-radius: 16px;
      overflow: hidden;
      background: #E8E4D8;
      border: 1px solid #ddd;
    }
    /* Simulated map background */
    .map-bg {
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(180,170,155,0.2) 60px, rgba(180,170,155,0.2) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(180,170,155,0.2) 60px, rgba(180,170,155,0.2) 61px),
        linear-gradient(135deg, #E8E4D8 0%, #DDD8CC 50%, #D5D0C4 100%);
    }
    /* Simulated roads */
    .map-road {
      position: absolute;
      background: rgba(255,255,255,0.7);
    }
    .map-road.r1 { width: 3px; height: 100%; left: 30%; top: 0; }
    .map-road.r2 { width: 100%; height: 3px; top: 45%; left: 0; }
    .map-road.r3 { width: 2px; height: 100%; left: 55%; top: 0; transform: rotate(15deg); transform-origin: top; }
    .map-road.r4 { width: 100%; height: 2px; top: 70%; left: 0; transform: rotate(-5deg); transform-origin: left; }
    .map-road.highway { background: rgba(255,200,100,0.5); height: 5px; width: 120%; left: -10%; top: 35%; transform: rotate(-8deg); }
    /* Green areas */
    .map-green {
      position: absolute;
      background: rgba(160,190,140,0.3);
      border-radius: 50%;
    }
    .map-green.g1 { width: 120px; height: 80px; top: 10%; left: 10%; }
    .map-green.g2 { width: 80px; height: 60px; bottom: 15%; right: 15%; }
    .map-green.g3 { width: 60px; height: 40px; top: 60%; left: 60%; }
    /* Town labels */
    .map-town {
      position: absolute;
      font-size: 10px;
      font-weight: 600;
      color: rgba(80,70,60,0.6);
      letter-spacing: 0.5px;
    }
    .map-town.t1 { top: 20%; left: 15%; }
    .map-town.t2 { top: 55%; right: 18%; }
    .map-town.t3 { bottom: 22%; left: 40%; }
    .map-town.t4 { top: 12%; right: 25%; }
    /* Pin */
    .map-pin {
      position: absolute;
      top: 38%;
      left: 48%;
      transform: translate(-50%, -100%);
      z-index: 5;
      cursor: pointer;
    }
    .map-pin svg { filter: drop-shadow(0 3px 6px rgba(0,0,0,0.25)); }
    /* Second pin */
    .map-pin-secondary {
      position: absolute;
      top: 68%;
      left: 35%;
      transform: translate(-50%, -100%);
      z-index: 4;
      opacity: 0.6;
    }
    /* Popup card */
    .map-popup {
      position: absolute;
      top: 18%;
      left: 8%;
      background: #fff;
      border-radius: 12px;
      padding: 20px 24px;
      width: 260px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.15);
      z-index: 10;
    }
    .map-popup::after {
      content: '';
      position: absolute;
      right: -10px;
      top: 50%;
      transform: translateY(-50%);
      border: 6px solid transparent;
      border-left-color: #fff;
    }
    .map-popup .popup-badge {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      font-size: 9px;
      font-weight: 800;
      padding: 3px 8px;
      border-radius: 4px;
      text-transform: uppercase;
      margin-bottom: 8px;
      letter-spacing: 0.5px;
    }
    .map-popup h4 {
      font-size: 15px;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .map-popup .popup-address {
      font-size: 11px;
      color: #777;
      line-height: 1.5;
      margin-bottom: 8px;
    }
    .map-popup .popup-phone {
      font-size: 14px;
      font-weight: 800;
      color: var(--orange);
      margin-bottom: 12px;
    }
    .map-popup .popup-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--orange);
      color: #fff;
      padding: 10px 18px;
      border-radius: 6px;
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: background .2s;
    }
    .map-popup .popup-btn:hover { background: #d9551a; }
    .map-popup .popup-close {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: none;
      background: var(--gray);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
    }
    .map-popup .popup-close:hover { background: #e0e0e0; }

    /* ========== NOS CENTRES ========== */
    .centres-section {
      padding: 72px 56px 48px;
      background: #fff;
    }
    .centres-section > h2 {
      font-size: 28px;
      font-weight: 900;
      text-transform: uppercase;
      text-align: center;
      margin-bottom: 8px;
    }
    .centres-section > p {
      font-size: 14px;
      color: #888;
      text-align: center;
      margin-bottom: 44px;
    }
    .centres-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    /* Centre card */
    .centre-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      border: 2px solid transparent;
      transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, opacity .3s ease;
    }
    .centre-card:hover {
      transform: translateY(-4px);
      border-color: var(--orange);
      box-shadow: 0 0 0 4px rgba(242,101,34,0.15), 0 12px 36px rgba(0,0,0,0.1);
    }
    .centre-card {
      position: relative;
    }
    .centre-card-photo {
      position: relative;
      height: 160px;
      overflow: hidden;
    }
    .centre-card-photo .photo-bg {
      position: absolute;
      inset: 0;
      background: url('https://drive.google.com/thumbnail?id=1iaWhz2mgBHO6df2AkIJrcgOD0ogcgp26&sz=w2000') center/cover no-repeat;
    }
    /* Simulated building in card */
    .photo-building {
      position: absolute;
      bottom: 0;
      left: 10%;
      right: 10%;
      height: 70%;
      background: linear-gradient(180deg, rgba(120,105,88,0.6) 0%, rgba(80,68,55,0.8) 100%);
      border-radius: 3px 3px 0 0;
    }
    .photo-building::after {
      content: 'OuiGlass';
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-16.666%);
      background: var(--orange);
      color: #fff;
      font-size: 8px;
      font-weight: 800;
      font-style: italic;
      padding: 2px 8px;
      border-radius: 2px;
      white-space: nowrap;
    }
    .centre-card-photo .status-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      display: flex;
      align-items: center;
      gap: 5px;
      background: #fff;
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 9px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #2D8C3C;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .status-badge .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #2D8C3C;
    }
    .centre-card-body {
      padding: 20px 22px 22px;
    }
    .centre-card-body h3 {
      font-size: 17px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 2px;
    }
    .centre-card-body .centre-subtitle {
      font-size: 11px;
      color: #aaa;
      margin-bottom: 14px;
    }
    .centre-card-body .franchise-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 10px;
      font-weight: 700;
      color: #2D8C3C;
      margin-bottom: 16px;
    }
    .franchise-tag .check-icon {
      width: 14px;
      height: 14px;
      background: #2D8C3C;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .centre-info-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 10px;
    }
    .centre-info-row .info-icon {
      flex-shrink: 0;
      width: 16px;
      margin-top: 2px;
    }
    .centre-info-row .info-label {
      font-size: 9px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #aaa;
      margin-bottom: 2px;
    }
    .centre-info-row .info-value {
      font-size: 12px;
      color: #555;
      line-height: 1.4;
    }
    .centre-info-row .info-value.phone {
      font-weight: 800;
      color: var(--orange);
      font-size: 13px;
    }
    .centre-info-row .info-value.services {
      font-size: 11px;
      color: #888;
    }
    .centre-card-actions {
      display: flex;
      gap: 8px;
      margin-top: 18px;
    }
    .btn-discover {
      flex: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      background: var(--dark);
      color: #fff;
      padding: 12px 16px;
      border-radius: 8px;
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: background .2s;
    }
    .btn-discover:hover { background: #333; }
    .btn-rdv-card {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--orange);
      color: #fff;
      padding: 12px 20px;
      border-radius: 8px;
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: background .2s;
    }
    .btn-rdv-card:hover { background: #d9551a; }

    /* Centre en cours d'ouverture */
    .centre-card.opening .centre-card-photo .photo-bg {
      background: url('https://drive.google.com/thumbnail?id=1dQSw5ekAnK0yRAQdBhfH6TXeyHIY3y4O&sz=w2000') center/cover no-repeat;
    }
    .centre-card.opening .photo-building { display: none; }
    .centre-card.opening .centre-card-photo {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }
    .opening-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: #fff;
    }
    .opening-content .opening-tag {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      opacity: 0.8;
      margin-bottom: 4px;
    }
    .opening-content h4 {
      font-size: 18px;
      font-weight: 900;
      text-transform: uppercase;
    }
    .centre-card.opening .centre-card-body {
      text-align: center;
    }
    .centre-card.opening .centre-card-body .centre-subtitle {
      font-size: 12px;
      color: #888;
    }
    .btn-franchise {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      background: var(--orange);
      color: #fff;
      padding: 12px 20px;
      border-radius: 8px;
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      width: 100%;
      transition: background .2s;
    }
    .btn-franchise:hover { background: #d9551a; }

    /* Load more */
    .load-more {
      text-align: center;
      padding: 40px 0 20px;
    }
    .load-more button {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 2px solid #ddd;
      background: #fff;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: border-color .2s, transform .2s;
    }
    .load-more button:hover {
      border-color: var(--orange);
      transform: translateY(3px);
    }

    /* ========== FOOTER ========== */
    .footer {
      background: var(--dark);
      color: #fff;
      padding: 56px 56px 28px;
    }
    .footer-main {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-logo-text {
      font-size: 30px;
      font-weight: 900;
      font-style: italic;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }
    .footer-brand p {
      font-size: 13px;
      line-height: 1.6;
      opacity: 0.6;
      margin-bottom: 22px;
      max-width: 280px;
    }
    .btn-rdv-footer {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      padding: 14px 26px;
      border-radius: 30px;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .btn-rdv-footer:hover { background: #d9551a; }
    .footer-col h4 {
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 20px;
    }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a {
      font-size: 13px;
      opacity: 0.55;
      transition: opacity .2s;
    }
    .footer-col ul li a:hover { opacity: 1; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .footer-bottom .copyright { font-size: 12px; opacity: 0.4; }
    .footer-bottom-links { display: flex; gap: 28px; }
    .footer-bottom-links a { font-size: 12px; opacity: 0.45; transition: opacity .2s; }
    .footer-bottom-links a:hover { opacity: 1; }

    /* ========== ANIMATIONS ========== */
    .anim-fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94);
    }
    .anim-fade-up.visible { opacity: 1; transform: translateY(0); }
    .anim-fade-up.delay-1 { transition-delay: .1s; }
    .anim-fade-up.delay-2 { transition-delay: .2s; }
    .anim-fade-up.delay-3 { transition-delay: .3s; }
    .anim-fade-up.delay-4 { transition-delay: .4s; }

    /* ========== RESPONSIVE — TABLET ========== */
    @media (max-width: 1100px) {
      .header { padding: 10px 32px; }
      .header-nav { gap: 18px; }
      .header-nav a { font-size: 13px; }
      .hero-centre h1 { font-size: 42px; }
      .hero-centre-content { padding: 60px 36px 48px; }
      .hero-centre-building { width: 50%; }
      .search-section { padding: 56px 36px 40px; }
      .search-section h2 { font-size: 32px; }
      .map-section { padding: 0 36px 56px; }
      .map-container { height: 360px; }
      .centres-section { padding: 56px 36px 40px; }
      .centres-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
      .footer { padding: 48px 36px 24px; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    /* ========== RESPONSIVE — MOBILE ========== */
    @media (max-width: 768px) {
      .header { padding: 10px 20px; }
      .header-nav, .header-actions { display: none; }
      .burger { display: flex; }
      .logo-wrap img { width: 90px; height: 54px; }

      .hero-centre { min-height: 420px; }
      .hero-centre-content { padding: 48px 24px 40px; max-width: 100%; }
      .hero-centre h1 { font-size: 32px; }
      .hero-centre .hero-desc { font-size: 13px; }
      .hero-centre-building { display: none; }
      .franchise-badge { display: none; }
      .hero-breadcrumb-pill { display: none; }

      .scroll-banner-item { font-size: 11px; padding: 0 14px; }

      .search-section { padding: 44px 20px 32px; }
      .search-section h2 { font-size: 26px; }
      .search-row { flex-direction: column; gap: 12px; }
      .search-bar { padding: 4px 4px 4px 14px; width: 100%; display: flex; }
      .search-bar .search-label { display: none; }
      .search-bar input { padding: 12px 10px; font-size: 13px; }
      .search-bar input::placeholder { font-size: 12px; }
      .search-bar .btn-search { padding: 12px 20px; font-size: 11px; }
      .search-locate { margin-left: 0; }

      .map-section { padding: 0 20px 44px; }
      .map-container { height: 280px; border-radius: 12px; }
      .map-popup { width: 200px; padding: 14px 16px; top: 8%; left: 4%; }
      .map-popup h4 { font-size: 13px; }
      .map-popup .popup-address { font-size: 10px; }
      .map-popup .popup-phone { font-size: 12px; }
      .map-popup .popup-btn { font-size: 9px; padding: 8px 14px; }

      .centres-section { padding: 44px 20px 32px; }
      .centres-section > h2 { font-size: 22px; }
      .centres-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 4px; }
      .centre-card-photo { height: 140px; }
      .centre-card-actions { flex-direction: column; }
      .btn-discover, .btn-rdv-card { width: 100%; justify-content: center; }
      /* Mobile : surbrillance orange au tap */
      .centre-card:active {
        border-color: var(--orange);
        box-shadow: 0 0 0 4px rgba(242,101,34,0.15);
      }
      /* Popup close mobile */
      .map-popup .popup-close {
        width: 30px;
        height: 30px;
        top: 8px;
        right: 8px;
      }

      .footer { padding: 36px 20px 20px; }
      .footer-main { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
      .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    }

    /* ========== MOBILE SMALL ========== */
    @media (max-width: 420px) {
      .header { padding: 8px 16px; }
      .logo-wrap img { width: 80px; height: 48px; }
      .hero-centre { min-height: 360px; }
      .hero-centre-content { padding: 36px 18px 32px; }
      .hero-centre h1 { font-size: 26px; }
      .hero-centre .hero-desc { font-size: 12px; }
      .hero-centre .btn-rdv-hero { padding: 14px 24px; font-size: 11px; }
      .search-section h2 { font-size: 22px; }
      .map-container { height: 240px; }
      .map-popup { width: 170px; padding: 12px 14px; }
      .map-popup h4 { font-size: 12px; }
      .centres-section > h2 { font-size: 20px; }
      .centre-card-body h3 { font-size: 15px; }
      .map-popup .popup-close { width: 26px; height: 26px; }
    }