@font-face {
  font-family: 'Montserrat';
  src: url('montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
      --vert:        #99cfc5;
      --bleu:        #2996b9;
      --gris:        #bcbbbb;
      --blanc:       #ffffff;
      --txt:         #333333;
      --noir:        #000000;
      --vert-clair:  #ecf5f4;
      --bleu-dark:   #1a7a9a;
      --vert-dark:   #6db3a8;
      --gris-light:  #f4f4f4;
      --gris-border: #e2e2e2;
      --font:        'Montserrat', Arial, sans-serif;
      --sh:          0 4px 20px rgba(41,150,185,.10);
      --sh2:         0 12px 40px rgba(41,150,185,.18);
      --nav-h:       72px;
    }

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--blanc); color: var(--txt); overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--vert-clair); }
::-webkit-scrollbar-thumb { background: var(--bleu); }

    /* ─── NAV ─── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      height: var(--nav-h);
      background: var(--noir);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px;
      box-shadow: 0 2px 16px rgba(0,0,0,.15);
      transition: background .3s;
    }
    .nav.scrolled { background: var(--txt); }

    .nav__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
    .nav__logo-mark {
      width: 150px; height: auto; ;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    
    .nav__links { display: flex; align-items: center; gap: 24px; list-style: none; }
    .nav__links a { color: rgba(255,255,255,.85); font-size: 12px; letter-spacing: .08em; font-weight: 700; transition: color .2s; white-space: nowrap; }
    .nav__links a:hover { color: var(--blanc); }
    .nav__cta { background: var(--noir) !important; color: var(--blanc) !important; padding: 9px 18px; font-weight: 700 !important; display: inline-flex !important; align-items: center; gap: 6px;border: solid 1px #ffffff }
    .nav__cta:hover { background: var(--txt) !important; }
    .nav__cta svg { width: 13px; height: 13px; flex-shrink: 0; }

    .nav__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
    .nav__burger span { display: block; width: 24px; height: 2px; background: var(--blanc); transition: transform .3s, opacity .3s; }
    .nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__burger.open span:nth-child(2) { opacity: 0; }
    .nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav__mobile {
      display: none; position: fixed; inset: 0; top: var(--nav-h);
      background: var(--bleu); z-index: 99;
      flex-direction: column; align-items: center; justify-content: center; gap: 32px;
      opacity: 0; transition: opacity .3s;
    }
    .nav__mobile.open { opacity: 1; }
    .nav__mobile a { color: var(--blanc); font-size: 18px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: color .2s; }
    .nav__mobile a:hover { color: var(--vert); }

    /* general*/
  
  
  .outils__cta, .lien_boutique {
  background: none !important;
  border: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 7px !important;
  position: relative;
  text-decoration: none !important;
  display: inline-block;
  width: max-content;
  text-align: left !important;
  color: #000000 !important; 
  transition: color 0.3s ease;
}

  .outils__cta::after, .lien_boutique::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 20px; 
  background-color: currentColor !important;
  transition: width 0.5s ease-out; 
}

.outils__cta:hover::after, .lien_boutique:hover::after {
  width: 100% !important;
}

