/*Google*/
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root{
    --white-color: #fff;
    --dark-color: #252525;
    --primary-color: #3b141c;
    --secondary-color: #f3961c;
    --light-pink-color: #faf4f5;
    --medium-gray-color: #ccc;

    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    --site-max-width: 1300px;
}

html{
    scroll-behavior: smooth;
}

/*All Site*/
ul{
    list-style: none;
}
a{
    text-decoration: none;
}

button{
    cursor: pointer;
    border: none;
    background: none;
}

img{
    width: 100%;
}

.section-content{
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
}

.section-title{
    text-align: center;
    padding: 60px 0 100px;
    text-transform: uppercase;
    font-size: var(--font-size-xl);
}

.section-title::after{
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--secondary-color);
}

/*navbar*/
header{
    position: fixed;
    width: 100%;
    z-index: 5;
    background-color: #ff8c00; 
;
}

.navbar {
  background-color: #ff8c00; 
  border-bottom: 2px solid #ff8c00;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #f5f5f5;
  transition: color 0.3s ease, transform 0.2s;
}

/* Permet un petit texte sous "Commander" sans casser le menu */
.nav-item-with-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.nav-item-with-caption .nav-caption {
  font-size: 0.7rem;
  color: #fff; /* même couleur que tes liens (tu peux mettre #000 si hover noir) */
  margin-top: 2px;
  opacity: 0.9;
}


.nav-links a:hover,
.nav-links a.active {
  color: #000000;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

/*Logo jey*/

/* barre fine et stable */
.navbar {
  overflow: visible;         /* autorise le dépassement du logo */
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;          /* hauteur de la navbar (à garder fine) */
  padding: 8px 24px;         /* ajuste si besoin */
}

/* === LOGO (remplacer ce bloc) === */
.logo-text {
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  background: transparent;
}
.logo-text a { display: block; background: transparent; }
.logo-text img {
  display: block;
  height: 70px;           /* ajuste 60–80px si besoin */
  width: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
}





.navbar .logo-text {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}


/*Logo jey*/

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 6rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 1rem;
}


.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 3px 6px rgba(0,0,0,0.5);
}

.cta {
  display: inline-block;
  background: #ff8c00;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition:  0.3s ease;
}

.cta:hover {
  background: #ffa733;
}

/* ===== HERO JEY (fond + texte centré, aucun impact ailleurs) ===== */
.hero-jey {
  min-height: 100vh;
  background: url("images/Pastry\ and\ Baker.png") center/cover no-repeat; /* ← mets ton image */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-jey::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25); /* voile léger, retire-le si tu n'en veux pas */
  z-index: 1;
}

.hero-jey-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-jey-title {
  font-family: "Miniver", sans-serif;  /* ta police enfantine */
  font-size: 5rem;
  font-weight: 800;
  color: var(--secondary-color);       /* ton orange */
  margin: 0;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

@media (max-width: 900px){
  .hero-jey-title { font-size: 3.2rem; }
}
@media (max-width: 520px){
  .hero-jey-title { font-size: 2.4rem; }
}






/*About section*/
.about-section{
    padding: 120px 0;
    background: var(--light-pink-color);
}

.about-section .section-content{
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.about-section .about-image-wrapper .about-image{
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-circle);
}


.about-section .about-detail .section-title{
    padding: 0;
}

.about-section .about-detail{
    max-width: 50%;
}

.about-section .about-detail .text{
    line-height: 30px;
    margin: 50px 0 30px;
    text-align: center;
    font-size: var(--font-size-m);
}

.about-section .social-link-list{
    display: flex;
    gap: 25px;
    justify-content: center;
}

.about-section .social-link-list .social-link{
    color: var(--primary-color);
    font-size: var(--font-size-l);
    transition: 0.2s ease;
}

.about-section .social-link-list .social-link:hover{
    color: var(--secondary-color);
}

/*Menu Section*/

.menu-section{
    color: var(--white-color);
    background: var(--dark-color);
    padding: 50px 0 100px;
}

.menu-section .menu-list{
    display: flex;
    flex-wrap: wrap;
    gap: 110px;
    align-items: center;
    justify-content: space-between;
}

.menu-section .menu-list .menu-item{
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% / 3 - 110px);
}

.menu-section .menu-list .menu-item .menu-image{
    max-width: 83%;
    aspect-ratio: 1;
}

.menu-section .menu-list .menu-item .name{
    margin: 12px 0;
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-semibold);
}

.menu-section .menu-list .menu-item .text{
    font-size: var(--font-size-m);
}

/* Testimonials style*/

.testimonials-section{
    padding: 50px 0 100px;
    background: var(--light-pink-color);
}

.testimonials-section .slider-wrapper{
    overflow: hidden;
    margin: 0 60px 50px;
}


.testimonials-section .testimonial{
    user-select: none;
    display: flex;
    padding: 35px;
    text-align: center;
    flex-direction: column;
    align-items: center;
}
.testimonials-section .testimonial .user-image{
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 50px;
    border-radius: var(--border-radius-circle);
}


.testimonials-section .testimonial .name{
    margin-bottom: 16px;
    font-size: var(--font-size-m);
}


