:root{
    --font-title: 'Anta', Arial, sans-serif;
    --font-tech: 'Oxanium', Arial, sans-serif;
    --font-text: 'Open Sans', Arial, sans-serif;
    --fs-h1: 2rem;
    --fs-h2: clamp(1.2rem, 1.5vw, 1.6rem);  
    --fs-h3: clamp(0.8rem, 1.2vw, 1.25rem);   
    --fs-h4: clamp(0.75rem, 1vw, 1rem);         
    --fs-p:  clamp(0.75rem, 1vw, 1rem);         
    --fw-regular: 400;
    --fw-medium: 600;
    --fw-bold: 700;
}
@font-face {
    font-family: 'Anta';
    src: url('/fonts/Anta-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Oxanium';
    src: url('/fonts/Oxanium-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Oxanium';
    src: url('/fonts/Oxanium-Medium.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/OpenSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
h1{
    font-family: var(--font-title);
    font-size: var(--fs-h1);
    font-weight: var(--fw-regular);
    margin: 0 0 10px 0;
    animation: slideIn 0.7s forwards;     
}
@keyframes slideIn {
    0% {
        opacity: 0;    
        transform: translateY(-50px);   
    }
    100% {
        opacity: 1;    
        transform: translateY(0);    
    }
}
    h2{
    font-family: var(--font-tech);
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    margin: 0;
}
h3{
    font-family: var(--font-tech);
    font-size: var(--fs-h3);
    font-weight: var(--fw-medium);
    margin: 0;
}
h4{
    font-family: var(--font-tech);
    font-size: var(--fs-h4);
    font-weight: var(--fw-medium);
    margin: 0;
}
body { 
    font-family: var(--font-text);
    font-size: var(--fs-p);     
    font-weight: var(--fw-regular);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
p{
    margin: 0;
}
li{
    font-size: var(--fs-p);
}
.PagePartenaires .cat-card h3 {
    font-size: 1rem;         
    display: -webkit-box;    
    -webkit-line-clamp: 1;    
    -webkit-box-orient: vertical;  
    overflow: hidden;        
     display: box;             
    line-clamp: 1;            
    box-orient: vertical;      
}
.PagePartenaires .cat-card h4 {
    font-size: 0.8rem;         
    display: -webkit-box;      
    -webkit-line-clamp: 1;    
    -webkit-box-orient: vertical; 
    overflow: hidden;          
    display: box;         
    line-clamp: 1;        
    box-orient: vertical;    
} 
.reg {
    font-size: 0.7rem;
    vertical-align: super;
    line-height: 1;
}
html, body {
    height: 100%;  
    margin: 0;
    padding: 0;
    background-color: black;  
    display: flex;
    flex-direction: column;   
}
.Fond {
    position:fixed;
    top: 100px; 
    left: 0;
    width: 100%;
    height: calc(100vh - 100px - 42px); 
    background-color: black;
    background-image:
        radial-gradient(ellipse, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 1) 100%),
        url("/images/fond-général.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    color:rgb(255,255,255);
    pointer-events: none; 
}
.Banniere {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 32px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 1);
    z-index: 100;
}
.Banniere::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;   
    width: 100%;
    height: 50%;   
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)
    );
    pointer-events: none;
}
.menu-toggle {
    display: none;
}
.burger {   
    display: none;  
    font-size: 28px;
    cursor: pointer;
    user-select: none;
    color: white; 
    margin-left: auto; 
}
.Menu {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: nowrap;
}
.Menu-link {
    font-family: 'Oxanium', Arial, sans-serif;
    font-weight: 500;
    color: white;
    background-color: rgb(30, 30, 30);
    text-decoration:none;
    display: inline-block;
    text-align: center;
    padding: 0;
    border-radius: 6px;
    width: 100px; 
    height: 30px;  
    line-height: 30px; 
    white-space: nowrap;
    flex-shrink: 0; 
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 
        background-color 0.2s ease,
        transform 0.1s ease,
        box-shadow 0.1s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}
.Menu-link:hover {
    background-color: rgb(60, 60, 60);
    transform: translateY(-1px);
    color:rgb(208,0,0);
    border-color: rgba(208, 0, 0, 0.8);
}
.Menu-link:active {
    transform: translate(1px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
    color:rgb(208,0,0);
    border:1px solid rgba(208,0,0,0.6);
}
.Menu-link.active {
    color: rgb(208, 0, 0);
    border:1px solid rgba(208,0,0,0.6);
}
.Menu-link.active:hover {
    color: rgb(208,0,0);
    border:1px solid rgba(208,0,0,0.6);
}
.Logo {
    display: block;
    max-height: 100px; 
    width: auto;
    height: auto;
    object-fit: contain;
}
.Reseaux {
    display: block;
    width: auto;
    color: white;
}
.Reseaux .logo {
    height: 50px;
    width: 50px;
    object-fit: contain;
}
.PiedDePage {
    display: grid;
    grid-template-columns: 1fr 250px; 
    grid-template-rows: 1fr 1fr 1fr; 
    position: fixed;  
    bottom: 0;        
    left: 0;         
    width: 100%;      
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0));    
    color: white; 
    padding-bottom: 15px;
    text-align: center;  
    z-index: 100;
    gap: 0;
    align-items: end;
    margin-top: 0;      
    flex-shrink: 0;     
    height: 70px;      
    box-sizing: border-box;
}
.burger-footer {
    display: none;           
    font-size: 28px;         
    cursor: pointer;
    user-select: none;
    color: white;
    position: absolute;     
    left: 10px;         
    top: 50%;        
    transform: translateY(-50%);
}
.menu-toggle-footer {
    display: none;  
}
.burger-footer {
    display: none;  
}
.PiedDePage .MenuFooter {
    grid-column: 1;
    grid-row: 1 / span 3; 
    display: flex;        
    gap: 25px;       
    align-items: flex-end; 
    justify-content: center;
    align-self: end;     
   
} 
.PiedDePage .menu-toggle:checked + .burger-footer + .MenuFooter {
    display: flex;     
    flex-direction: column;   
    align-items: center;  
    gap: 12px;          
}
.PiedDePage .FooterNote1,
.PiedDePage .FooterNote2 {
    font-size: 0.8rem;
    justify-self: start;   
    align-self: end;   
    margin-right: 15px;   
}
.PiedDePage .FooterNote1 {
    grid-column: 2;   
    grid-row: 2;     
}
.PiedDePage .FooterNote2 {
    grid-column: 2;  
    grid-row: 3;      
}
.PiedDePage .Menu-link {
    font-family: 'Oxanium', Arial, sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: white;
    background-color: rgb(30, 30, 30);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    padding: 0px 8px;
    margin: 0;    
    border-radius: 6px;
    width: auto;       
    min-width: 60px; 
    height: 22px;    
    line-height: 22px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 
        background-color 0.2s ease,
        transform 0.1s ease,
        box-shadow 0.1s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}