.outils__cta:hover, .lien_boutique:hover {
  background: none !important;
  box-shadow: none !important;
}
    

    /* ─── HERO ─── */
    .hero {
      max-width:1466px;
      margin: 0 auto;
      background: var(--blanc);
      position: relative; overflow: hidden;
      padding: 108px 48px 64px;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 56px; align-items: center; min-height: 400px;
    }
        
    .hero__left { position: relative; z-index: 1;padding-left:72px }
    .hero__titre { color: var(--noir); font-size: clamp(26px, 3.2vw, 44px); font-weight: 700; line-height: 1.15; letter-spacing: -.01em; margin-bottom: 14px; }
    
    .hero__sub { color: var(--txt); font-size: 13px; line-height: 1.8; max-width: 400px; margin-bottom: 28px; }

    .hero__search { display: flex; background: var(--vert-clair); border: 1px solid var(--vert); overflow: hidden; max-width: 400px; transition: border-color .2s; }
    .hero__search:focus-within { border-color: var(--vert); }
    .hero__search input { flex: 1; padding: 13px 16px; background: transparent; border: none; outline: none; color: var(--noir); font-family: var(--font); font-size: 13px; }
    .hero__search input::placeholder { color: var(--txt);opacity:0.7 }
    .hero__search button { padding: 13px 20px; background: var(--vert); border: none; cursor: pointer; color: var(--noir); font-family: var(--font); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: background .2s; white-space: nowrap; }
    .hero__search button:hover { background: #7bbdb3; }

    .hero__stats { display: flex; gap: 24px; margin-top: 26px; }
    .hero__stat strong { display: block; font-size: 24px; font-weight: 800; color: var(--vert); line-height: 1; }
    .hero__stat span { font-size: 9px; ; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }

    /* 3 cartes hero */
    .hero__right { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .hero__card { overflow: hidden; position: relative; cursor: pointer;  transition: box-shadow .3s; display: block; }
    .hero__card--graphique .hero__card__img img{width: 100%; height: 100%; object-fit: cover; object-position: 20% center;}
    .hero__card--tall { aspect-ratio: 3/3; }
    .hero__card--wide { grid-column: span 2; aspect-ratio: 16/6; }
    .hero__card--wide .hero__card__img img{width: 100%; height: 100%; object-fit: cover; object-position: center 70%;}
    .hero__card__img { width: 100%; height: 100%; overflow: hidden; position:relative}
    .hero__card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
    .hero__card:hover .hero__card__img img { transform: scale(1.05); }
    .hero__card__label { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;  padding: 28px 14px 14px; color: var(--noir); }
    .hero__card__label small { display: block; font-size: 11px; color: var(--txt); text-transform: uppercase; letter-spacing: .16em; font-weight: 700; margin-bottom: 2px; }
    .hero__card__label strong { display: block; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

    /* ─── FILTRES ─── */
    .filtres {
      background: var(--vert-clair);padding: 14px 48px;; display: flex; align-items: center;justify-content:center; gap: 10px; flex-wrap: wrap;
    }
    .filtres__label { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; color: var(--gris); white-space: nowrap; }
    .filtres__pill { background: var(--blanc); border: 1px solid var(--gris-border); padding: 6px 16px; font-size: 11px; font-family: var(--font); font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--txt); cursor: pointer; transition: all .2s; }
    .filtres__pill:hover { border-color: var(--bleu); color: var(--bleu); }
    .filtres__pill.active { background: var(--bleu); border-color: var(--bleu); color: var(--blanc); }

    /* ─── SECTIONS ─── */
    .section { padding: 80px 48px; max-width:1466px;margin:0 auto }
    .section--vert-clair { background: var(--vert-clair); }
    .s-kicker { font-size: 10px; font-weight: 700; color: var(--bleu); text-transform: uppercase; letter-spacing: .2em; margin-bottom: 10px; }
    .s-titre { font-size: clamp(22px, 2.8vw, 34px); font-weight: 700; color: var(--noir); line-height: 1.2; letter-spacing: -.01em; }
    .s-desc { font-size: 13px; font-weight: 400; line-height: 1.8; color: var(--txt); max-width: 520px; margin-top: 10px; }
    .s-head { margin-bottom: 40px; }

    /* ─── GRILLE CATALOGUE (4 cartes) ─── */
    .cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

    .cat-card { display: flex; flex-direction: column; overflow: hidden; background: var(--gris-light); transition: box-shadow .3s; cursor: pointer; text-decoration: none; }
    

    .cat-card__img { height: 290px; overflow: hidden; flex-shrink: 0;}
    .cat-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease;object-position:center}
    .card--age .cat-card__img img {object-position: center 70%}
    .card--car .cat-card__img img {object-position: center 70%}
    .card--sel .cat-card__img img {object-position: 0% center}
    .cat-card:hover .cat-card__img img { transform: scale(1.08); }

    .cat-card__body { background: var(--blanc); padding: 16px 0 22px; flex: 1; display: flex; flex-direction: column; }
    
    .cat-card__titre { font-size: 15px; font-weight: 700; color: var(--txt); line-height: 1.3;text-transform:uppercase; }
    .cat-card__desc  { font-size: 12px; color: var(--noir); margin: 5px 0 15px 0; line-height: 1.6; flex: 1; }
    
    /* ─── BLOC RECHERCHE CODE ─── */
    .b-rech { background: var(--bleu); padding: 52px 48px; display: flex; align-items: center;justify-content:space-evenly; gap: 56px; position: relative; overflow: hidden; }
    .b-rech::after { content: ''; position: absolute; right: -50px; top: -50px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(153,207,197,.15) 0%, transparent 70%); pointer-events: none; }
    .b-rech__left { z-index: 1; }
    .b-rech__k { font-size: 10px; font-weight: 700; color: #ffffff; text-transform: uppercase; letter-spacing: .2em; margin-bottom: 8px; }
    .b-rech__t { font-size: clamp(18px, 2vw, 26px); font-weight: 800; color: var(--blanc); line-height: 1.25; margin-bottom: 6px; }
    .b-rech__d { font-size: 13px; color: #ffffff; line-height: 1.65; margin-bottom: 20px; }
    .b-rech__form { display: flex; flex-wrap: wrap; }
    .b-rech input { flex: 1; min-width: 160px;max-width:500px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.1); color: var(--blanc); font-family: var(--font); font-size: 13px; outline: none; transition: border-color .2s; }
    .b-rech input::placeholder { color: rgba(255,255,255,.35); }
    .b-rech input:focus { border-color: var(--vert); }
    .b-rech__btn { padding: 13px 24px; background: var(--vert); color: var(--noir); border: none; cursor: pointer; font-family: var(--font); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: background .2s; white-space: nowrap; }
    .b-rech__btn:hover { background: #7bbdb3; }
    .b-rech__right { display: flex; gap: 14px; z-index: 1; flex-shrink: 0; }
    .b-stat { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); padding: 22px 26px; text-align: center; }
    .b-stat strong { display: block; font-size: 32px; font-weight: 800; color: #ffffff; line-height: 1; }
    .b-stat span { font-size: 9px; color: #ffffff;font-weight:600; text-transform: uppercase; letter-spacing: .14em; }

    /* ─── NOUVEAUTÉS ─── */
    .nouv-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-top: 40px; }
    .nouv-card { overflow: hidden; background: var(--gris-border); transition: box-shadow .3s; cursor: pointer; position:relative }
    .nouv-card__img { aspect-ratio: 4/5; overflow: hidden; }
    .nouv-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
    .nouv-card:hover .nouv-card__img img { transform: scale(1.08); }
    .nouv-card__body { background: var(--blanc); padding: 8px 0;}
    .nouv-card__num  { font-size: 10px; font-weight: 700; color: var(--vert); text-transform: uppercase; letter-spacing: .16em; margin-bottom: 3px; }
    .nouv-card__name { font-size: 14px; font-weight: 700; color: var(--txt); text-transform: uppercase; letter-spacing: .06em; }
    .nouv-card-link .motif img{object-position:45% center}
    .nouv-card-link .buro img{object-position:25% center}
    .nouv-card-link .color img{object-position:30% center}
    .nouv-card-link .paysage img{object-position:25% center; transform: scale(1.15)}
    .nouv-card-link .paysage img:hover{transform: scale(1.23)}

    /* ─── OUTILS D'AIDE À LA VENTE ─── */
    .outils-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 40px; }
    .outils__img { overflow: hidden; position: relative; }
    .outils__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .outils__badge { position: absolute; top: 16px; left: 16px; background: var(--bleu); color: var(--blanc); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; padding: 6px 14px; }

    .outils__intro { font-size: 14px; line-height: 1.8; color: var(--txt); margin-bottom: 24px; }
    .outils__intro strong { font-weight: 700; color: var(--bleu); }
    .outils__contenu-lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--gris); margin-bottom: 14px; }
    .outils__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .outils__item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: var(--vert-clair);  }
    .outils__text strong { display: block; font-size: 12px; font-weight: 700; color: var(--txt); margin-bottom: 2px;text-transform:uppercase }
    .outils__text span  { font-size: 11px; color: #999; line-height: 1.5; }
    .outils__cta {margin-top: 26px;}
    .outil-right {display:flex; flex-direction:column}
   
    /* ─── FOOTER ─── */
    footer { background: var(--noir); padding: 52px 48px 26px; }
    .logo-ce-footer {max-width:150px}
    .footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px;margin-bottom: 22px; }
    .footer__brand {display:flex; flex-direction:column; gap:10px}
    .footer__brand p { font-size: 12px; color: rgba(255,255,255,.75); line-height: 1.75;max-width:400px }
    .footer__bretagne {font-size: 9px; color: var(--vert); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
    .footer__col h5 { font-size: 9px; text-transform: uppercase; letter-spacing: .18em; font-weight: 700; color: #ffffff; margin-bottom: 14px; }
    .footer__col a { display: block; font-size: 12px; color: rgba(255,255,255,.75); margin-bottom: 10px; transition: color .2s; }
    .footer__col a:hover { color: rgba(255,255,255,1); }
    .footer__bot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
    .footer__copy { font-size: 11px; color: rgba(255,255,255,.75); }
    .footer__legal { display: flex; gap: 18px; }
    .footer__legal a { font-size: 11px; color: rgba(255,255,255,.75); transition: color .2s; }
    .footer__legal a:hover { color: rgba(255,255,255,1); }

    /* ─── BACK TOP ─── */
    .back-top { position: fixed; color:#000000;bottom: 22px; right: 22px; z-index: 90; width: 40px; height: 40px; background: var(--blanc); display: flex; align-items: center; justify-content: center; cursor: pointer; border: solid 1px #000000; border-radius:25px; opacity: 0; pointer-events: none; transition: opacity .3s, transform .2s; }
    .back-top.visible { opacity: 1; pointer-events: all; }
    .back-top:hover { transform: translateY(-2px); }
    .back-top svg { width: 15px; height: 15px; }

    /* ─── ANIMATIONS ─── */
    [data-anim] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
    [data-anim].visible { opacity: 1; transform: none; }
    [data-anim-d="1"] { transition-delay: .1s; }
    [data-anim-d="2"] { transition-delay: .2s; }
    [data-anim-d="3"] { transition-delay: .3s; }
    [data-anim-d="4"] { transition-delay: .4s; }

    /* ─── RESPONSIVE 1280px ─── */
    @media (max-width: 1300px) {
      .nav { padding: 0 28px; }
      .nav__links { gap: 16px; }
      .nav__links a { font-size: 10px; }
      .hero, .section, .b-rech, footer { padding-left: 28px; padding-right: 28px; }
      .filtres { padding-left: 28px; padding-right: 28px; }
      .hero { padding-top: 56px; padding-bottom: 52px; gap: 36px; }
      .cat-grid { grid-template-columns: repeat(2,1fr); }
      .nouv-grid { grid-template-columns: repeat(3,1fr); }
      .footer__top { grid-template-columns: 1fr 1fr; }
      .footer__top > *:first-child { grid-column: span 2; }
    }

    /* ─── RESPONSIVE MOBILE ─── */
    @media (max-width: 767px) {
      .nav { padding: 0 16px; }
      .nav__links { display: none; }
      .nav__burger { display: flex; }

      .hero { grid-template-columns: 1fr; padding: 104px 16px 24px 16px ; gap: 24px; min-height: auto; }
      .hero__stats { display:flex; justify-content:space-between; }
      .hero__stat {display:flex;flex-direction:column;align-items:center;}
      .hero__stat strong { font-size: 24px; }
      .hero__left {padding-left:8px!important}
      .hero__card__label strong{font-size:15px}
      .hero__card__label small {font-size:10px}
      .hero__card__label {background:#ffffff96;padding:16px}

      .filtres { padding: 10px 16px; gap: 6px; }
      .filtres__pill { font-size: 10px; padding: 5px 12px; }

      .section { padding: 44px 16px; }
      .b-rech { flex-direction: column; padding: 40px 16px; gap: 24px; }
      .b-rech__right { width: 100%; justify-content: space-around; }
      .b-rech__form { flex-direction: column; }

      .cat-grid { grid-template-columns: 1fr; gap: 12px; }
      .cat-card { flex-direction: row; }
      .cat-card__img { width: 36%; height: auto; aspect-ratio: auto; }
      .card--sel .cat-card__img img {object-position:20% center}
      .cat-card__body { flex: 1; justify-content: center;padding:20px }
      .b-rech__form {display:flex; flex-direction:row}
      
      

      .nouv-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }

      .outils-inner { grid-template-columns: 1fr; gap: 24px; }
      .outils__img { max-height: 260px; }

      footer { padding: 32px 16px 20px; }
      .footer__top { grid-template-columns: 1fr; gap: 24px; }
      .footer__top > *:first-child { grid-column: auto; }
      .footer__bot { flex-direction: column; align-items: flex-start; }
    }
 
    
    /* ═══════════════════════════════════════════════════
       PAGE DESIGNS — COLLECTION GRAPHIQUE / PHOTOS
       ═══════════════════════════════════════════════════ */

    /* ─── BANDEAU EN-TÊTE ─── */
    .pg-banner {
      background: var(--gris-light);
      padding-top: var(--nav-h);
    }
    .pg-banner__inner {
      max-width: 1466px;
      margin: 0 auto;
      padding: 48px 48px 40px;
    }
    .breadcrumb {
      display: flex;
      align-items: center;
      flex-wrap:wrap;
      gap: 8px;
      font-size: 12px;
      font-weight: 600;
      text-transform: none;
      color: var(--txt);
      margin-bottom: 16px;
    }
    .breadcrumb a { color: var(--txt); transition: color .2s; text-decoration:underline }
    .breadcrumb a:hover { color: var(--bleu-dark); }
    .breadcrumb__sep { color: var(--gris); }

    .pg-banner__h1 {
      font-size: clamp(24px, 3vw, 40px);
      font-weight: 700;
      color: var(--noir);
      line-height: 1.15;
      letter-spacing: -.01em;
      margin-bottom: 12px;
    }
    .pg-banner__desc {
      font-size: 13px;
      line-height: 1.8;
      color: var(--txt);
      max-width: 600px;
      margin-bottom: 20px;
    }

    /* ─── BARRE DE CONTRÔLE ─── */
    .ctrl-bar {
      background: var(--blanc);
      position: sticky;
      top: var(--nav-h);
      z-index: 50;
    }
    .ctrl-bar--bottom {
      position: static;
      border-bottom: none;
      padding: 24px 0 48px;
    }
    .ctrl-bar__inner {
      max-width: 1466px;
      margin: 0 auto;
      padding: 16px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .ctrl-bar__inner--bottom {
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    /* Compteur */
    .ctrl-count {
      font-size: 11px;
      font-weight: 600;
      color: var(--gris);
      text-transform: uppercase;
      letter-spacing: .1em;
      white-space: nowrap;
    }
    .ctrl-count-bottom {
      font-size: 13px;
      font-weight: 500;
      color: var(--txt);
      text-align: center;
    }

    /* Sélecteur par page — forme gellule */
    .ctrl-perpage {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 600;
      color: var(--txt);
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .perpage-select {
      appearance: none;
      -webkit-appearance: none;
      border: 1px solid var(--noir);
      border-radius: 999px;
      padding: 7px 34px 7px 18px;
      font-family: var(--font);
      font-size: 12px;
      font-weight: 700;
      color: var(--noir);
      background: var(--blanc) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23000' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
      cursor: pointer;
      transition: border-color .2s;
      min-width: 90px;
    }
    .perpage-select:hover,
    .perpage-select:focus { outline: none; border-color: var(--bleu); }

    /* ─── PAGINATION ─── */
    .pagination {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* Flèche précédent / suivant */
    .pag__arrow {
      width: 34px; height: 34px;
      display: flex; align-items: center; justify-content: center;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--txt);
      transition: color .2s;
      flex-shrink: 0;
    }
    .pag__arrow svg { width: 16px; height: 16px; }
    .pag__arrow:hover:not(:disabled) { color: var(--bleu); }
    .pag__arrow:disabled { opacity: .25; cursor: default; }

    .pag__pages { display: flex; gap: 4px; }

    /* Numéros : page active = cercle, autres = sans border */
    .pag__num {
      width: 34px; height: 34px;
      display: flex; align-items: center; justify-content: center;
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--font);
      font-size: 12px;
      font-weight: 600;
      color: var(--txt);
      transition: color .2s;
      border-radius: 50%;
    }
    .pag__num:hover { color: var(--bleu); }
    .pag__num--active {
      border: 1.5px solid var(--noir);
      color: var(--noir);
      font-weight: 700;
      cursor: default;
    }

    /* ─── GRILLE DES DESIGNS ─── */
    .designs-wrap {
      max-width: 1466px;
      margin: 0 auto;
      padding: 32px 48px;
    }

    .designs-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      grid-column-gap: 20px;
      grid-row-gap: 20px;
    }

    /* Placement 25 cellules — template 5 col × 8 rangées */
    .designs-grid .d1  { grid-area: 1 / 1 / 3 / 3; }
    .designs-grid .d2  { grid-area: 1 / 3 / 2 / 4; }
    .designs-grid .d3  { grid-area: 1 / 4 / 2 / 5; }
    .designs-grid .d4  { grid-area: 1 / 5 / 2 / 6; }
    .designs-grid .d5  { grid-area: 2 / 3 / 4 / 5; }
    .designs-grid .d6  { grid-area: 2 / 5 / 3 / 6; }
    .designs-grid .d7  { grid-area: 3 / 1 / 4 / 2; }
    .designs-grid .d8  { grid-area: 3 / 2 / 4 / 3; }
    .designs-grid .d9  { grid-area: 3 / 5 / 4 / 6; }
    .designs-grid .d10 { grid-area: 4 / 1 / 5 / 2; }
    .designs-grid .d11 { grid-area: 4 / 2 / 6 / 4; }
    .designs-grid .d12 { grid-area: 4 / 4 / 5 / 5; }
    .designs-grid .d13 { grid-area: 4 / 5 / 5 / 6; }
    .designs-grid .d14 { grid-area: 5 / 1 / 6 / 2; }
    .designs-grid .d15 { grid-area: 5 / 4 / 6 / 5; }
    .designs-grid .d16 { grid-area: 5 / 5 / 6 / 6; }
    .designs-grid .d17 { grid-area: 6 / 1 / 7 / 2; }
    .designs-grid .d18 { grid-area: 6 / 2 / 7 / 3; }
    .designs-grid .d19 { grid-area: 6 / 3 / 7 / 4; }
    .designs-grid .d20 { grid-area: 6 / 4 / 8 / 6; }
    .designs-grid .d21 { grid-area: 7 / 1 / 9 / 3; }
    .designs-grid .d22 { grid-area: 7 / 3 / 8 / 4; }
    .designs-grid .d23 { grid-area: 8 / 3 / 9 / 4; }
    .designs-grid .d24 { grid-area: 8 / 4 / 9 / 5; }
    .designs-grid .d25 { grid-area: 8 / 5 / 9 / 6; }

    /* ─── CARTE DESIGN ─── */

    /* Toutes les cartes : flex colonne */
    .dc {
      display: flex;
      flex-direction: column;
      cursor: pointer;
      text-decoration: none;
      background: var(--blanc);
      transition: opacity .3s;
    }

    /* Par défaut (petites cartes 1×1) : image carrée */
    .dc__img {
      width: 100%;
      aspect-ratio: 1;
      overflow: hidden;
      flex-shrink: 0;
      border-radius:0;
    }

    /* Grandes cartes (multi-rangées) : image s'étire pour remplir
       la hauteur disponible, le dc__body reste en bas à taille fixe.
       d1(2×2), d5(2×2), d11(2×2), d20(2×2), d21(2×2) */
    .designs-grid .d1,
    .designs-grid .d5,
    .designs-grid .d11,
    .designs-grid .d20,
    .designs-grid .d21 { height: 100%; }

    .designs-grid .d1  .dc__img,
    .designs-grid .d5  .dc__img,
    .designs-grid .d11 .dc__img,
    .designs-grid .d20 .dc__img,
    .designs-grid .d21 .dc__img {
      aspect-ratio: unset;
      flex: 1;
      min-height: 0;
    }


    .dc__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
      transition: transform .5s ease;
      
    }
    .dc:hover .dc__img img { transform: scale(1.04);border-radius:0 }

    .dc__body {
      padding: 8px 0 4px;
      display: flex;
      flex-direction: column-reverse; /* je ne voualis pas remettre tous les éléments dans le bon ordre après avoir changer le sens de lecture*/
      gap: 2px;
      flex-shrink: 0;
    }
    .dc__code {
      font-size: 10px;
      font-weight: 700;
      text-transform: capitalize;
      letter-spacing: .12em;
      color: var(--gris);
    }
    .dc__ligne {
      font-size: 13px;
      font-weight: 600;
      color: var(--noir);
      text-transform: normal;
      letter-spacing: .04em;
    }

    /* ─── SECTION COLLECTION PHOTOS ─── */
    .section-photos {
      
      background: var(--gris-light);
      padding: 80px 0;
    }
    .section-photos__inner {
      max-width: 1466px;
      margin: 0 auto;
      padding: 0 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .section-photos__h2 {
      font-size: clamp(22px, 2.5vw, 32px);
      font-weight: 700;
      color: var(--noir);
      line-height: 1.2;
      letter-spacing: -.01em;
      margin-bottom: 16px;
      margin-top: 10px;
    }
    .section-photos__desc {
      font-size: 13px;
      line-height: 1.8;
      color: var(--txt);
      margin-bottom: 28px;
    }

    /* Grille 4×4 photos carrées */
    .section-photos__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width:500px;
      margin:0 auto;
    }
    .pg__item {
      
      overflow: hidden;
    }
    .pg__item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s ease; 
      border-radius:0
    }
    .pg__item:hover img { transform: scale(1.05); }

    /* ─── RESPONSIVE 1280px ─── */
    @media (max-width: 1300px) {
      .pg-banner__inner { padding: 40px 28px 32px; }
      .ctrl-bar__inner  { padding: 14px 28px; }
      .designs-wrap     { padding: 28px 28px; }
      .section-photos__inner { padding: 0 28px; gap: 48px; }
    }

    /* ─── RESPONSIVE MOBILE ─── */
    @media (max-width: 767px) {
      .pg-banner__inner { padding: 28px 16px 24px; }

      .ctrl-bar { position: static; }
      .ctrl-bar__inner { padding: 12px 16px; flex-wrap: wrap; gap: 12px; }
      .ctrl-perpage { font-size: 10px; }

      .designs-wrap { padding: 16px 16px 32px; }
      .designs-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none !important;
        gap: 8px;
      }
      .designs-grid > .dc {
        grid-area: auto !important;
      }
      .dc__img { aspect-ratio: 1; }

      .section-photos__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 16px;
      }
      .section-photos { padding: 48px 0; }
      .ctrl-bar--bottom { padding: 16px 0 32px; }
    }
    /* ═══════════════════════════════════════════════════
       PAGE CATALOGUE — TOUS NOS PRODUITS
       ═══════════════════════════════════════════════════ */

    /* ─── BARRE DE FILTRES ─── */
    .filters-bar {
      
      background: var(--blanc);
    }
    .filters-bar__inner {
      max-width: 1466px;
      margin: 0 auto;
      padding: 14px 48px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    /* Bouton principal Filtres — centré */
    .filter-toggle {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--noir);
      border-radius: 52px;
      padding: 7px 18px;
      font-family: var(--font);
      font-size: 12px;
      font-weight: 600;
      color: var(--noir);
      background: var(--blanc);
      cursor: pointer;
      transition: background .2s, color .2s;
      white-space: nowrap;
    }
    .filter-toggle.active {
      background: var(--noir);
      color: var(--blanc);
    }

    /* Zone des gellules — centrée, en ligne */
    .filter-pills-zone {
      display: none;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      width: 100%;
    }
    .filter-pills-zone.open { display: flex; }

    /* Wrapper pour positionner le dropdown */
    .filter-pill-wrap {
      position: relative;
    }

    /* Gellule filtre individuelle */
    .filter-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border: 1px solid #8C8C8C;
      border-radius: 52px;
      padding: 6px 16px;
      font-family: var(--font);
      font-size: 12px;
      font-weight: 500;
      color: #8C8C8C;
      background: var(--blanc);
      cursor: pointer;
      transition: border-color .2s, color .2s;
      user-select: none;
      white-space: nowrap;
    }
    /* Actif (dropdown ouvert) ou filtre appliqué : border et texte noirs */
    .filter-pill.active,
    .filter-pill.has-filters {
      border-color: var(--noir);
      color: var(--noir);
    }

    /* Badge compteur : fond noir, texte blanc */
    .filter-pill__count {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      background: var(--noir);
      color: var(--blanc);
      border-radius: 50%;
      font-size: 10px;
      font-weight: 700;
      flex-shrink: 0;
    }

    /* Boîte dropdown d'un filtre */
    .filter-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%);
      width: 220px;
      background: var(--blanc);
      border: 1px solid var(--noir);
      border-radius: 17px;
      padding: 16px;
      z-index: 300;
    }
    .filter-dropdown.open { display: block; }

    .filter-dropdown__title {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--gris);
      margin-bottom: 12px;
    }

    .filter-opts {
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin-bottom: 14px;
    }
    .filter-opt {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font);
      font-size: 13px;
      font-weight: 500;
      color: var(--noir);
      letter-spacing: -0.26px;
      cursor: pointer;
      line-height: 1.6;
    }
    .filter-opt input[type="checkbox"] {
      width: 15px;
      height: 15px;
      accent-color: var(--noir);
      cursor: pointer;
      flex-shrink: 0;
    }

    /* Bouton Appliquer */
    .filter-apply-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 8px 16px;
      background: var(--noir);
      border: 1px solid var(--noir);
      border-radius: 52px;
      font-family: var(--font);
      font-size: 12px;
      font-weight: 600;
      color: var(--blanc);
      cursor: pointer;
      transition: opacity .2s;
    }
    .filter-apply-btn:hover { opacity: .8; }

    /* ─── GRILLE PRODUITS ─── */
    .cat-wrap {
      max-width: 1466px;
      margin: 0 auto;
      padding: 32px 48px;
    }

    .prod-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      grid-column-gap: 20px;
      grid-row-gap: 40px;
    }

    .prod-grid .p1  { grid-area: 1 / 1 / 3 / 3; }
    .prod-grid .p2  { grid-area: 1 / 3 / 2 / 4; }
    .prod-grid .p3  { grid-area: 1 / 4 / 2 / 5; }
    .prod-grid .p4  { grid-area: 1 / 5 / 2 / 6; }
    .prod-grid .p5  { grid-area: 2 / 3 / 4 / 5; }
    .prod-grid .p6  { grid-area: 2 / 5 / 3 / 6; }
    .prod-grid .p7  { grid-area: 3 / 1 / 4 / 2; }
    .prod-grid .p8  { grid-area: 3 / 2 / 4 / 3; }
    .prod-grid .p9  { grid-area: 3 / 5 / 4 / 6; }
    .prod-grid .p10 { grid-area: 4 / 1 / 5 / 2; }
    .prod-grid .p11 { grid-area: 4 / 2 / 6 / 4; }
    .prod-grid .p12 { grid-area: 4 / 4 / 5 / 5; }
    .prod-grid .p13 { grid-area: 4 / 5 / 5 / 6; }
    .prod-grid .p14 { grid-area: 5 / 1 / 6 / 2; }
    .prod-grid .p15 { grid-area: 5 / 4 / 6 / 5; }
    .prod-grid .p16 { grid-area: 5 / 5 / 6 / 6; }
    .prod-grid .p17 { grid-area: 6 / 1 / 7 / 2; }
    .prod-grid .p18 { grid-area: 6 / 2 / 7 / 3; }
    .prod-grid .p19 { grid-area: 6 / 3 / 7 / 4; }
    .prod-grid .p20 { grid-area: 6 / 4 / 8 / 6; }
    .prod-grid .p21 { grid-area: 7 / 1 / 9 / 3; }
    .prod-grid .p22 { grid-area: 7 / 3 / 8 / 4; }
    .prod-grid .p23 { grid-area: 8 / 3 / 9 / 4; }
    .prod-grid .p24 { grid-area: 8 / 4 / 9 / 5; }
    .prod-grid .p25 { grid-area: 8 / 5 / 9 / 6; }

    .prod-card {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      cursor: pointer;
    }
    .prod-grid .p1,
    .prod-grid .p5,
    .prod-grid .p11,
    .prod-grid .p20,
    .prod-grid .p21 { height: 100%; }

    .prod-card__img {
      width: 100%;
      aspect-ratio: 1;
      overflow: hidden;
      border-radius: 0;
      flex-shrink: 0;
    }
    .prod-grid .p1  .prod-card__img,
    .prod-grid .p5  .prod-card__img,
    .prod-grid .p11 .prod-card__img,
    .prod-grid .p20 .prod-card__img,
    .prod-grid .p21 .prod-card__img {
      aspect-ratio: unset;
      flex: 1;
      min-height: 0;
    }
    .prod-card__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
      border-radius: 0;
      transition: transform .5s ease;
    }
    .prod-card:hover .prod-card__img img { transform: scale(1.04); }

    .prod-card__body {
      padding: 8px 0 4px;
      display: flex;
      flex-direction: column;
      gap: 2px;
      flex-shrink: 0;
    }
    .prod-card__name {
      font-size: 12px;
      font-weight: 600;
      color: var(--noir);
      line-height: 1.4;
    }
    .prod-card__meta {
      font-size: 12px;
      font-weight: 400;
      color: #8c8c8c;
      line-height: 1;
    }

    /* ─── RESPONSIVE 1280px ─── */
    @media (max-width: 1300px) {
      .filters-bar__inner { padding: 12px 28px; }
      .cat-wrap           { padding: 28px 28px; }
    }

    /* ─── RESPONSIVE MOBILE ─── */
    @media (max-width: 767px) {
      .filters-bar__inner  { padding: 10px 16px; }
      .cat-wrap            { padding: 16px 16px; }
      .prod-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none !important;
        gap: 16px 10px;
      }
      .prod-grid > .prod-card { grid-area: auto !important; height: auto !important; }
      .prod-grid > .prod-card .prod-card__img { aspect-ratio: 1 !important; flex: none !important; }
      .filter-dropdown { width: 200px; left: 0; transform: none; }
    }
    /* ═══════════════════════════════════════════════════
       PAGE MON COMPTE — ESPACE PERSONNEL
       ═══════════════════════════════════════════════════ */

      /*HEADER*/
      
    .compte-links span{
    color: white; 
    font-size: 12px; 
    letter-spacing: .08em; 
    font-weight: 700;
    margin-right:48px;
}
   


    /* ─── HERO BANNER ─── */
    .mc-hero {
      display: grid;
      grid-template-columns: 40% 60%;
      padding-top: var(--nav-h);
      overflow: hidden;
      max-width: 1466px;
      margin: 0 auto;
    }

    /* Colonne gauche */
    .mc-hero__left {
      padding: 64px 48px 80px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }
    .intro {
      display:flex;
      flex-direction:column;
      align-items:flex-start}

    .mc-hero__left .breadcrumb { margin-bottom: 32px; }
    .mc-hero__h1 {
      font-size: clamp(26px, 3vw, 42px);
      font-weight: 700;
      color: var(--noir);
      line-height: 1.15;
      letter-spacing: -.02em;
      margin-bottom: 24px;
    }
    .mc-hero__desc {
      font-size: 13px;
      line-height: 1.85;
      color: var(--txt);
      max-width: 450px;
      margin-bottom:20px
    }
    .mc-mail {
      color: var(--bleu);
      text-decoration: none;
      transition: color .2s;
    }
    .mc-hero__desc .mc-dl__btn {
      align-self:flex-start;
    }
    .mc-mail:hover { color: var(--bleu-dark); }

    /* Colonne droite */
    .mc-hero__right {
      padding-top: 150px;
      display: flex;
      justify-content: flex-end;
      align-items: flex-start;
    }
    .intro {
      font-size: 12px;
      font-weight: 600;
      color: var(--txt);
      margin-bottom: 16px;
  
}

    /* Bloc vert */
    .mc-hero__card {
      background: var(--gris-light);
      padding: 130px 155px 114px 114px;
      width: 100%;
    }
    .mc-hero__card-h2 {
      font-size: clamp(18px, 2vw, 26px);
      font-weight: 700;
      color: var(--noir);
      line-height: 1.25;
      letter-spacing: -.01em;
      margin-bottom: 16px;
    }
    .mc-hero__card-desc {
      font-size: 13px;
      line-height: 1.8;
      color: var(--noir);
      margin-bottom: 32px;
      max-width: 420px;
    }
    
    .mc-hero__btns {
      display: flex;
      flex-direction: row;
      gap: 32px;
      align-items: flex-start;
    }
    .colonne-presentoir {
      display:flex;
      flex-direction:column;
      justify-content:center;
}
    .colonne-presentoir .mc-dl-btn {margin-top:20px}

    /* ─── BOUTON TÉLÉCHARGEMENT ─── */
    .mc-dl-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--noir);
      padding: 9px 20px;
      font-family: var(--font);
      font-size: 12px;
      font-weight: 600;
      color: var(--noir);
      background: transparent;
      text-decoration: none;
      cursor: pointer;
      transition: background .2s, color .2s;
      white-space: nowrap;
    }
    .mc-dl-btn:hover {
      background: var(--noir);
      color: var(--blanc);
    }
    .mc-dl-btn:hover svg path { stroke: var(--blanc); }

    /* Variante outline (section tarifs) */
    .mc-dl-btn--outline {
      border-color: var(--noir);
    }

    /* Variante small (ressources) */
    .mc-dl-btn--sm {
      font-size: 11px;
      padding: 7px 16px;
    }

    /* ─── SECTIONS COMMUNES ─── */
    .mc-section {
      padding: 80px 48px;
      max-width: 1466px;
      margin: 0 auto;
    }
    .mc-section__h2 {
      font-size: clamp(20px, 2.4vw, 30px);
      font-weight: 700;
      color: var(--noir);
      line-height: 1.2;
      letter-spacing: -.01em;
      margin-bottom: 28px;
    }

    /* ─── SECTION TARIFS — centrée ─── */
    .mc-section--centered {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding:120px 0;
    }

    /* ─── SECTION CMAG ─── */
    .mc-section--cmag {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      background-image: url('images/c-mag-illustration.webp');
      background-size: cover;
      background-position: center left;
      background-repeat: no-repeat;
      min-height: 486px;
      margin-bottom: 122px;
      padding: 0 15% 0 0;
      max-width:none;
    }
    .mc-section--cmag-content {
      max-width: 70%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;align-items:flex-start;
      gap: 0;
    }
    .mc-section--cmag .mc-section__h2 { margin-bottom:0}
    .mc-cmag__desc {
      font-size: 15px;
      font-weight: 400;
      color: var(--txt);
      line-height: 1.6;margin-bottom: 20px;
    }

    /* ─── SECTION RESSOURCES ─── */
    .mc-section--ressources {
      padding: 0;
      display: flex;
      justify-content: flex-start;
      margin-bottom: 122px;
      max-width: 1466px;
      margin-left: auto;
      margin-right: auto;
      background:none;
    }
    .mc-ressources__bloc {
      background: var(--vert);
      width: 80%;
      padding: 130px 155px 114px 114px;
    }
    .mc-ressources__intro {
      margin-bottom: 48px;
      max-width: 640px;
    }
    .mc-ressources__desc {
      font-size: 13px;
      line-height: 1.8;
      color: var(--noir);text-wrap:balance;
    }
    .mc-ressources__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 64px; 
    }

    /* ─── CARTE RESSOURCE ─── */
    .mc-ressource-card {
      display: flex;
      flex-direction: column;
      gap: 10px; 
      align-items:center;
      justify-content:center;
    }
    .mc-ressource-card__btns{
    align-items:center!important;
}
    .mc-ressource-card__icon {
      width: 96px;
      height: 96px;
      color: var(--noir);
      flex-shrink: 0;
    }
    .mc-ressource-card__h3 {
      font-size: 14px;
      font-weight: 700;
      color: var(--noir);
      text-transform: uppercase;
      letter-spacing: .04em;
    }
    .mc-ressource-card__text {
      font-size: 12px;
      line-height: 1.7;
      color: var(--noir);
      flex: 1;
      text-align:center;
      margin-bottom:20px;
    }

    /* ─── RESPONSIVE 1280px ─── */
    @media (max-width: 1300px) {
      .mc-hero__left  { padding: 48px 28px 64px; }
      .mc-hero__card  { padding: 80px 80px 80px 72px; }
      .mc-section     { padding: 64px 28px; }
      .mc-ressources__bloc { padding: 48px 28px 56px; }
      .mc-section--cmag { padding: 64px 28px; }
    }
    @media (max-width: 1199px){
      .mc-hero__btns {display:flex;flex-direction:column}
      .mc-ressources__bloc {
      width: 100%;
    }
}
/* ─── RESPONSIVE TGE ─── */
  @media (min-width:1700px) {
      .mc-section--ressources { 
        background: var(--vert);
        max-width:none;
        justify-content:center;
        }
    .mc-ressources__bloc {
      max-width:1466px;
    }
}
    /* ─── RESPONSIVE MOBILE ─── */
  
    @media (max-width: 767px) {
      .mc-hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }
      .mc-ressource-card__icon {
      width: 64px;
        height: 64px;}
      
      .mc-hero__left  { padding: 100px 16px 40px; }
      .mc-hero__right { padding-top: 0; justify-content: stretch; }
      
      .mc-hero__card  { padding: 48px; width: 100%; }
      .mc-section     { padding: 48px 16px; }
      .mc-section--cmag {
        justify-content: flex-start;
        background-image: none;
        background-color: var(--vert-clair);
        padding: 48px;
        min-height: auto;
        margin-bottom: 0;
      }
      .mc-section--ressources{padding:0;margin-bottom:0}
      .mc-section--cmag-content { max-width: 100%; }
      .mc-ressources__bloc { width: 100%; padding: 48px; }
      .mc-ressources__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    }

    /* ── Ressources V1 : grille 3 colonnes ── */
    .mc-ressources__grid--3col {
      grid-template-columns: repeat(3, 1fr);
    }
    .mc-ressource-card__btns {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      width: 100%;
      margin-top: auto;
    }
    .mc-ressource-card__btns .mc-dl-btn--sm {
      width: fit-content;
    }

    /* Bouton hero gauche */
    .mc-dl-btn--fitcontent {
      width: fit-content;
    }

    /* ── Responsive tablette 769–1199px ── */
    @media (min-width: 769px) and (max-width: 1199px) {
      .mc-ressources__grid--3col {
        grid-template-columns: repeat(2, 1fr);
      }
      .mc-ressources__grid--3col .mc-ressource-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
      }
      .mc-ressource-card__btns .mc-dl-btn--sm {
        font-size: 10px;
        padding: 6px 12px;
      }
    }

    /* ── Responsive mobile ≤ 768px ── */
    @media (max-width: 768px) {
      .mc-ressources__grid--3col {
        grid-template-columns: 1fr;
      }
    }

    /* ═════ MON COMPTE — RESSOURCES ═════ */

    /* Bouton hero "Planifier votre appel" */
    .mc-dl-btn--fitcontent {
      width: fit-content;
    }

    /* Grille 3 colonnes */
    .mc-ressources__grid--3col {
      grid-template-columns: repeat(3, 1fr);
    }

    /* Groupe de boutons dans chaque carte */
    .mc-ressource-card__btns {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      width: 100%;
      margin-top: auto;
    }
    .mc-ressource-card__btns .mc-dl-btn--sm {
      width: fit-content;
    }

    /* ── Tablette 769–1199px ── */
    @media (min-width: 769px) and (max-width: 1199px) {
      .mc-ressources__grid--3col {
        grid-template-columns: repeat(2, 1fr);
      }
      .mc-ressources__grid--3col .mc-ressource-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
      }
      .mc-ressource-card__btns .mc-dl-btn--sm {
        font-size: 10px;
        padding: 6px 12px;
      }
    }

    /* ── Mobile ≤ 768px ── */
    @media (max-width: 768px) {
      .mc-ressources__grid--3col {
        grid-template-columns: 1fr;
      }
    }

    /* ═══════════════════════════════════════════════════
       PAGE PRODUIT — DÉTAIL PRODUIT
       ═══════════════════════════════════════════════════ */

    /* ─── SECTION HERO ─── */
    .prod-hero-section {
      padding-top: var(--nav-h);
      max-width: 1466px;
      margin: 0 auto;
      padding-left: 48px;
      padding-right: 48px;
      padding-bottom: 80px;
    }

    .prod-hero-section__inner .breadcrumb {
      padding-top: 40px;
      padding-bottom: 32px;
    }

    .prod-hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }

    /* ─── GALERIE ─── */
    .prod-gallery {
      display: flex;
      gap: 16px;
    }

    .prod-gallery__thumbs {
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex-shrink: 0;
    }

    .prod-gallery__thumb {
      width: 72px;
      height: 72px;
      overflow: hidden;
      cursor: pointer;
      border: 1px solid transparent;
      transition: border-color .2s;
      flex-shrink: 0;
    }

    .prod-gallery__thumb.active {
      border-color: var(--noir);
    }

    .prod-gallery__thumb:hover:not(.active) {
      border-color: var(--gris);
    }

    .prod-gallery__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .prod-gallery__main {
      flex: 1;
      aspect-ratio: 1;
      overflow: hidden;
    }

    .prod-gallery__main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: opacity .18s ease;
    }

    /* ─── INFOS PRODUIT ─── */
    .prod-info {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .prod-info__h1 {
      font-size: clamp(24px, 2.4vw, 32px);
      font-weight: 700;
      color: var(--noir);
      line-height: 1.15;
      letter-spacing: -.01em;
      max-width:350px
    }

    /* ─── TABLEAU SPECS ─── */
    .prod-specs {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom:40px
    }

    .prod-specs__row {
      display: grid;
      grid-template-columns: 160px 1fr;
      gap: 8px;
      align-items: baseline;
    }

    .prod-specs__row dt {
      font-family: var(--font);
      font-size: 13px;
      font-weight: 400;
      line-height: 1;
      letter-spacing: -0.13px;
      color: #8C8C8C;
      text-align: left;
    }

    .prod-specs__row dd {
      font-family: var(--font);
      font-size: 13px;
      font-weight: 400;
      line-height: 1.5;
      letter-spacing: -0.13px;
      color: #000000;
      text-align: left;
    }

    /* ─── DESCRIPTION ─── */
    .prod-desc {
      font-size: 13px;
      line-height: 1.2;
      color: var(--txt);
    }

    /* ─── PRIX ─── */
    .prod-price {
      font-size: 24px;
      font-weight: 700;
      color: var(--noir);
      line-height: 1;
      margin : 40px 0 -20px 0;
    }

    /* ─── META INFO ─── */
    .prod-meta-info {
      font-family: var(--font);
      font-size: 11px;
      line-height: 16px;
      letter-spacing: -0.11px;
      color: #8C8C8C;
    }

    /* ─── ACTIONS : sélects + panier ─── */
    .prod-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* ─── DROPDOWNS PRODUIT (même apparence que perpage-select) ─── */
    .prod-dropdown {
      position: relative;
      
      min-width: 100px;
    }

    /* Même visuel que perpage-select, mais <button> avec flex */
    .prod-dropdown__btn {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      width: 100%;
      border: 1px solid var(--noir);
      border-radius: 999px;
      padding: 7px 14px 7px 18px;
      font-family: var(--font);
      font-size: 12px;
      font-weight: 700;
      color: var(--noir);
      background: var(--blanc);
      cursor: pointer;
      transition: border-color .2s;
      white-space: nowrap;
      text-align: left;
    }

    .prod-dropdown__btn:hover { border-color: var(--bleu); }
    .prod-dropdown__btn.open  { border-color: var(--bleu); }

    /* Texte du label (permet de ne pas perturber le layout quand on met à jour) */
    .prod-dropdown__label {
      flex: 1;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Chevron — même flèche que perpage-select, tourne à l'ouverture */
    .prod-chevron {
      flex-shrink: 0;
      transition: transform .22s ease;
      color: var(--noir);
    }
    .prod-dropdown__btn.open .prod-chevron {
      transform: rotate(180deg);
    }

    /* Menu qui s'ouvre vers le HAUT */
    .prod-dropdown__menu {
      display: none;
      position: absolute;
      bottom: calc(100% + 8px);
      top: auto;
      left: 0;
      min-width: 190px;
      max-height: 260px;
      overflow-y: auto;
      background: var(--blanc);
      border: 1px solid var(--noir);
      border-radius: 17px;
      padding: 8px 0;
      z-index: 200;
      box-shadow: 0 -4px 24px rgba(0,0,0,.09);
    }

    .prod-dropdown__menu.open { display: block; }

    .prod-dropdown__menu a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 18px;
      font-size: 12px;
      font-weight: 600;
      color: var(--noir);
      transition: background .15s;
      text-decoration: none;
    }

    .prod-dropdown__menu a:hover { background: var(--gris-light); }

    /* Puce couleur ronde */
    .prod-color-dot {
      display: inline-block;
      flex-shrink: 0;
      width: 13px;
      height: 13px;
      border-radius: 50%;
      border: 1px solid rgba(0,0,0,.14);
    }

    /* ─── BOUTON PANIER ─── */
    .prod-cart-btn {
      flex: 2 0 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 20px;
      background: var(--noir);
      color: var(--blanc);
      font-family: var(--font);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      cursor: pointer;
      transition: opacity .2s;
      text-decoration: none;
      white-space: nowrap;
      border: 1px solid var(--noir);
      border-radius: 0;
      margin-left:10px;
    }

    .prod-cart-btn:hover { opacity: .82; }

    /* ─── SECTION FINITION ─── */
    .prod-finition {
      display: flex;
      justify-content: flex-end;

    
    }

    .prod-finition__inner {
      width: 50%;
      background: var(--vert);
      padding-right:80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }

    .prod-finition__img {
      aspect-ratio: 1;
      overflow: hidden;
    }

    .prod-finition__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .prod-finition__content {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .prod-finition__h2 {
      font-size: clamp(18px, 2vw, 26px);
      font-weight: 700;
      color: var(--noir);
      line-height: 1.25;
      letter-spacing: -.01em;
    }

    .prod-finition__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      align-self: flex-start;
      padding: 9px 28px;
      border: 1px solid var(--noir);
      background: transparent;
      color: var(--noir);
      font-family: var(--font);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .2s, color .2s;
      text-decoration: none;
      white-space: nowrap;
    }

    .prod-finition__btn:hover {
      background: var(--noir);
      color: var(--blanc);
    }

    /* ─── SECTION CARROUSEL ─── */
    .prod-carousel-section {
      padding: 80px 0;
      overflow: hidden;
    }

    .prod-carousel-section__inner {
      display:flex;
      flex-direction:column;
      margin: 0 auto;
      align-items:center;
    }

    .prod-carousel-header {
      display: flex;
      padding:0 48px;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 36px;
      width:100%;
      max-width: 1466px;
    }

    .prod-carousel-header__left {
      width: 33%;
    }

    .prod-carousel-header__h2 {
      font-size: clamp(20px, 2vw, 26px);
      font-weight: 700;
      color: var(--noir);
      line-height: 1.2;
      letter-spacing: -.01em;
      text-wrap: balance;
      margin-bottom: 16px;
    }

    .prod-carousel-chevrons {
      display: flex;
      gap: 8px;
    }

    .prod-carousel__chevron {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: none;
      border: 1px solid var(--noir);
      border-radius: 50%;
      cursor: pointer;
      transition: background .2s, color .2s;
      color: var(--noir);
      flex-shrink: 0;
    }

    .prod-carousel__chevron:hover:not(:disabled) {
      background: var(--noir);
      color: var(--blanc);
    }

    .prod-carousel__chevron:hover:not(:disabled) path {
      stroke: var(--blanc);
    }

    .prod-carousel__chevron:disabled {
      opacity: .28;
      cursor: default;
    }

    .prod-carousel__chevron svg {
      width: 14px;
      height: 14px;
      display: block;
    }

    .prod-carousel-header__right {
      display: flex;
      align-items: center;
      padding-top: 6px;
    }

    .prod-carousel__discover {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 28px;
      border: 1px solid var(--noir);
      background: transparent;
      color: var(--noir);
      font-family: var(--font);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background .2s, color .2s;
      white-space: nowrap;
    }

    .prod-carousel__discover:hover {
      background: var(--noir);
      color: var(--blanc);
    }

    /* Piste du carrousel */
    /* ─── Carrousel : scroll natif + snap ─── */
    .prod-carousel__track-wrap {
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      width: 100%;
    }

    .prod-carousel__track-wrap::-webkit-scrollbar {
      display: none;
    }

    .prod-carousel__track {
      display: flex;
      gap: 20px;
    }

    /* Desktop : 5 items pleins + débordement du suivant */
    .prod-carousel__item {
      flex: 0 0 calc((min(100vw - 96px, 1370px) - 5 * 20px) / 5.5);
      scroll-snap-align: start;
      min-width: 0;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
    }

    .prod-carousel__item-img {
      width: 100%;
      aspect-ratio: 1;
      overflow: hidden;
      flex-shrink: 0;
    }

    .prod-carousel__item-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s ease;
    }

    .prod-carousel__item:hover .prod-carousel__item-img img {
      transform: scale(1.04);
    }

    .prod-carousel__item-body {
      padding: 10px;
    }

    .prod-carousel__item-name {
      font-size: 12px;
      font-weight: 600;
      color: var(--noir);
      line-height: 1.4;
      margin-bottom: 4px;
    }

    .prod-carousel__item-meta {
      font-size: 11px;
      font-weight: 400;
      color: #8c8c8c;
      line-height: 1.65;
    }

    .prod-carousel__item-price {
      font-size: 12px;
      font-weight: 600;
      color: var(--noir);
      margin-top: 6px;
    }

    /* ─── SECTION VISUELS ─── */
    .prod-visuels {
      background: var(--gris-light);
      padding: 80px 0;
    }

    .prod-visuels__inner {
      max-width: 1466px;
      margin: 0 auto;
      padding: 0 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .prod-visuels__h2 {
      font-size: clamp(22px, 2.5vw, 32px);
      font-weight: 700;
      color: var(--noir);
      line-height: 1.2;
      letter-spacing: -.01em;
      margin-bottom: 16px;
      margin-top: 10px;
    }

    .prod-visuels__desc {
      font-size: 13px;
      line-height: 1.8;
      color: var(--txt);
      margin-bottom: 28px;
    }

    .prod-visuels__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width: 500px;
      margin: 0 auto;
    }

    /* ─── RESPONSIVE 1300px ─── */
    @media (max-width: 1300px) {
      .prod-hero-section            { padding-left: 28px; padding-right: 28px; padding-bottom: 64px; }
      .prod-hero                    { gap: 40px; }
      .prod-finition__inner         { padding: 72px 56px; }
      .prod-carousel-section__inner { padding: 0 28px; }
      .prod-visuels__inner          { padding: 0 28px; gap: 48px; }
      .prod-carousel__item          { flex: 0 0 calc((min(100vw - 56px, 1370px) - 5 * 20px) / 5.5); }
    }

    /* ─── RESPONSIVE TABLETTE ─── */
    @media (min-width: 768px) and (max-width: 1024px) {
      .prod-hero                    { grid-template-columns: 1fr; gap: 40px; }
      .prod-finition__inner         { width: 100%; padding: 56px 28px; }
      .prod-finition                { justify-content: stretch; }
      .prod-carousel-header__left   { width: 50%; }
      .prod-carousel__item          { flex: 0 0 calc((100vw - 56px - 2 * 20px) / 3.4); }
      .prod-visuels__inner          { grid-template-columns: 1fr; gap: 32px; }
      .prod-visuels                 { padding: 56px 0; }
    }

    /* ─── RESPONSIVE MOBILE ─── */
    @media (max-width: 767px) {
      .prod-hero-section            { padding: 72px 16px 48px; }
      .prod-hero-section__inner .breadcrumb { padding-top: 24px; padding-bottom: 20px; }
      .prod-hero                    { grid-template-columns: 1fr; gap: 28px; }
      .prod-gallery                 {flex-direction:column-reverse;gap:10px}
      .prod-gallery__thumbs         {flex-direction:row;}
      .prod-gallery__thumb          {width: calc(33% - 5px); height: auto; }
      .prod-specs__row              { grid-template-columns: 120px 1fr; }
      .prod-actions                 { flex-wrap: wrap; gap: 8px; }
      .prod-dropdown                { flex: 1 0 calc(50% - 4px); }
      .prod-cart-btn                { flex: 0 0 100%; margin-left:0;margin-top:20px}
      .prod-finition                { justify-content: stretch; }
      .prod-finition__inner         { width: 100%; padding: 0; grid-template-columns: 1fr; gap: 24px; }
      .prod-finition__content       {padding:48px;}
      .prod-finition__content a     {margin:0 auto}
      .prod-carousel-section        { padding: 48px 0; }
      .prod-carousel-section__inner { padding: 0; }
      .prod-carousel-header         { flex-wrap: wrap; gap:0; }
      .prod-carousel-chevrons       {display:none}
      .prod-carousel-header__left   { width: 100%; }
      .prod-carousel-header__right  { padding-top: 0; }
      .prod-carousel__item          { flex: 0 0 80%; }
      .prod-visuels                 { padding: 48px; }
      .prod-visuels__inner          { grid-template-columns: 1fr; gap: 32px; padding: 0; }
    }