.testimonials-section .testimonial .feedback{
    line-height: 25px;
}

.testimonials-section .swiper-pagination-bullet{
    width: 15px;
    height: 15px;
    opacity: 1;
    background: var(--secondary-color);
}

.testimonials-section .swiper-slide-button{
    margin-top: -50px;
    color: var(--secondary-color);
    transition: 0.3s ease;
}

.testimonials-section .swiper-slide-button:hover{
    color: var(--primary-color);
}

/*Gallery styling*/

.gallery-section{
    padding: 50px 0 100px;
}

.gallery-section .gallery-list{
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.gallery-section .gallery-list .gallery-item{
    overflow: hidden;
    border-radius: var(--border-radius-s);
    width: calc(100% / 3 - 32px);
}

.gallery-section .gallery-item .gallery-image{
    width: 100%;
    height: 100%;
    cursor: zoom-in;
    transition: 0.3s ease;

}

.gallery-section .gallery-item:hover .gallery-image{
    transform: scale(1.3);
}

/*Contact us section*/
.contact-section{
    padding: 50px 0 100px;
    background: var(--light-pink-color);
}

.contact-section .section-content{
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-section .contact-info-list .contact-info{
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: center;
}

.contact-section .contact-info-list .contact-info i{
    font-size: var(--font-size-m);
}

.contact-section .contact-form .form-input{
    width: 100%;
    height: 50px;
    padding: 0 12px;
    outline: none;
    margin-bottom: 16px;
    background: var(--white-color);
    border-radius: var(--border-radius-s);
    border: 1px solid var(--medium-gray-color);
}

.contact-section .contact-form{

}

.contact-section .contact-form .form-input:focus{
    border-color: var(--secondary-color);
}

.contact-section .contact-form textarea.form-input{
    height: 100px;
    padding: 12px;
    resize: vertical;
}


.contact-section .contact-form .submit-button{
    padding: 10px 26px;
    color: var(--white-color);background: var(--primary-color);
    font-size: var(--font-size-m);
    font-weight: var(--font-weight-medium);
    border-radius: var(--border-radius-m);
    border: 1px solid var(--primary-color);
    transition: 0.3s ease;
}

.contact-section .contact-form .submit-button:hover{
    background: transparent;
    color: var(--primary-color);
}

/*Footer style*/

.footer-section{
    padding: 20px 0;
    background: var(--dark-color);
}

.footer-section .section-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-section :where(.copyright-text, .social-link, .policy-link){
    color: var(--white-color);
    transition: 0.2s ease;
}

.footer-section .social-link-list{
    display: flex;
    gap: 25px;
}

.footer-section .social-link-list .social-link{
    font-size: var(--font-size-l);
}

.footer-section .social-link-list .social-link:hover, .footer-section .policy-text .policy-link:hover{
    color: var(--secondary-color);
}

.footer-section .policy-text .separator{
    color: var(--white-color);
    margin:  0 5px;

}


/*Responsive media query code for max width 900px*/
@media screen and (max-width: 10240px){
    .menu-section .menu-list{
        gap: 60px;
    }

    .menu-section .menu-list .menu-item{
        width: calc(100% / 3 - 110px);
    }

}

/*Responsive media query code for max width 900px*/
@media screen and (max-width: 900px){

    :root{
        --font-size-n: 1rem;
        --font-size-m: 1.3rem;
        --font-size-l: 1.5rem;
        --font-size-xl: 1.9rem;
    }

    body.show-mobile-menu header::before{
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(5px);
        background: rgba(0,0,0,0.2);
    }

    .navbar :where(#menu-close-button, #menu-open-button){
        display: block;
        font-size: var(--font-size-l);
    }

    .navbar #menu-close-button{
        position: absolute;
        right: 30px;
        top: 30px;
    }

    .navbar #menu-open-button{
        color: var(--white-color);
    }

    .navbar .nav-menu{
        display: block;
        position: fixed;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        background: var(--white-color);
        transition: left 0.2s ease;
    }

    body.show-mobile-menu .navbar .nav-menu{
        left: 0;
    }

    .navbar .nav-menu .nav-link{
        color: var(--dark-color);
        display: block;
        margin-top: 17px;
        font-size: var(--font-size-l);
    }

    .hero-section .section-content{
        gap: 50px;
        text-align: center;
        padding: 30px 20px 20px;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .hero-section .hero-details :is(.subtitle, .description),
    .about-section, .about-details, .contact-section .contact-form{
        max-width: 100%;
    }

    .hero-section .hero-details .buttons{
        justify-content: center;
    }

    .hero-section .hero-image-wrapper{
        max-width: 270px;
        margin-right: 0;
    }

    .about-section .section-content{
        gap: 70px;
        flex-direction: column-reverse;
    }

    .about-section .about-image-wrapper .about-image{
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;
    }

    .menu-section .menu-list{
        gap: 30px;
    }

    .menu-section .menu-list .menu-item{
        width: calc(100% / 2 - 110px);
    }

    .menu-section .menu-list .menu-item .menu-image{
        max-width: 200px;
    }

    .gallery-section .gallery-list{
        gap: 30px;
    }

    .gallery-section .gallery-list .gallery-item{
        width: calc(100% / 2 - 30px);
    }

    .contact-section .section-content{
        align-items: center;
        flex-direction: column-reverse;
    }

}

/*Responsive media query code for max width 640px*/
@media screen and (max-width: 640px){
    .menu-section .menu-list{
        gap: 60px;
    }

    .menu-section .menu-list .menu-item, .gallery-section .gallery-list .gallery-item{

        width: 100%;
    }

    .testimonials-section .slider-wrapper{
        margin: 0 0 30px;
    }

    .testimonials-section .swiper-slide-button{
        display: none;
    }

    .footer-section .section-content{
        flex-direction: column;
        gap: 20px;
    }
}


/* ====== PAGE COMMANDER — VERSION STABLE (remplacer tout l'ancien CSS Commander) ====== */

.order-page{
  /* espace sous la navbar fixe ; ajuste si ta nav est plus haute */
  padding-top: 96px;
  background:#fff;
}

.order-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px 32px;
  box-sizing:border-box;
}