.PiedDePage .Menu-link:hover {
    background-color: rgb(60, 60, 60);
    transform: translateY(-1px);
    color: rgb(208, 0, 0);
    border-color: rgba(208, 0, 0, 0.8);
}
.PiedDePage .Menu-link:active {
    transform: translate(1px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
    color: rgb(208, 0, 0);
    border: 1px solid rgba(208, 0, 0, 0.6);
}
.PiedDePage .Menu-link.active {
    color: rgb(208, 0, 0);
    border: 1px solid rgba(208, 0, 0, 0.6);
}
.PiedDePage .Menu-link.active:hover {
    color: rgb(208, 0, 0);
    border: 1px solid rgba(208, 0, 0, 0.6);
}
.Contenu {
    margin: 120px auto 0 auto;
    width: 80%;
    color: white;
    position: relative;
    margin-top: 120px;      
    z-index: 2;   
    padding: 20px 20px 100px 20px; 
    gap: 20px;
    text-align: center;
} 
.intro{
    width: 100%;
    margin: 0px auto 20px auto;
    text-align: center;
    opacity: 0;
    animation: slideIn 0.7s forwards;
    animation-delay: 0.3s;
}
.intro-line{
    margin: 0 0 0.5rem 0;  
    line-height: 1.2;    
}
.intro-line:last-child{
    margin-bottom: 0;
}
.zone-retour {
    position: fixed;    
    top: 140px;            
    right: 60px;           
    z-index: 1000;         
    margin: 0;
    padding: 0;
    width: auto;   
}
.btn-retour {
    display: inline-block;  
    font-family: 'Oxanium', Arial, sans-serif;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgb(30, 30, 30);
    border-radius: 6px;
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    width: auto;   
    padding: 5px 16px;
    transition: 
        background-color 0.2s ease,
        transform 0.1s ease,
        box-shadow 0.1s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}
.btn-retour .arrow {
    display: inline-block;                     
    animation: slideArrow 1s ease-in-out infinite;    
}
@keyframes slideArrow {
    0% {
        transform: translateX(0);     
    }
    50% {
        transform: translateX(-5px);   
    }
    100% {
        transform: translateX(0);    
    }
}
.btn-retour:hover {
    background-color: rgb(60, 60, 60);
    transform: translateY(-1px);
    color:rgb(208,0,0);
    border-color: rgba(208, 0, 0, 0.8);
}
.btn-retour:active {
    transform: translateY(1px);
    color: rgb(208,0,0);
    border: 1px solid rgba(208,0,0,0.6);
}
.retour-top {
    margin-bottom: 0px;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr); 
    gap: 20px; 
    width: 100%;
    margin-bottom: 0;
}

