/* ========== 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('../images/site/hero-home-page.png') 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('../images/site/hero-home-page.png') 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;
    }

    /* ========== SEARCH RESULT COUNT — banner pill ========== */
    .search-result-count {
      display: none;
      max-width: 640px;
      margin: 18px auto 0;
      padding: 12px 22px;
      background: #fff;
      border: 1px solid rgba(242,101,34,0.15);
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      color: var(--dark, #1a1a1a);
      text-align: center;
      line-height: 1.4;
      box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    }
    .search-result-count.visible { display: block; }
    .search-result-count strong {
      color: var(--orange);
      font-weight: 800;
    }

    /* ========== Google Places Autocomplete dropdown ========== */
    .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;
      overflow: hidden !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;
    }

    /* ========== MAP SECTION ========== */
    .map-section {
      padding: 0 56px 72px;
      background: #fff;
    }
    .map-wrapper {
      width: 100%;
      max-width: 900px;
      height: 420px;
      margin: 0 auto;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid #e0e0e0;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }

    /* Google Maps InfoWindow override */
    .gm-style .gm-style-iw-c {
      border-radius: 14px !important;
      padding: 14px 18px 16px 18px !important;
      box-shadow: 0 10px 40px rgba(0,0,0,0.18) !important;
      max-width: 360px !important;
    }
    .gm-style .gm-style-iw-d {
      overflow: visible !important;
      max-height: none !important;
      padding-right: 0 !important;
    }
    .gm-style .gm-style-iw-chr {
      position: absolute !important;
      top: 0 !important;
      right: 0 !important;
      height: 0 !important;
      min-height: 0 !important;
      padding: 0 !important;
      margin: 0 !important;
      z-index: 2;
    }
    .gm-style .gm-style-iw-ch {
      padding: 0 !important;
      height: 0 !important;
      display: none !important;
    }
    .gm-style .gm-style-iw-tc::after {
      background: #fff !important;
    }
    .gm-style .gm-ui-hover-effect {
      top: 10px !important;
      right: 10px !important;
      width: 36px !important;
      height: 36px !important;
      border-radius: 10px !important;
      background: var(--gray, #F4F4F4) !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      opacity: 1 !important;
      transition: background .2s, color .2s, transform .15s !important;
    }
    .gm-style .gm-ui-hover-effect:hover {
      background: #eaeaea !important;
      transform: scale(1.05);
    }
    .gm-style .gm-ui-hover-effect > span {
      margin: 0 !important;
      width: 16px !important;
      height: 16px !important;
    }

    /* Distance badge on cards */
    .distance-badge {
      display: inline-block;
      background: var(--orange-light, #FFF0E8);
      color: var(--orange);
      font-size: 11px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px;
      border: 1px solid rgba(242,101,34,0.15);
      margin-bottom: 10px;
    }

    /* Centres section subtitle */
    .centres-section-subtitle {
      font-size: 14px;
      color: #888;
      text-align: center;
      margin-bottom: 44px;
    }

    /* ========== NOS CENTRES ========== */
    .centres-section {
      padding: 72px 56px 48px;
      background: #fff;
    }
    .centres-section-header {
      text-align: center;
      margin-bottom: 44px;
    }
    .centres-section-header h2,
    .centres-section > h2 {
      font-size: 28px;
      font-weight: 900;
      text-transform: uppercase;
      text-align: center;
      margin-bottom: 8px;
    }
    .centres-section-header p,
    .centres-section > p {
      font-size: 14px;
      color: #888;
      text-align: center;
      margin-bottom: 0;
    }
    .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 is now set dynamically via inline style in Blade */
    }
    /* 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,
    a.info-value.phone {
      font-weight: 800;
      color: var(--orange);
      font-size: 13px;
      text-decoration: none;
      display: inline-block;
      transition: color .2s;
    }
    a.info-value.phone:hover {
      color: #d9551a;
      text-decoration: underline;
    }
    .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('../images/site/section-texture-background.png') center/cover no-repeat !important;
    }
    .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; }
      #google-map { height: 360px !important; }
      .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: 340px; }
      .hero-centre-content { padding: 40px 20px 32px; max-width: 100%; }
      .hero-centre h1 { font-size: 30px; }
      .hero-centre .hero-desc { font-size: 13px; margin-bottom: 24px; }
      .hero-centre .btn-rdv-hero { padding: 14px 28px; font-size: 11px; }
      .hero-centre-building { display: none; }
      .franchise-badge { display: none; }
      .hero-breadcrumb-pill { display: none; }
      .hero-centre-breadcrumb { font-size: 10px; margin-bottom: 14px; }

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

      .search-section { padding: 36px 16px 28px; }
      .search-section h2 { font-size: 24px; margin-bottom: 24px; }
      .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; font-size: 11px; }
      .search-result-count { font-size: 12px; padding: 10px 16px; margin-top: 14px; }

      .map-section { padding: 0 16px 36px; }
      #google-map { height: 260px !important; }
      .map-wrapper { border-radius: 12px; height: auto; }

      .centres-section { padding: 36px 16px 28px; }
      .centres-section-header { margin-bottom: 28px; }
      .centres-section-header h2,
      .centres-section > h2 { font-size: 22px; }
      .centres-section-subtitle { font-size: 12px; margin-bottom: 28px; }
      .centres-grid { grid-template-columns: 1fr; gap: 16px; padding: 0; }
      .centre-card { border-radius: 12px; }
      .centre-card-photo { height: 140px; }
      .centre-card-body { padding: 16px 18px 18px; }
      .centre-card-body h3 { font-size: 16px; margin-bottom: 2px; }
      .centre-card-body .centre-subtitle { font-size: 10px; margin-bottom: 12px; }
      .centre-card-body .franchise-tag { font-size: 9px; margin-bottom: 12px; }
      .centre-info-row { margin-bottom: 8px; gap: 8px; }
      .centre-info-row .info-label { font-size: 8px; }
      .centre-info-row .info-value { font-size: 11px; }
      .centre-info-row .info-value.phone,
      a.info-value.phone { font-size: 12px; }
      .centre-card-actions { flex-direction: column; gap: 6px; margin-top: 14px; }
      .btn-discover, .btn-rdv-card { width: 100%; justify-content: center; padding: 11px 14px; }
      .distance-badge { font-size: 10px; padding: 2px 8px; }
      /* Mobile : surbrillance orange au tap */
      .centre-card:active {
        border-color: var(--orange);
        box-shadow: 0 0 0 4px rgba(242,101,34,0.15);
      }
      .load-more { padding: 28px 0 16px; }
      .load-more button { width: 48px; height: 48px; }
      .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: 300px; }
      .hero-centre-content { padding: 32px 16px 28px; }
      .hero-centre h1 { font-size: 26px; }
      .hero-centre .hero-desc { font-size: 12px; margin-bottom: 20px; }
      .hero-centre .btn-rdv-hero { padding: 12px 22px; font-size: 10px; }

      .search-section { padding: 28px 12px 24px; }
      .search-section h2 { font-size: 21px; margin-bottom: 20px; }
      .search-bar input { font-size: 12px; padding: 10px 8px; }
      .search-bar .btn-search { padding: 10px 16px; font-size: 10px; }
      .search-result-count { font-size: 11px; padding: 8px 14px; }

      .map-section { padding: 0 12px 28px; }
      #google-map { height: 220px !important; }
      .map-wrapper { border-radius: 10px; height: auto; }

      .centres-section { padding: 28px 12px 24px; }
      .centres-section-header { margin-bottom: 20px; }
      .centres-section-header h2,
      .centres-section > h2 { font-size: 20px; }
      .centres-section-subtitle { font-size: 11px; margin-bottom: 20px; }
      .centres-grid { gap: 14px; }
      .centre-card-photo { height: 120px; }
      .centre-card-body { padding: 14px 14px 16px; }
      .centre-card-body h3 { font-size: 15px; }
      .centre-card-body .centre-subtitle { font-size: 10px; }
      .centre-info-row .info-value { font-size: 11px; }
      .btn-discover { font-size: 9px; padding: 10px 12px; }
      .btn-rdv-card { font-size: 9px; padding: 10px 16px; }
    }

    /* ========== TRÈS PETIT MOBILE (< 380px) ========== */
    @media (max-width: 380px) {
      .hero-centre { min-height: 260px; }
      .hero-centre-content { padding: 28px 12px 24px; }
      .hero-centre h1 { font-size: 23px; }
      .hero-centre .hero-desc { font-size: 11px; line-height: 1.5; margin-bottom: 16px; }
      .hero-centre .btn-rdv-hero { padding: 11px 20px; font-size: 10px; }
      .hero-centre-breadcrumb { font-size: 9px; margin-bottom: 10px; }

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

      .search-section { padding: 24px 8px 20px; }
      .search-section h2 { font-size: 19px; margin-bottom: 16px; }
      .search-bar { padding: 3px 3px 3px 10px; }
      .search-bar input { font-size: 11px; padding: 10px 6px; }
      .search-bar .btn-search { padding: 10px 14px; font-size: 9px; letter-spacing: 0.5px; }
      .search-locate { font-size: 10px; }
      .search-result-count { font-size: 10px; padding: 7px 10px; }

      .map-section { padding: 0 8px 24px; }
      #google-map { height: 180px !important; }

      .centres-section { padding: 24px 8px 20px; }
      .centres-section-header { margin-bottom: 16px; }
      .centres-section-header h2,
      .centres-section > h2 { font-size: 18px; }
      .centres-section-subtitle { font-size: 10px; margin-bottom: 16px; }
      .centres-grid { gap: 12px; }
      .centre-card-photo { height: 110px; }
      .centre-card-body { padding: 12px 12px 14px; }
      .centre-card-body h3 { font-size: 14px; }
      .centre-card-body .centre-subtitle { font-size: 9px; margin-bottom: 10px; }
      .centre-card-body .franchise-tag { font-size: 8px; margin-bottom: 10px; }
      .franchise-tag .check-icon { width: 12px; height: 12px; }
      .centre-info-row { gap: 6px; margin-bottom: 6px; }
      .centre-info-row .info-icon { width: 14px; }
      .centre-info-row .info-label { font-size: 8px; }
      .centre-info-row .info-value { font-size: 10px; }
      .centre-info-row .info-value.phone,
      a.info-value.phone { font-size: 11px; }
      .centre-card-actions { gap: 5px; margin-top: 10px; }
      .btn-discover { font-size: 9px; padding: 9px 10px; }
      .btn-rdv-card { font-size: 9px; padding: 9px 14px; }
      .distance-badge { font-size: 9px; padding: 2px 7px; }
      .load-more { padding: 20px 0 12px; }
      .load-more button { width: 42px; height: 42px; }
    }