/* Bandeau de titre — n’empiète pas sur le reste */
.order-hero{
  position: relative;      /* pas de position sticky/fixed */
  z-index: 0;              /* reste dans le flux normal */
  background: var(--secondary-color);
  color:#fff;
  text-align:center;
  padding: 40px 16px 18px;
  border-radius:14px;
  margin: 0 0 28px 0;      /* espace propre sous le bandeau */
  box-shadow: none;        /* retire les ombres qui pouvaient se “projeter” */
}

.order-title{
  font-family:"Miniver", sans-serif;
  font-size: 2.8rem;
  margin:0 0 8px 0;
  text-shadow: 0 3px 8px rgba(0,0,0,.25);
}

.order-sub{
  margin:0;
  opacity:.95;
}

/* Grille produits */
.products-grid{
  position: relative;      /* garantit une pile normale sous le bandeau */
  z-index: 0;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap:22px;
}

/* Cartes produits */
.product-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:16px;
  overflow:hidden;
  display:flex; flex-direction:column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,.08);
}

/* Image placeholder (avant tes photos) */
.product-img{
  height:180px;
  background: linear-gradient(135deg,#f7f7f7,#eaeaea);
  background-size:cover;
  background-position:center;
  position: relative;
}
.product-img::after{
  content: attr(data-placeholder);
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  color:#aaa; font-size:.95rem;
}

/* Textes carte */
.product-name{ font-weight:700; font-size:1.1rem; margin:14px 16px 6px; }
.product-desc{ color:#666; font-size:.95rem; margin:0 16px 12px; min-height:44px; }

/* Bas de carte */
.product-meta{
  margin:auto 16px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.price{ font-weight:700; color:#111; }

/* Bouton Acheter */
.btn-buy{
  padding:10px 16px;
  border-radius:10px;
  border:2px solid var(--secondary-color);
  background:#fff;
  color:var(--secondary-color);
  font-weight:700;
  cursor:pointer;
  transition:.2s ease;
}
.btn-buy:hover{
  background: var(--secondary-color);
  color:#fff;
}

.btn-discover{
  padding:10px 16px;
  border-radius:10px;
  border:2px solid var(--secondary-color);
  background:#fff;
  color:var(--secondary-color);
  font-weight:700;
  display:inline-block;
  text-decoration:none;
  transition:.2s ease;
}
.btn-discover:hover{
  background:var(--secondary-color);
  color:#fff;
}
.product-name a{ color:#111; text-decoration:none; }
.product-name a:hover{ text-decoration:underline; }
.product-card .product-img{ display:block; }


/* Mobile */
@media (max-width:520px){
  .order-title{ font-size:2.2rem; }
  .product-img{ height:160px; }
}

/* ===== PAGE PRODUIT (scopé, n'impacte rien d'autre) ===== */
.page-product .product-page{ padding-top: 100px; background:#fff; }
.page-product .product-container{ max-width:1200px; margin:0 auto; padding:0 24px 32px; box-sizing:border-box; }

.page-product .breadcrumb{ display:flex; gap:8px; align-items:center; font-size:.95rem; color:#666; margin-bottom:14px; }
.page-product .breadcrumb a{ color:#666; text-decoration:none; }
.page-product .breadcrumb a:hover{ text-decoration:underline; }

.page-product .product-main{ display:grid; grid-template-columns: 1.1fr 1fr; gap:32px; align-items:start; }

/* Galerie */
.page-product .product-gallery .product-figure{ width:100%; aspect-ratio: 1 / 1; border-radius:16px; overflow:hidden; background:#f4f4f4; display:flex; align-items:center; justify-content:center; }
.page-product .product-gallery .product-figure img{ width:100%; height:100%; object-fit:cover; display:block; }
.page-product .thumbs{ display:flex; gap:12px; margin-top:12px; }
.page-product .thumbs .thumb{ width:80px; height:80px; object-fit:cover; border-radius:12px; opacity:.7; cursor:pointer; border:2px solid transparent; }
.page-product .thumbs .thumb.active{ opacity:1; border-color: var(--secondary-color); }

/* Détails */
.page-product .product-details{ background:#fff; border:1px solid #eee; border-radius:16px; padding:20px; }
.page-product .product-title{ font-family:"Miniver",sans-serif; font-size:2.2rem; margin:0 0 6px; color:#111; }
.page-product .product-short{ color:#555; margin:0 0 16px; }

/* Options */
.page-product .product-options{ display:flex; gap:20px; flex-wrap:wrap; margin:10px 0 12px; }
.page-product .option-group{ display:flex; flex-direction:column; gap:8px; }
.page-product .option-group label{ font-weight:700; }
.page-product .qty{ display:flex; align-items:center; gap:8px; }
.page-product .qty input{ width:68px; text-align:center; padding:8px; border:1px solid #ddd; border-radius:8px; font-weight:700; }
.page-product .qty-btn{ width:36px; height:36px; border-radius:8px; border:1px solid #ddd; background:#fff; cursor:pointer; }

/* Prix */
.page-product .price-row{ display:flex; gap:24px; align-items:flex-end; margin:12px 0; }
.page-product .price-label{ font-size:.9rem; color:#666; }
.page-product .unit-price{ font-size:1.25rem; font-weight:800; }
.page-product .total-price{ font-size:1.6rem; font-weight:800; color:#111; }

/* CTA */
.page-product .cta-row{ margin:12px 0 6px; }
.page-product .btn-primary{ padding:12px 20px; border-radius:10px; border:2px solid var(--secondary-color); background:var(--secondary-color); color:#fff; font-weight:800; cursor:pointer; }
.page-product .btn-primary:hover{ background:#fff; color:var(--secondary-color); }

/* Infos */
.page-product .product-info details{ border:1px solid #eee; border-radius:12px; padding:14px; margin-top:10px; }
.page-product .product-info summary{ font-weight:700; cursor:pointer; }
.page-product .tags{ display:flex; gap:8px; flex-wrap:wrap; margin:8px 0 0; padding:0; list-style:none; }
.page-product .tag{ background:#f5f5f5; border:1px solid #eee; padding:6px 10px; border-radius:20px; font-size:.9rem; }

/* Responsive */
@media (max-width:900px){ .page-product .product-main{ grid-template-columns: 1fr; } }


/* ===== STYLE MODERNE POUR LE SELECT (nombre de personnes) ===== */
.page-product .option-group select {
  appearance: none;                 /* supprime le style par défaut */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  padding: 10px 36px 10px 14px;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  transition: all 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff7a00' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}

.page-product .option-group select:hover {
  border-color: #ff7a00;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

.page-product .option-group select:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.25);
}

/* ===== MODAL PRODUIT (final) ===== */
:root{ --jey-orange: var(--secondary-color, #ff8c00); }

.modal-jey{ position:fixed; inset:0; display:none; z-index:2000; }
.modal-jey.open{ display:block; }
.modal-jey__backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.45); backdrop-filter: blur(2px); }

.modal-jey__dialog{
  position:absolute; top:50%; left:50%; transform: translate(-50%,-50%);
  width:min(1000px, 92vw); max-height:88vh;
  background:#fff; border-radius:20px; overflow:hidden;
  display:grid; grid-template-columns: 1.1fr 1fr;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

/* Close */
.modal-jey__close{
  position:absolute; top:10px; right:12px;
  width:38px; height:38px; border-radius:50%;
  border:0; background:#fff; color:#111; font-size:22px; cursor:pointer;
  box-shadow:0 4px 12px rgba(0,0,0,.15); z-index:5;
}

/* Flèches PRODUIT (côtés du popup) */
.modal-jey__prod-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:44px; height:44px; border-radius:50%;
  border:2px solid rgba(255,255,255,.95);
  background: rgba(255,255,255,.92);
  color:#111; font-size:22px; cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,.15);
  display:flex; align-items:center; justify-content:center;
  z-index:4; transition: transform .15s ease,  background .2s ease, border-color .2s ease;
}
.modal-jey__prod-arrow:hover{ transform:translateY(-50%) scale(1.06); background:#fff; border-color:#fff; }
.modal-jey__prod-arrow.is-prev{ left:-18px; }
.modal-jey__prod-arrow.is-next{ right:-18px; }

/* Galerie */
.modal-jey__gallery{ background:#f7f7f7; padding:18px; display:flex; flex-direction:column; gap:12px; }
.modal-jey__figure{ position:relative; width:100%; aspect-ratio:1/1; border-radius:14px; overflow:hidden; background:#eee; display:flex; align-items:center; justify-content:center; }
.modal-jey__figure img{ width:100%; height:100%; object-fit:cover; display:block; }

/* Flèches IMAGES (sur la photo) */
.modal-jey__img-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:40px; height:40px; border-radius:50%;
  border:0; background: rgba(255,255,255,.9); color:#333; font-size:24px; font-weight:700; cursor:pointer;
  box-shadow:0 6px 16px rgba(0,0,0,.15); z-index:3; transition: background .2s ease, transform .15s ease;
}
.modal-jey__img-arrow:hover{ background:#fff; transform:translateY(-50%) scale(1.05); }
.modal-jey__img-arrow.is-left{ left:10px; }
.modal-jey__img-arrow.is-right{ right:10px; }

.modal-jey__thumbs{ display:flex; gap:10px; overflow-x:auto; padding-bottom:4px; }
.modal-jey__thumbs img{ width:76px; height:76px; object-fit:cover; border-radius:10px; opacity:.7; cursor:pointer; border:2px solid transparent; }
.modal-jey__thumbs img.active{ opacity:1; border-color: var(--jey-orange); }

/* Détails */
.modal-jey__details{ padding:22px; overflow:auto; }
.modal-jey__title{ font-family:"Miniver",sans-serif; font-size:2rem; margin:0 0 6px; color:#111; }
.modal-jey__short{ color:#555; margin:0 0 14px; }

.modal-jey__options{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:10px; }
.opt{ display:flex; flex-direction:column; gap:8px; }
.qty{ display:flex; align-items:center; gap:8px; }
.qty input{ width:68px; text-align:center; padding:8px; border:1px solid #ddd; border-radius:8px; font-weight:700; }
.qty-btn{ width:36px; height:36px; border-radius:8px; border:1px solid #ddd; background:#fff; cursor:pointer; }

.modal-jey__prices{ display:flex; gap:28px; align-items:flex-end; margin:12px 0; }
.price-label{ font-size:.9rem; color:#666; }
.unit-price{ font-size:1.2rem; font-weight:800; }
.total-price{ font-size:1.6rem; font-weight:800; color:#111; }

.modal-jey__accordions details{ border:1px solid #eee; border-radius:12px; padding:12px; margin-top:10px; }
.modal-jey__accordions summary{ font-weight:700; cursor:pointer; }
.tags{ display:flex; gap:8px; flex-wrap:wrap; list-style:none; padding:0; margin:8px 0 0; }
.tag{ background:#f5f5f5; border:1px solid #eee; padding:6px 10px; border-radius:20px; font-size:.9rem; }

.modal-jey__cta{ margin-top:12px; }
.btn-primary{ padding:12px 20px; border-radius:10px; border:2px solid var(--jey-orange); background:var(--jey-orange); color:#fff; font-weight:800; cursor:pointer; }
.btn-primary:hover{ background:#fff; color:var(--jey-orange); }

/* Select cohérent */
.modal-jey .opt select{
  appearance:none; -webkit-appearance:none; -moz-appearance:none;
  background:#fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff8c00' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E") no-repeat right 12px center/18px;
  border:2px solid var(--jey-orange); border-radius:10px; padding:10px 36px 10px 14px;
  font-weight:600; color:#222; transition:.25s;
}
.modal-jey .opt select:hover{ box-shadow:0 0 0 3px rgba(255,140,0,.15); border-color:#ff8c00; }
.modal-jey .opt select:focus{ outline:none; box-shadow:0 0 0 3px rgba(255,140,0,.25); }

/* Responsive */
@media (max-width:900px){
  .modal-jey__dialog{ grid-template-columns:1fr; width:94vw; max-height:92vh; }
  .modal-jey__prod-arrow.is-prev{ left:-10px; } 
  .modal-jey__prod-arrow.is-next{ right:-10px; }
}


/* Palette alignée avec ton thème */
:root{
  --jp-brand:#ff7a00;    /* orange */
  --jp-bg:#fffdf9;
  --jp-text:#2d2a26;
  --jp-muted:#6b665f;
  --jp-card:#ffffff;
  --jp-border:#eee6dc;
  --jp-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* Container utilitaire local */
.jp-container{max-width:1200px;margin:auto;padding:0 20px}

/* ================= HERO ================= */
.presta-page .jp-hero{
  min-height:78vh;
  position:relative;
  background:
    url('../assets/prestations/hero.jpg') center/cover no-repeat,
    linear-gradient(180deg,#222,#111);
  display:grid;place-items:center;
}
.presta-page .jp-hero__overlay{
  position:absolute;inset:0;background:linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.45));
}
.presta-page .jp-hero__content{
  position:relative;z-index:1;text-align:center;color:#fff;padding:20px
}
.presta-page .jp-hero__title{
  font-family:Miniver, serif; color:var(--jp-brand); font-size:68px; line-height:1; margin:0 0 10px;
  text-shadow: 0 3px 0 rgba(0,0,0,.15);
}
.presta-page .jp-hero__sub{margin:0 0 18px; opacity:.95}
@media (max-width:680px){ .presta-page .jp-hero__title{ font-size:48px } }

/* Boutons */
.jp-btn{
  appearance:none; border:none; border-radius:12px; padding:10px 16px; font-weight:700; cursor:pointer;
  transition:transform .05s ease, box-shadow .2s ease;
}
.jp-btn:active{transform:translateY(1px)}
.jp-btn--primary{background:var(--jp-brand); color:#fff; box-shadow:0 6px 18px rgba(255,122,0,.28)}
.jp-btn--primary:hover{filter:brightness(.98)}
.jp-btn.jp-entrance{animation:pop .6s ease .2s both}
@keyframes pop{from{transform:translateY(8px);opacity:0}to{transform:none;opacity:1}}

/* ================= INTRO ================= */
.jp-intro{ background:linear-gradient(180deg, var(--jp-bg), #fff); padding:40px 0 }
.jp-intro .jp-h2{ font-size:32px; margin:0 0 6px; text-align:center }
.jp-muted{ color:var(--jp-muted); text-align:center; max-width:820px; margin:0 auto }

/* ================= MENUS ================= */
.jp-menus{ padding:30px 0 50px }
.jp-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px }
@media (max-width: 980px){ .jp-grid{ grid-template-columns:1fr } }

.jp-card{
  background:var(--jp-card); border:1px solid var(--jp-border); border-radius:18px; overflow:hidden;
  box-shadow:var(--jp-shadow);
  transform:translateY(16px) scale(.98); opacity:0;
  transition:transform .6s cubic-bezier(.2,.7,.2,1), opacity .6s;
}
.jp-card.in-view{ transform:none; opacity:1; transition-delay:var(--delay,0ms) }
.jp-card__media{ position:relative; overflow:hidden }
.jp-card__media img{ width:100%; height:220px; object-fit:cover; display:block; transition:transform .6s ease }
.jp-card:hover .jp-card__media img{ transform:scale(1.06) }
.jp-card__body{ padding:14px; display:flex; flex-direction:column; gap:8px }
.jp-card__title{ margin:0; font-size:22px }
.jp-card__sub{ margin:0; color:var(--jp-muted) }
.jp-card__list{ margin:8px 0 0 18px; color:var(--jp-text) }
.jp-card__cta{ display:flex; justify-content:flex-end; margin-top:8px }

/* ================= STEPS ================= */
.jp-steps{ background:linear-gradient(180deg,#fff,var(--jp-bg)); padding:20px 0 40px }
.jp-steps__list{ list-style:none; display:grid; grid-template-columns:repeat(3,1fr); gap:14px; padding:0; margin:0 }
@media (max-width:900px){ .jp-steps__list{ grid-template-columns:1fr } }
.jp-steps__list li{
  background:#fff; border:1px dashed var(--jp-border); border-radius:16px; padding:14px;
  display:flex; align-items:center; gap:10px;
  opacity:0; transform:translateY(10px); transition:opacity .5s, transform .5s;
}
.jp-steps__list li.in-view{ opacity:1; transform:none; transition-delay:var(--delay,0ms) }
.jp-step{ width:28px; height:28px; border-radius:999px; background:var(--jp-brand); color:#fff; font-weight:700;
  display:inline-flex; align-items:center; justify-content:center }

/* ================= CONTACT ================= */
.jp-contact{ padding:30px 0 60px }
.jp-contact__card{
  background:#fff; border:1px solid var(--jp-border); border-radius:18px; padding:18px; box-shadow:var(--jp-shadow);
  opacity:0; transform:translateY(8px); transition:opacity .6s, transform .6s;
}
.jp-contact__card.in-view{ opacity:1; transform:none }

/* Reveal utilitaire */
.jp-reveal{ opacity:0; transform:translateY(12px) }
.jp-reveal.in-view{ opacity:1; transform:none; transition:opacity .7s ease, transform .7s ease }

@media (prefers-reduced-motion: reduce){
  .jp-hero__content *, .jp-reveal, .jp-card, .jp-steps__list li, .jp-contact__card { animation:none !important; transition:none !important; transform:none !important; opacity:1 !important; }
}


/* ================== PAGE DEVIS ================== */

/* ===== HERO ORANGE (barre centrée) ===== */
.dv-hero {
  background: #ff7a00;
  color: #fff;
  text-align: center;
  padding: 60px 20px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.dv-hero .dv-title {
  color: #fff;
  font-family: "Miniver", serif;
  font-size: 54px;
  margin-bottom: 10px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.dv-hero .dv-sub {
  color: #fff;
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.4;
  opacity: 0.95;
}

/* ===== CONTENEUR GLOBAL ===== */
.dv-wrap {
  max-width: 980px;
  margin: 40px auto;
  padding: 0 16px;
}

/* ===== TITRES ===== */
.dv-title {
  font-family: "Miniver", serif;
  color: #ff7a00;
  font-size: 44px;
  margin: 8px 0 4px;
  text-align: center;
}
.dv-sub {
  color: #6b665f;
  text-align: center;
  margin: 0 0 24px;
}

/* ===== CARTE FORMULAIRE ===== */
.dv-card {
  background: #fff;
  border: 1px solid #eee6dc;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 26px;
}

/* ===== GRILLES ===== */
.dv-row,
.dv-row-3 {
  display: grid;
  gap: 14px;
}
.dv-row {
  grid-template-columns: 1fr 1fr;
}
.dv-row-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .dv-row,
  .dv-row-3 {
    grid-template-columns: 1fr;
  }
}

/* ===== CHAMPS ===== */
.dv-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}
.dv-field label {
  font-weight: 600;
  font-size: 15px;
  color: #2d2a26;
}
.dv-field input,
.dv-field select,
.dv-field textarea {
  border: 1px solid #eee6dc;
  border-radius: 10px;
  background: #fff;
  font: inherit;
  padding: 10px 12px;
  transition: border-color 0.2s;
}
.dv-field input:focus,
.dv-field select:focus,
.dv-field textarea:focus {
  outline: none;
  border-color: #ff7a00;
}
.dv-field textarea {
  min-height: 110px;
  resize: vertical;
}

/* ===== PETIT TEXTE ===== */
.dv-help {
  font-size: 12px;
  color: #6b665f;
}
.dv-required {
  color: #ff7a00;
  font-weight: 700;
}

/* ===== BOUTONS ===== */
.dv-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 16px;
}
.dv-btn {
  appearance: none;
  border: none;
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.dv-btn--primary {
  background: #ff7a00;
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 122, 0, 0.22);
}
.dv-btn--primary:hover {
  background: #e36d00;
}
.dv-btn--ghost {
  background: transparent;
  border: 1px solid #eee6dc;
  color: #2d2a26;
}
.dv-btn--ghost:hover {
  border-color: #ff7a00;
  color: #ff7a00;
}

/* ==== MENUS (cartes et popup) ==== */

.menus {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 0;
}

.menu-card {
  width: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.menu-card h3 {
  color: #e67e22;
  margin-bottom: 10px;
}
.menu-card p {
  color: #666;
  font-size: 15px;
}

/* ===== POPUP (modal) ===== */

.menu-modal {
  display: none; /* caché par défaut */
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
}

/* cadre blanc au centre */
.menu-modal .modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  position: relative;
  animation: menuPopIn 0.4s ease forwards;
}

@keyframes menuPopIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.menu-modal .modal-content h2 {
  color: #e67e22;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.menu-modal .modal-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-modal .modal-content li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #444;
}

/* bouton fermer */
.menu-modal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
  transition: color 0.2s ease;
}
.menu-modal .close:hover {
  color: #e67e22;
}


/* ===== ALERTES ===== */
.dv-alert {
  display: none;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
}
.dv-alert.ok {
  display: block;
  background: #e9f9ef;
  color: #0f7a3b;
  border: 1px solid #bce8cf;
}
.dv-alert.err {
  display: block;
  background: #feecec;
  color: #9b1c1c;
  border: 1px solid #f4c1c1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .dv-title {
    font-size: 36px;
  }
  .dv-card {
    padding: 18px;
  }
  .dv-hero {
    padding: 50px 18px 40px;
  }
  .dv-hero .dv-title {
    font-size: 42px;
  }
  .dv-hero .dv-sub {
    font-size: 16px;
  }
}

/* Message de confirmation / erreur */
.form-alert {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: #333;
  border: 2px solid #e67e22;
  border-radius: 12px;
  padding: 30px 40px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}

.form-alert.success {
  border-color: #27ae60;
}

.form-alert.error {
  border-color: #e74c3c;
}

.form-alert h3 {
  margin-bottom: 10px;
}

.form-alert button {
  background: #e67e22;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  margin-top: 10px;
  cursor: pointer;
}

.form-alert button:hover {
  background: #cf6e17;
}

/* ========== Responsive Jey Pastry ========== */

/* 1) Base mobile-first : images fluides, boutons full-width si nécessaire */
img { max-width: 100%; height: auto; display: block; }
.jp-btn { display: inline-flex; align-items: center; justify-content: center; }

/* 2) Grille des cartes presta (jp-grid) */
.jp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/* 3) Cartes */
.jp-card { border-radius: 16px; overflow: hidden; }
.jp-card__media img { width: 100%; height: 220px; object-fit: cover; }
.jp-card__body { padding: 20px; }
.jp-card__title { font-size: 1.45rem; line-height: 1.2; }
.jp-card__sub { color: #666; margin: 6px 0 14px; }

/* CTA : bouton “Découvrir” + “Demander un devis” côte à côte, puis pile en mobile */
.jp-card__cta { display: flex; gap: 10px; flex-wrap: wrap; }
.jp-card__cta .jp-btn { padding: 12px 16px; border-radius: 10px; font-weight: 700; }

/* 4) Hero presta */
.presta-hero {
  min-height: 64vh; /* plus compact sur mobile via MQ */
  background-size: cover; background-position: center;
  display: grid; place-items: center;
  text-align: center; padding: 60px 16px;
}
.hero-title { font-family: "Miniver", cursive; font-size: clamp(28px, 6vw, 56px); }
.discover-btn { padding: 12px 18px; border-radius: 12px; }

/* 5) Modal menu */
.menu-modal { padding: 14px; }
.menu-modal .menu-modal__content { width: min(560px, 94vw); }

/* ——— Breakpoint <= 992px (tablette paysage / petit laptop) ——— */
@media (max-width: 992px) {
  .jp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jp-card__media img { height: 200px; }
  .navbar nav ul { gap: 14px; } /* si tu as des liens de nav */
}

/* ——— Breakpoint <= 768px (tablette / grands téléphones) ——— */
@media (max-width: 768px) {
  .presta-hero { min-height: 52vh; padding: 48px 14px; }
  .jp-grid { grid-template-columns: 1fr; gap: 22px; }
  .jp-card__body { padding: 18px; }
  .jp-card__title { font-size: 1.35rem; }
  .jp-card__cta { gap: 8px; }
  .jp-card__cta .jp-btn { flex: 1 1 auto; } /* boutons prennent la largeur */
  .navbar { position: sticky; top: 0; z-index: 50; } /* header fixe pratique */
}

/* ——— Breakpoint <= 480px (smartphones) ——— */
@media (max-width: 480px) {
  .presta-hero { min-height: 46vh; }
  .hero-title { font-size: clamp(26px, 8vw, 36px); }
  .jp-card__media img { height: 180px; }
  .jp-card__title { font-size: 1.22rem; }
  .jp-card__cta .jp-btn { padding: 12px; }
  .menu-modal .menu-modal__content { padding: 24px 18px; border-radius: 16px; }
  .menu-modal .menu-modal__title { font-size: 26px; }
}

/* Accessibilité tactile */
@media (hover: none) and (pointer: coarse) {
  .jp-btn { min-height: 44px; } /* cible tactile recommandée */
}

/* --- Burger bouton --- */
.nav-toggle{
  display:none; /* desktop par défaut */
  background:transparent; border:0; cursor:pointer; padding:8px;
}
.nav-toggle span{
  display:block; width:26px; height:3px; background:#000; margin:5px 0; border-radius:2px;
  transition:transform .2s, opacity .2s;
}

/* --- Mobile --- */
@media (max-width:768px){
  /* montre le bouton, cache le menu par défaut */
  .nav-toggle{ display:block; }

  /* conteneur menu mobile */
  .nav-links{
    position:fixed; left:0; right:0; top:60px; /* ajuste 60px selon la hauteur de ta barre orange */
    background:#fff; box-shadow:0 12px 30px rgba(0,0,0,.12);
    display:flex; flex-direction:column; gap:0;
    transform:translateY(-10px); opacity:0; pointer-events:none;
    transition:opacity .2s ease, transform .2s ease;
    z-index:1000;
  }
  .nav-links a{
    padding:16px; border-bottom:1px solid #f1f1f1; color:#222; text-decoration:none;
  }
  .nav-links .nav-item-with-caption{ display:none; } /* optionnel: masque ce bloc en mobile */

  /* état ouvert */
  .nav-open .nav-links{
    transform:translateY(0); opacity:1; pointer-events:auto;
  }

  /* anim burger → croix */
  .nav-open .nav-toggle span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2){ opacity:0; }
  .nav-open .nav-toggle span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }

  /* bloque le scroll de la page quand menu ouvert */
  body.menu-lock{ overflow:hidden; }
}

/* === FORCER l'affichage du burger en mobile et le placer en haut-droite === */
@media (max-width: 768px){
  .nav-toggle{
    display:block !important;           /* clé : le rendre visible */
    position:fixed;                     /* au-dessus de la barre */
    right:12px; 
    top:12px;                           /* ajuste si ta barre est plus haute */
    z-index:2000;
    background:transparent;
    border:0;
    padding:8px;
  }
  .nav-toggle span{
    display:block; width:26px; height:3px; 
    background:#000; margin:5px 0; border-radius:2px;
    transition:transform .2s, opacity .2s;
  }

  /* menu replié par défaut */
  .nav-links{
    position:fixed; left:0; right:0; top:56px;   /* 56px = hauteur de ta barre orange */
    background:#fff; box-shadow:0 12px 30px rgba(0,0,0,.12);
    display:flex; flex-direction:column; gap:0;
    transform:translateY(-8px); opacity:0; pointer-events:none;
    transition:opacity .2s, transform .2s;
    z-index:1500;
  }
  .nav-links a{ padding:16px; border-bottom:1px solid #f1f1f1; color:#222; text-decoration:none; }

  /* état ouvert */
  .nav-open .nav-links{ transform:translateY(0); opacity:1; pointer-events:auto; }

  /* anim burger -> croix */
  .nav-open .nav-toggle span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2){ opacity:0; }
  .nav-open .nav-toggle span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }

  /* éviter le scroll derrière le menu */
  body.menu-lock{ overflow:hidden; }
}

/* option: masquer le bloc avec caption en mobile */
@media (max-width:768px){
  .nav-item-with-caption{ display:none; }
}

@media (max-width: 768px){
  .nav-toggle{
    display:block !important;
    position:fixed; right:12px; top:12px; z-index:10000;
    background:transparent; border:0; padding:8px;
  }
  .nav-toggle span{
    display:block; width:26px; height:3px; background:#000; margin:5px 0; border-radius:2px;
    transition:transform .2s, opacity .2s;
  }

  /* menu replié par défaut, caché visuellement */
  .nav-links{
    position:fixed; left:0; right:0; top:56px; /* ajuste si ta barre est plus haute */
    background:#fff;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    display:flex; flex-direction:column; gap:0;
    transform:translateY(-8px); opacity:0; pointer-events:none;
    transition:opacity .2s, transform .2s;
    z-index:9999; /* au-dessus de la barre orange */
  }
  .nav-links a{ padding:16px; border-bottom:1px solid #f1f1f1; color:#222; text-decoration:none; }
  .nav-item-with-caption{ display:none; }

  /* état ouvert */
  .nav-open .nav-links{
    transform:translateY(0); opacity:1; pointer-events:auto;
  }

  /* anim burger -> croix */
  .nav-open #navToggle span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
  .nav-open #navToggle span:nth-child(2){ opacity:0; }
  .nav-open #navToggle span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }

  /* pas de scroll derrière */
  body.menu-lock{ overflow:hidden; }
}