.cards-grid:not(.loaded) .cat-card-wrap {
    opacity: 0;
}
.col-12 {grid-column:span 12;}
.col-10 {grid-column:span 10;}
.col-8 {grid-column:span 8;}
.col-6 {grid-column:span 6;}
.col-5 {grid-column:span 5;}
.col-4 {grid-column:span 4;}
.col-3 {grid-column:span 3;}
.col-2 {grid-column:span 2;}
.col-1 {grid-column:span 1;}
.cat-card-wrap {
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
    min-width: 0; 
}
.cat-card-wrap.in-view {
  animation: fadeInUp 0.3s ease-out forwards;
}
.cat-card {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    color: white;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    overflow: hidden;
    z-index: 10;
    transform: translate3d(0,0,0);
    backface-visibility: hidden;
    will-change: transform;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(80px);  
    }
    75% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1); 
    }
}
.cat-card:hover {
    border-color:rgba(208,0,0,0.7);
    transform: translate3d(0, -3px, 0);
}
.cards-grid:not(.loaded) .cat-card-wrap {
    opacity: 0;
}
.cat-card img {
    display: block;
    width: 100%;           
    height: 100%;           
    object-fit: cover;        
    object-position: center;   
    transition: transform 0.3s ease;
    z-index: 1;
}
.cat-card:hover img {
    transform: scale(1.05);
}
.cat-card .overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;  
    justify-content: flex-end;
    padding: 1rem;
    gap: 0.3rem;
    background-image: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.2) 30%,
        rgba(0,0,0,0.6) 60%,
        rgba(0,0,0,0.8) 80%,
        rgba(0,0,0,0.9) 100%
    );
}
.cat-card .overlay * {
    transition: transform 0.3s ease, letter-spacing 0.3s ease, color 0.3s ease;
}
.cat-card:hover .overlay * {
    letter-spacing: 0.5px;   
    color: rgb(208,0,0);
}
.cat-card .zone-texte {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}
.cat-card .zone-texte > * {
    margin: 0;
}
.cat-card-info {
    display: block;
    position: relative;            
    width: 100%;
    aspect-ratio: 4/3;
    color: white;
    text-decoration: none;        
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    z-index: 10;
    user-select: none;
}
@keyframes fadeInUpInfo {
    0% {
        opacity: 0;
        transform: translateY(80px); 
    }
    75% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.02); 
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1); 
    }
}
.cat-card-info .overlay {
    position: absolute;
    inset: 0;     
    z-index: 2;    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;  
    padding: 1rem;
    gap: 0.3rem;
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 30%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 80%,
        rgba(0, 0, 0, 1) 100%
    );
}
.cat-card-info .zone-texte {
    position: absolute; 
    bottom: 10px;     
    left: 5px;       
    right: 5px;     
    color: white;
}
.cat-card-info .image-placeholder {
    text-align: center;
    font-size: 1rem;
    color: #fff;
    background-color: rgba(0,0,0,0.6);
    padding: 10px;
}
.cat-card-info img {
    display: block;
    width: 100%;                
    height: 100%;           
    object-fit:cover;        
    object-position: center;  
}
.card-contact-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.card-contact-link:hover {
    color: inherit;
    text-decoration: none;
}
.contact-action-text {
    margin-top: 6px;
    font-size: var(--fs-p); 
    font-family: var(--font-text); 
    font-weight: var(--fw-regular);
    color: rgba(255,255,255,0.7);
    line-height: 1.2; 
}
.card-text-only {
    background-color: rgba(0,0,0,0.5); 
    padding: 1.2rem;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.3);
    overflow: hidden;
    box-sizing: border-box;
    height: 100%;       
    min-height: 200px;    
    display: flex;
    flex-direction: column;   
    justify-content:flex-start;   
    aspect-ratio: unset;
    text-decoration: none;
}
.card-text-only h2 {
    margin-bottom: 1rem;   
}

.card-text-only ul {
    margin: 0 auto;
    padding-left: 1.2rem;       
    list-style-position: outside;  
    text-align: left;             
    width: fit-content;          
    margin-top: 0.6rem;
    margin-bottom: 0.6rem;
}

.card-text-only ul li {
    line-height: 1.25;             
}

.card-text-only a {
    color: var(--white-main);
    font-weight: var(--fw-medium);
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.6);
    text-underline-offset: 2px;         
    text-decoration-thickness: 1px;     
    text-decoration-skip-ink: auto;     
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.card-text-only a:hover {
    color: rgba(208,0,0,0.9); 
    text-decoration-color: rgba(208,0,0,0.7);
    cursor: pointer;
}




.cat-card-detail {
    display: grid;
    grid-template-columns: repeat(12, 1fr);     
    gap: 20px;                                  
    padding: 10px 0px 10px 0px;
    width: 100%;
    opacity: 0;                                 
    animation: fadeIn 1s ease-out forwards;     
    animation-delay: 1.1s;                      
}


@keyframes fadeIn {
    0% {
        opacity: 0;  
    }
    100% {
        opacity: 1;  
    }
}


.cat-card-detail .cat-card-detail-image{
    grid-column: span 6; 
    width: 100%;
    aspect-ratio: 4/3;  
    overflow: hidden;
    position: relative;
    display: block;
}

.cat-card-detail .cat-card-detail-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;  
    object-position: center; 
    display: block;
    position: static;
}


.cat-card-detail .cat-card-detail-text {
    grid-column: span 6;  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}


.cat-card-detail .cat-card-detail-image:hover,
.cat-card-detail .cat-card-detail-image:hover img {
    transform: none !important;
    box-shadow: none !important;
}


.cat-card-detail .overlay {
    display: none !important;
}


.cat-card-detail-text .zone-texte {
    text-align: left;
}


.cat-card-detail .cat-card-detail-text h2 {
    margin-bottom: 1.2rem;  
    line-height: 1.4;
}


.cat-card-detail .cat-card-detail-text h3,
.cat-card-detail .cat-card-detail-text h4 {
    margin-bottom: 1rem;    
    line-height: 1.4;
}

.cat-card-detail .cat-card-detail-text p {
    margin-bottom: 0.5rem;  
    line-height: 1.3;
}


.serie-description {
    margin: 18px 0 30px 0;  
    display: flex;
    flex-direction: column;
    text-align: center;
    opacity: 0;  
    animation: fadeInDescription 0.8s ease-out forwards; 
    animation-delay: 0.3s;  
}


@keyframes fadeInDescription {
    0% {
        opacity: 0;
        transform: translateY(-200px); 
    }
    100% {
        opacity: 1;
        transform: translateY(0);  
    }
}


.serie-description .serie-line{
   margin: 0 0 0.5em 0;      
   line-height: 1.2;        
}


.fiche-produit{
    display: flex;
    flex-direction: column;
    gap: 20px;  
}


.prix-produit {
    font-weight: 500;
}

.prix-tvac {
    font-weight: 600;
    color: white;
}

.prix-htva {
    color: rgba(255,255,255,0.7);
    font-size: 0.9em;
    margin-left: 5px;
}




.zone-action-produit {
    margin-top: 1rem;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


.btn-action-produit {
    display: inline-block;
    font-family: 'Oxanium', Arial, sans-serif;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgb(30, 30, 30);
    border-radius: 6px;
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    padding: 5px 16px;
    transition: 
        background-color 0.2s ease,
        transform 0.1s ease,
        box-shadow 0.1s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.btn-action-produit:hover {
    background-color: rgb(60, 60, 60);
    transform: translateY(-1px);
    color: rgb(208,0,0);
    border-color: rgba(208, 0, 0, 0.8);
}

.btn-action-produit:active {
    transform: translateY(1px);
    color: rgb(208,0,0);
    border: 1px solid rgba(208,0,0,0.6);
}

.form-action-produit {
    margin: 0;
}

.form-action-produit button {
    cursor: pointer;
}


.pagination{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;           
  margin: 30px 0;
}
.pagination-info{
  font-family: 'Oxanium', Arial, sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: white;
  padding: 0 8px;      
  white-space: nowrap;
}
.pagination .btn-pagination{
    font-family: 'Oxanium', Arial, sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: white;
    background-color: rgb(30, 30, 30);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    padding: 0px 8px;
    margin: 0;
    border-radius: 6px;
    width: auto;
    min-width: 60px;
    height: 22px;
    line-height: 22px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition:
        background-color 0.2s ease,
        transform 0.1s ease,
        box-shadow 0.1s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}
.pagination .btn-pagination:hover{
    background-color: rgb(60, 60, 60);
    transform: translateY(-1px);
    color: rgb(208, 0, 0);
    border-color: rgba(208, 0, 0, 0.8);
}
.pagination .btn-pagination:active{
    transform: translate(1px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.8);
    color: rgb(208, 0, 0);
    border: 1px solid rgba(208, 0, 0, 0.6);
}

.pagination .btn-pagination.disabled{
    opacity: 0.5;
    pointer-events: none;
    transform: none;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.6);
}

.pagination .pg-arrow{
  display: inline-block;
  transition: transform 0.15s ease;
}

.pagination .btn-pagination:hover .pg-arrow-left{
  transform: translateX(-3px);
}
.pagination .btn-pagination:hover .pg-arrow-right{
  transform: translateX(3px);
}








.texte-general {
    opacity: 0;
    animation: fadeIn 0.5s forwards;
    animation-delay: 0.5s; 
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.texte-general a {
    text-decoration: none;
    color:white;
}
.texte-general a:hover {
    color:rgb(210,0,0);
}

.texte-general h2,
.texte-general h3,
.texte-general h4,
.texte-general p {
    text-align:justify;
}
.texte-general li {
    text-align: justify;
}







.Logo--full {
    display: block;
}
.Logo--compact {
    display: none; 
}


@media screen and (max-width: 1250px) { 
    h1 {font-size: 1.8rem;}    
}


@media screen and (max-width: 1024px) {
    .Logo--full {
        display: block;
        max-height: 70px; 
        width: auto;
        margin: 0;
    }
    .Logo--compact {
        display: none;
    }
    .Banniere {
        grid-template-columns: auto 1fr auto;
        padding: 0 24px;
        height: 80px;
    }
    .Fond {
        top: 80px; 
        height: calc(100vh - 80px); 
    }
.zone-retour {
    top: 110px;     
    right: 50px;    
}
    .Menu {
        gap: 18px;
        flex-wrap: wrap;
    }
    .Menu-link {
        width: 100px;   
        height: 30px;   
        line-height: 30px;  
    }
    .Reseaux {
        display: none;
    }
    .Contenu {
        margin-top: 90px;   
    }
    .col-1, .col-2 {grid-template-columns: span 4;}
    .col-3, .col-4, .col-5, .col-6 {grid-column: span 6;}
    .col-8, .col-10, .col-12 {grid-column: span 12;}
}


@media screen and (max-width: 768px) {
    .Logo--full {
        display: none;
    }
    .Logo--compact {
        display: block;
        max-height: 60px; 
        width: auto;
        margin: 0;
    }
    .Banniere {
        display: grid;
        grid-template-columns: auto 1fr;   
        align-items: center;
        height: auto;
        gap: 10px;
        padding: 10px 16px;
    }
    .zone-retour {
    top: 110px;     
    right: 25px;    
    }
    .burger {
        display: block;  
    }
    .Menu {
        display: none;
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 10px;
        width: 100%;
    }
    .Menu-link {
        width: 100%;
        padding: 12px 0;
        text-align: center;
        min-width: unset;
    }
    .menu-toggle:checked + .burger + .Menu {
        display: flex;
    }
    .Reseaux {
        display: none;
    }
    .Contenu {
        margin-top: 100px;
    }
    .cat-card-detail {
        display: flex;
        flex-direction: column; 
        gap: 10px;
    }
    .cat-card-detail .cat-card-detail-image {
        grid-column: span 12;   
        width: 100%;            
        position: relative;     
        overflow: hidden;       
    }
    .cat-card-detail .cat-card-detail-text {
        grid-column: span 12;       
        padding: 0 10px 50px 10px;  
    }
    .cat-card-detail .cat-card-detail-image img {
        position: absolute;
        object-fit: cover;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .cat-card-detail .cat-card-detail-text h2,
    .cat-card-detail .cat-card-detail-text h3,
    .cat-card-detail .cat-card-detail-text h4 {
        margin-bottom: 0.8rem;    
        line-height: 1.3;
    }
     .cat-card-detail .cat-card-detail-text p {
        margin-bottom: 0.5rem;    
        line-height: 1.2;
    }
    [class *= "col-"] {     
                            
        grid-column: span 12;
    }
    
    .burger-footer {
        display: block;
        font-size: 28px;
        cursor: pointer;
        user-select: none;
        color: white;
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 200;
    }

    .PiedDePage .MenuFooter {
        display:none;           
        flex-direction: column; 
        align-items: center;
        gap: 12px;
        margin-top: 10px;
    }

    
    .PiedDePage .menu-toggle:checked + .burger-footer + .MenuFooter {
        display: flex;              
        flex-direction: column;     
        align-items: center;        
        gap: 12px;                  
        margin-top: 10px;           
    }

    
    .menu-toggle-footer:checked + .burger-footer + .MenuFooter {
        display: flex;
    }

    
    .PiedDePage .Menu-link {
        width: 100%;               
        padding: 10px 0;           
        font-size: 1rem;           
        min-width: unset;          
    }

    .zone-action-produit {
        justify-content: center;
    }

    .btn-action-produit {
        width: 100%;
        max-width: 320px;
    }

}

