/* ---------------------------
   RESET CSS – Base moderne
---------------------------- */

/* 1. Reset box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 2. Remove default list styles */
ul,
ol {
    list-style: none;
}

/* 3. Remove default margins on titles, paragraphs, etc. */
body,
h1, h2, h3, h4, h5, h6,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

/* 4. Set default body styles */
body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Container classique et responsive */
.container {
  width: 100%;
  max-width: 1440px; /* largeur maximale */
  margin: 0 auto;    /* centrage */
  padding:15px;   /* marge interne pour respirer */
}

/* Optionnel : gestion d’un layout en grille responsive */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.col {
  flex: 1 1 100%; /* sur mobile : 100% */
}


/* 5. Make images responsive */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* 6. Remove border from links */
a {
    text-decoration: none;
    color: inherit;
}

/* 7. Form elements inherit font */
input,
button,
textarea,
select {
    font: inherit;
}

/* 8. Buttons default cleanup */
button {
    border: none;
    background: none;
    cursor: pointer;
}

/* 9. Tables basic reset */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 10. Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* 11. Remove focus outline unless keyboard */
:focus:not(:focus-visible) {
    outline: none;
}
 :root {
      --gray-bg: #3b3b3b;
      --gray-bg-transparent: rgba(35,35,35,0.9);
      --primary: #27327b;
      --white: #ffffff;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--black);
      min-height: 100vh;
    }

    /* ---- HERO GLOBAL ---- */
    .hero {
      position: relative;
      min-height: 65vh;
      /* background: url("assets/img/333.jpg") center/cover no-repeat; */
      display: flex;
      flex-direction: column;
    }

    /* overlay sombre pour le haut */
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        var(--gray-bg-transparent) 0,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.2) 50%
      );
      pointer-events: none; 
    }


p{
    font-size: 18px;
}

.wrapper{
    height:80px !important;
}
/* hero v2 */
/* HERO */
.hero {
    position: relative;
    width: 100%;
  
    display: flex;
   flex-direction: column;
}

/* filtre */
/* Titre + formulaire */
#filtre-serie-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;                 /* espace entre les éléments */
    align-items: flex-end;
    margin: 0 0 1.5rem;
}

/* Chaque bloc de select */
#filtre-serie-form .filtre-serie {
    flex: 1 1 200px;           /* prend la place dispo, min 200px */
    display: flex;
    flex-direction: column;
}

/* Les <select> */
#filtre-serie-form select, input[type=search] {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    background-color: #fff;
    box-sizing: border-box;
}

/* Boutons */
#filtre-serie-form button, .submit-search {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
}

/* On met un petit style basique différent pour les deux (tu peux changer) */
#filtre-serie-form button[name="action_type"][value="filter"] {
    background: #0073aa;
    color: #fff;
}

#filtre-serie-form button[name="action_type"][value="goto_cat"], .submit-search {
    background: #f3f3f3;
    color: #333;
}

/* Regroupement des boutons : ils se partagent la ligne comme un bloc */
#filtre-serie-form button + button {
    margin-left: 0.5rem;
}

/* ----------- Responsive ----------- */

@media (max-width: 768px) {
    #filtre-serie-form {
        flex-direction: column;
        align-items: stretch;
    }

    #filtre-serie-form .filtre-serie {
        width: 100%;
    }

    #filtre-serie-form button,
    #filtre-serie-form button + button {
        width: 100%;
        margin-left: 0;
    }

    #filtre-serie-form button + button {
        margin-top: 0.5rem;
    }
}

/* VIDÉO */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Overlay sombre (facultatif) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 2;
}

/* CONTENU */
.hero-content {
    position: relative;
    z-index: 3;
 
    color: #fff;
    padding: 20px;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;

    flex-wrap: wrap;
}

/* Ajouter ton style de boutons existant */
.btn { padding: 10px 20px; border-radius: 6px; text-decoration: none; }




    /* ---- HEADER ---- */
    .header {
        position: absolute;
        z-index: 2;
        background: rgba(52, 52, 52, 0.8);
        width: 100%;
        top: 25px;
            z-index: 9999999;
    }
    #header{
      background-image: url('../../uploads/2026/03/cover.png');
      height:170px;
      background-size: cover;
      background-position-y: center;
    }
#header {
  position: relative;
 
 height:170px;
}

.header-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.header-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.header-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* assombrit la vidéo */
  z-index: 1;
}

#header .header {
  position: relative;
  z-index: 99999999;
}

#header .header-inner {
  position: relative;
  z-index: 99999999;
}

/* Pour que le menu et les éléments restent bien visibles */
#header a,
#header .mega-menu-link,
#header .nav a,
#header .icon-btn,
#header .cart-count {
  position: relative;
  z-index: 3;
}
    

    .header-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 1rem 1.5rem;
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 1.5rem;
    }

    /* search */
    .recherche{
        border:1px solid black;
        border-radius: 5px;
        margin: 20px auto; 
        padding:20px;
        background: rgba(52, 52, 52, .9);
        color:white
    }

    .woocommerce-product-search{
        display:flex;
    }

    /* Conteneur */
.woocommerce-products-header__title,
.toggle-recherche {
  margin: 0;
}

.page-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Titre */
.page-title-wrapper h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

/* Mobile */
@media (max-width: 768px) {
  .page-title-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .toggle-recherche {
    width: 100%;
    text-align: center;
  }
}
.search-field{
    margin-right: 20px;
    }
    /*cart */
    .panier {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  text-decoration: none;
}

/* Bouton */
.toggle-recherche {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #1f3d2b; /* adapte à Nenuphar */
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

/* Bloc recherche */
.recherche {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

/* État visible */
.recherche.is-open {
  max-height: 2000px; /* suffisant pour ton contenu */
  opacity: 1;
  position: relative;
  z-index: 9999;
  /* top:115px; */
}


.panier svg {
  width: 28px;
  height: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Effet hover sur l’icône */
.panier:hover svg {
  transform: scale(1.1);
  opacity: 0.9;
}

/* Badge compteur */
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background-color: #e1332f;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  border-radius: 999px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.single_variation_wrap {
    display: flex;
    flex-wrap: wrap;
}

#my-variable-role-price-note {
    flex-basis: 100%;
    width: 100%;
    margin-top: 10px;
}

/* Optionnel : animation quand le panier contient des items */
.cart-count:not(:empty) {
  animation: pop 0.3s ease;
}

#billing_phone_field .optional{
 
    visibility:hidden !important;
}

@keyframes pop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Conteneur principal */
.pll-parent-menu-item {
  position: relative;
}

/* Bouton langue active */
.pll-parent-menu-item > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}
.trp-ls-language-name{
  display:none;
}
/* Dropdown */
.pll-parent-menu-item ul {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 60px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 1000;
}

/* Affichage au hover */
.pll-parent-menu-item:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Liens langues */
.pll-parent-menu-item ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

/* Hover langue */
.pll-parent-menu-item ul li a:hover {
  background: #f5f5f5;
}

/* Drapeaux */
.pll-parent-menu-item img {
  width: 18px;
  height: auto;
  border-radius: 2px;
}

/* Langue active */
.pll-parent-menu-item .current-lang > a {
  font-weight: 700;
  color: #e1332f;
}


    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
     width: 250px !important;
    }

    .logo-box {
      /* background: #000; 
      border-radius: 0.75rem;
      padding: 0.75rem 1.25rem;*/
      display: flex;
      flex-direction: column;
      justify-content: center;
      position:absolute;
      top:-25px;
    }

    .logo-box img{
         max-width: 250px !important;
    }
#mega-menu-wrap-boutique-menu #mega-menu-boutique-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-accueil-menu #mega-menu-accueil-menu > li.mega-menu-item > a.mega-menu-link {
    line-height: 40px;
    height: 40px;
    padding: 0px 10px;
    vertical-align: baseline;
    width: auto;
    display: block;
    color: #ffffff;
    text-transform: none;
    text-decoration: none;
    text-align: left;
    background: none !important;
    border: 0;
    border-radius: 0px;
    font-family: inherit;
    font-size: 20px !important;
    font-weight: normal;
    outline: none;
}


#mega-menu-wrap-primary,
#mega-menu-wrap-boutique-menu,
.mega-menu-wrap {
    position: static !important;
    overflow: visible !important;
}

/* Mega menu pleine largeur */
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > .mega-sub-menu,
#mega-menu-wrap-boutique-menu #mega-menu-boutique-menu > li.mega-menu-megamenu > .mega-sub-menu {
    left: 0 !important;
    right: 0 !important;
    width: 1440px !important;   /* Prend toute la largeur de l’écran */
    max-width: 1440px!important;
    margin-left: calc(50% - 42vw) !important; /* Centre le mega-menu */
}


    .logo-title {
      font-weight: 700;
      letter-spacing: 0.08em;
      font-size: 0.9rem;
      text-transform: uppercase;
      white-space: nowrap;
    }
    

    .logo-sub {
      font-size: 0.65rem;
      text-transform: uppercase;
      opacity: 0.85;
    }

    .logo-flag {
      margin-top: 0.4rem;
      height: 6px;
      border-radius: 999px;
      overflow: hidden;
      display: flex;
    }
    .logo-flag span {
      flex: 1;
    }
    .flag-blue { background:#0033a0; }
    .flag-white { background:#ffffff; }
    .flag-red   { background:#d50000; }

    /* NAV */
    .nav {
      flex: 1;
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      font-size: 0.95rem;
    }

    .nav a {
      color: var(--white);
      text-decoration: none;
      font-weight: 600;
      position: relative;
      padding-bottom: 0.15rem;
      white-space: nowrap;
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--white);
      transition: width 0.2s ease;
    }

    .nav a:hover::after {
      width: 100%;
    }

    /* ICONES À DROITE */
    .header-right {
      display: flex;
      align-items: cneter;
      gap: 0.75rem;
      font-size: 0.95rem;
    }

    .icon-btn {
      width: 35px;
      height: 35px;
      border-radius: 999px;
      /* border: 3px solid rgba(255,255,255,1); */
      display: flex;
   
      font-size: 0.9rem;
      cursor: pointer;
    }

    .pll-parent-menu-item img {
    width: 30px !important;
    height: auto !important;
    border-radius: 2px;
}

    .lang {
      display: flex;
      gap: 0.25rem;
      font-size: 1.1rem;
    }
    #trustpilot-widget-trustbox-0-wrapper{
      margin:30px 15px !important;
    }
    /* ---- CONTENU HERO ---- */
    .hero-content {
      position: relative;
      z-index: 999;
      flex: 1;
      display: flex;
      align-items: center;
      padding: 10rem 1.5rem 4rem;
    }

    .hero-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding:0 25px;
      width: 100%;
    }

    .hero-title {
      font-size: clamp(1rem, 4vw, 2rem);
      font-weight: 800;
      margin-bottom: 1.25rem;
      color:white
    }

    .hero-subtitle {
      font-size: 1.05rem;
      max-width: 800px;
      margin-bottom: 2.25rem;
      color:white;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }



    .btn {
      border-radius: 0.5rem;
      padding: 0.9rem 2rem;
      border: 2px solid var(--white);
      font-weight: 700;
      text-decoration: none;
      font-size: 0.95rem;
      cursor: pointer;
      background: transparent;
      color: var(--white);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 210px;
      transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    }

    .btn-primary {
      background: var(--primary);
      border-color: var(--primary);
    }

    .btn:hover {
      transform: translateY(-1px);
      background: rgba(255,255,255,0.15);
    }

    .btn-primary:hover {
      background: #1b2358;
    }

    .btn-outline {
      background: rgba(255,255,255,0.9);
      color: #111;
      border-color: transparent;
    }
    .btn-outline:hover {
      background: var(--white);
    }

    .boutique-secondaire {
    display: flex;
        gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.bs-item {
    flex: 1;
    min-width: 337px;
    max-width: 337px;
    min-height: 94px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border: 2px solid #ccc;
    border-radius: 12px;
    text-decoration: none;
    background: white;
    transition: 0.25s;
}

.bs-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.bs-text h3 {
    margin: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 700;
}

.bs-text p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

.bs-icon img {
    width: 45px;
    height: auto;
}

/* Couleurs */
/* .bs-item.navigation { border-color: #2b3c9b; }
.bs-item.stockage { border-color: #1ba9dd; }
.bs-item.equipements { border-color: #dd2a2a; }
.bs-item.maintenance { border-color: #2c7d3d; } */

/* section exclu */
.exclu-nenuphar {
    text-align: center;
    margin: 30px 0;
}

.exclu-nenuphar h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 3px solid #1e73be;
    display: inline-block;
    padding: 5px 15px;
}

/* Grid 2×2 */
.exclu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* gap: 12px; */
}

/* Container */
.exclu-item {
    position: relative;
    overflow: hidden;
    display: block;
  
    animation: fadeIn 0.7s ease forwards;
    opacity: 0;
}

/* Animation d’apparition */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Image */
.exclu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    /* Zoom */
    transition: transform 0.6s ease;
}

/* Zoom au hover */
.exclu-item:hover img {
    transform: scale(1.1);
}

/* Overlay */
.exclu-item .overlay {
    position: absolute;
       top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 700;
    transition: background 0.25s ease;
        height: 55px;
    width: 250px;
    border-radius: 5px;
}

/* Hover → overlay plus sombre */
.exclu-item:hover .overlay {
    background: rgba(0, 0, 0, 0.6);
}


/* État initial (invisible + décalé) */
.exclu-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Quand visible */
.exclu-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Zoom image au hover */
.exclu-item img {
    transition: transform 0.6s ease;
}

.exclu-item:hover img {
    transform: scale(1.1);
}

/* section apropos */
.nenuphar-story {
    margin: 40px auto;
    max-width: 1440px;
    padding: 0 20px;
}

.nenuphar-story h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: center;
}

/* Image */
.story-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

/* Texte */
.story-text {
    font-size: 1.4rem;
    line-height: 1.6;
}

.story-text p {
    margin-bottom: 15px;
}

/* section res */
/* Section avec image en arrière-plan */
.newsletter-section {
    position: relative;
    padding: 70px 20px;
    background-size: cover;
    background-position: center;
    /* ← mettre ici votre image de fond */
 
}

/* Bloc semi-transparent */
.newsletter-box {
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 40px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 12px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    color: #fff;
}

/* Titres */
.newsletter-box h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* ---- Newsletter ---- */
.newsletter-left form {
    display: flex;
    gap: 10px;
}

.newsletter-left input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 20px;
    border: none;
    outline: none;
}

.newsletter-left button {
    padding: 10px 18px;
    background: #d12c2c;
    border: none;
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.25s;
}

.newsletter-left button:hover {
    background: #b42424;
}

/* ---- Réseaux sociaux ---- */
.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icons img {
    width: 45px;
    height: 45px;
    transition: transform 0.25s;
}

.social-icons img:hover {
    transform: scale(1.15);
}

/* section reassurance */
.info-icons {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin: 30px 0;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    min-width: 260px;
}

/* Icônes */
.info-item img {
    width: 55px;
    height: auto;
    flex-shrink: 0;
}

/* Titres */
.info-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

/* Texte */
.info-item p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.3;
    color: #444;
}

/* section blog */
/* SECTION */
.home-blog {
    max-width: 1440px;
    margin: 50px auto;
    padding: 0 20px;
}

.home-blog-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

/* GRID → 3 colonnes */
.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARTE ARTICLE */
.home-blog-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-blog-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

/* IMAGE */
.home-blog-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* CONTENU */
.home-blog-content {
    padding: 20px;
}

.home-blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.home-blog-content h3 a {
    color: #222;
    text-decoration: none;
}

.home-blog-content h3 a:hover {
    color: #0073aa;
}

/* Extrait */
.home-blog-content .excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* Bouton */
.readmore {
    padding: 8px 15px;
    background: #0073aa;
    color: #fff;
    display: inline-block;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.readmore:hover {
    background: #004f75;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .home-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .home-blog-grid {
        grid-template-columns: 1fr;
    }
}

/* breadcrumb */
/* Container */
.aioseo-breadcrumbs {
  margin: 20px 0;
    
}

/* Liste */
.aioseo-breadcrumbs ol {
display: flex;
  flex-wrap: wrap;               /* Autorise retour à la ligne */
  align-items: center;
  font-size: 14px;
  line-height: 1.4;
  gap: 6px;
  max-width: 100%;
  overflow-wrap: break-word;
}

/* Badge */
.aioseo-breadcrumb, .woocommerce-breadcrumb {
  display: inline-flex;
  align-items: center;
}

/* Liens en badge */

.aioseo-breadcrumb, .woocommerce-breadcrumb {
  margin-top:15px !important;
   font-size: 13px !important;
  font-weight: 500;
}

.aioseo-breadcrumb a, .woocommerce-breadcrumb a {
  padding: 6px 12px;
  background: #f3f4f6;
  color: #374151;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;

  white-space: nowrap;    
}

.aioseo-breadcrumb a:hover, .woocommerce-breadcrumb a:hover{
  background: #2563eb;
  color: #ffffff !important;
}

/* Badge actif */
.aioseo-breadcrumb-current {
  padding: 6px 12px;
  background: #111827;
  color: #ffffff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

/* Séparateur discret */
.aioseo-breadcrumb-separator {
  margin: 0 2px;
  color: #9ca3af;
  font-size: 12px;
    white-space: nowrap;
}
.aioseo-breadcrumb a, .woocommerce-breadcrumb a,
.aioseo-breadcrumb-current {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}


/* SIDEBAR */
.layout-boutique{
  display:flex;
  gap:30px;
  align-items:flex-start;
}
.shop-layout--no-sidebar{
  /* display:none !important */
}

.sidebar-boutique{
  width:280px;
  flex:0 0 280px;
}

.content-boutique{
  flex:1;
  min-width:0;
}

.sidebar-cats{
  list-style:none;
  padding:0;
  margin:0;
}

.sidebar-cats li a{
  display:block;
  padding:10px 12px;
  text-decoration:none;
}

.sidebar-cats li.is-active a{
  font-weight:700;
}


/* ---- FOOTER ---- */

.site-footer {
    /* background: #222 url('assets/img/footer.png') center/cover no-repeat; */
    background: #222 url('assets/img/footer.png') top/cover no-repeat;
    color: #fff;
    padding-top: 50px;
    margin-top: 50px;
    /* height: 500px; */
    align-content: end;
}

/* Partie haute : logo + colonnes */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px 40px;
    flex-wrap: wrap;

}

/* Logo */
.footer-logo img {
  max-width: 220px !important;
    width: 220px !important;
    height: auto;
}

/* Colonnes widgets */
.footer-widgets {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Titre widget WP */
.footer-widget h2,
.footer-widget .widgettitle {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* Liens */
.footer-widget a {
    color: #ccc;
    text-decoration: none;
    transition: 0.2s;
}

.footer-widget a:hover {
    color: #fff;
}

/* Bas de footer */
.footer-bottom {
    text-align: center;
    padding: 15px 10px;
    background: rgba(0, 0, 0, 0.3);
    font-size: 0.85rem;
}
.footer-bottom p {
    margin: 0;
}

/* page .panier */
body.woocommerce-cart .woocommerce-cart-form{
  overflow-x: auto; /* utile mobile */
}

body.woocommerce-cart table.shop_table{
  width: 100%;
  border-collapse: collapse;
}

body.woocommerce-cart table.shop_table th,
body.woocommerce-cart table.shop_table td{
  padding: 12px 10px;
  vertical-align: middle;
}

body.woocommerce-cart td.product-thumbnail img{
  max-width: 80px;
  height: auto;
  display: block;
  border-radius: 8px;
}

.woocommerce div.product div.images img {
    display: block;
    width: auto !important;
    height: auto;
    box-shadow: none;
}

body.woocommerce-cart td.product-name a{
  text-decoration: none;
}

body.woocommerce-cart .quantity .qty{
  width: 70px;
  padding: 8px;
  border-radius: 8px;
}

body.woocommerce-cart .woocommerce-cart-form .actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

body.woocommerce-cart .coupon{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

body.woocommerce-cart .coupon #coupon_code{
  min-width: 220px;
  padding: 10px 12px;
  border-radius: 10px;
}

body.woocommerce-cart .cart-collaterals{
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 580px;
  gap: 24px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt {
background-color:#27327b !important;
}
.lpc_pick_up_widget_show_map{
    color: white;
    padding: 10px;
    background: #f28c07 !important;
    border-radius: 5px;
    }
@media (max-width: 900px){
  body.woocommerce-cart .cart-collaterals{
    grid-template-columns: 1fr;
  }
}

body.woocommerce-cart .cart_totals{
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
}

body.woocommerce-cart .wc-proceed-to-checkout .checkout-button{
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals{
  width:100% !important
}


/* inscription */

#customer_login{
    max-width: 390px;
    text-align: center;
    transform: translate(50%, 0);
}

.woocommerce-privacy-policy-text p{
    font-size: 12px;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    border: 0 !important;
    padding:0 !important;
    margin:0 !important;
    text-align: left;
    border-radius: 5px;
}

.wp-block-woocommerce-checkout{
  display:none !important
}

/* category ^roduct */
/* WooCommerce archive: grille moderne responsive (max 4 colonnes) */
:root{
  --wc-gap: 18px;
  --wc-radius: 16px;
  --wc-border: rgba(0,0,0,.10);
  --wc-shadow: 0 10px 25px rgba(0,0,0,.08);
  --wc-shadow-hover: 0 14px 35px rgba(0,0,0,.12);
  --wc-bg: #fff;
  --wc-text: rgba(0,0,0,.88);
  --wc-accent: #111;
  --wc-accent-contrast: #fff;
}

/* Layout boutique : sidebar + contenu */
.shop-layout{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

.shop-layout--no-sidebar .shop-main {
  width: 100%;
  max-width: 100%;
}

/* Sidebar sticky optionnelle */
.shop-sidebar{
  position: sticky;
  top: 24px; /* ajuste selon ton header */
}

/* Responsive */
@media (max-width: 992px){
  .shop-layout{
    grid-template-columns: 1fr;
  }
  .shop-sidebar{
    position: static;
    top: auto;
    order: 2; /* sidebar après les produits sur mobile */
  }
  .shop-main{
    order: 1;
  }
}

/* Grille produits (CSS Grid) */
.woocommerce ul.products{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--wc-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3{
  padding:12px !important;
}


/* Tablette */
@media (min-width: 768px){
  .woocommerce ul.products{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Desktop (MAX 4) */
@media (min-width: 1024px){
  .woocommerce ul.products{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Carte produit */
.woocommerce ul.products li.product{
  float: none !important;
  width: auto !important;
  margin: 0 !important;

  display: flex;
  flex-direction: column;
  background: var(--wc-bg);
  border: 1px solid var(--wc-border);
  border-radius: var(--wc-radius);
  overflow: hidden;
  box-shadow: var(--wc-shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.woocommerce ul.products li.product:hover{
  transform: translateY(-3px);
  box-shadow: var(--wc-shadow-hover);
  border-color: rgba(0,0,0,.16);
}

/* Lien + image */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link{
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  text-decoration: none;
  color: inherit;
}
.woocommerce ul.products li.product a img{
  width: auto !important;
  height: revert-layer !important;
  /* aspect-ratio: 1 / 1; */
  /* object-fit: cover; */
  display: block;
  background: rgba(0,0,0,.03);
}

/* Titre / prix */
.woocommerce ul.products li.product .woocommerce-loop-product__title{
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 600;
  color: var(--wc-text);
  padding: 12px 12px 0 12px;
  margin: 0;
}
.woocommerce ul.products li.product .price{
  padding: 8px 12px 0 12px;
  font-weight: 700;
  color: var(--wc-text);
}
.woocommerce ul.products li.product .price del{ opacity: .55; font-weight: 600; }
.woocommerce ul.products li.product .price ins{ text-decoration: none; }

/* Étoiles */
.woocommerce ul.products li.product .star-rating{
  margin: 10px 12px 0 12px;
}

/* Badge promo */
.woocommerce span.onsale{
  top: 12px;
  left: 12px;
  right: auto;
  min-height: auto;
  min-width: auto;
  padding: .35rem .55rem;
  border-radius: 999px;
  background: var(--wc-accent);
  color: var(--wc-accent-contrast);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
}

/* Bouton */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.add_to_cart_button{
  margin: 12px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem .9rem;
  border-radius: 14px;
  border: 1px solid var(--wc-border);
  background: var(--wc-accent);
  color: var(--wc-accent-contrast);
  text-decoration: none;
  font-weight: 700;
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}
.woocommerce ul.products li.product .button:hover{
  opacity: .92;
  transform: translateY(-1px);
}

/* Boutons variables/externe */
.woocommerce ul.products li.product .button.product_type_variable,
.woocommerce ul.products li.product .button.product_type_external{
  background: var(--wc-bg);
  color: var(--wc-accent);
}

.woocommerce .products ul::after, .woocommerce .products ul::before, .woocommerce ul.products::after, .woocommerce ul.products::before {
    content: none !important;
    display: inherit !important;
}

/* Mobile compact */
@media (max-width: 420px){
  :root{ --wc-gap: 14px; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title{
    font-size: .95rem;
  }
}

/* espce client */

/* =========================================================
   WooCommerce "Mon compte" — Nautisme épuré
   Gutenberg + Spectra
   ========================================================= */

/* ---------- Variables ---------- */
:root{
  --sea-navy:#0b2a3a;
  --sea-blue:#2b3c9b;
  --sea-light:#e6f2f8;
  --rope:#caa85a;
  --ink:#0e1720;
  --card:#ffffff;
  --line:rgba(11,42,58,.18);
  --shadow:0 6px 18px rgba(6,27,38,.12);
  --radius:8px; /* radius réduit */
}

/* ---------- Container ---------- */
.woocommerce-account .woocommerce{
  display:flex;
  gap:20px;
  align-items:flex-start;
  max-width:1180px;
  margin:auto;
  padding:20px;
}

/* Neutralise floats Woo */
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content{
  float:none !important;
  width:auto !important;
  box-sizing:border-box;
}

/* Colonnes */
.woocommerce-account .woocommerce-MyAccount-navigation{ flex:0 0 260px; }
.woocommerce-account .woocommerce-MyAccount-content{ flex:1 1 auto; min-width:0; }

/* ---------- Cartes ---------- */
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* ---------- Navigation ---------- */
.woocommerce-account .woocommerce-MyAccount-navigation ul{
  list-style:none;
  margin:0;
  padding:10px;
  display:flex;
  flex-direction:column;
  gap:4px;
}

.woocommerce-account .woocommerce-MyAccount-navigation li{ margin:0; }

.woocommerce-account .woocommerce-MyAccount-navigation a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:6px;
  text-decoration:none !important;
  color:var(--sea-navy);
  border:1px solid transparent;
  transition:background .15s ease, color .15s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover{
  background:var(--sea-light);
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a{
  background:var(--sea-blue);
  color:#fff;
}

/* ---------- Icônes nautiques (SVG mask) ---------- */
.woocommerce-account .woocommerce-MyAccount-navigation a::before{
  content:"";
  width:18px;
  height:18px;
  background:currentColor;
  mask-size:contain;
  mask-repeat:no-repeat;
  mask-position:center;
}

/* Dashboard – gouvernail */
.woocommerce-MyAccount-navigation-link--dashboard a::before{
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a2 2 0 012 2v3h3a2 2 0 010 4h-3v3a2 2 0 01-4 0v-3H7a2 2 0 010-4h3V4a2 2 0 012-2z'/%3E%3C/svg%3E");
}

/* Commandes – bateau */
.woocommerce-MyAccount-navigation-link--orders a::before{
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 17l2 3h14l2-3-9-4-9 4zm9-13l4 6H8l4-6z'/%3E%3C/svg%3E");
}

/* Adresses – carte marine */
.woocommerce-MyAccount-navigation-link--edit-address a::before{
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 6l7-3 7 3v12l-7 3-7-3V6z'/%3E%3C/svg%3E");
}


.woocommerce-MyAccount-navigation-link--edit-account a::before{
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a2 2 0 012 2v2a6 6 0 014 10h-2a4 4 0 10-8 0H6a6 6 0 014-10V4a2 2 0 012-2z'/%3E%3C/svg%3E");
}


.woocommerce-MyAccount-navigation-link--customer-logout a::before{
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 4a8 8 0 108 8 8 8 0 00-8-8zm1 4v4l3 3-1.4 1.4L11 13V8z'/%3E%3C/svg%3E");
}

/* ---------- Contenu ---------- */
.woocommerce-account .woocommerce-MyAccount-content{
  padding:20px;
}

/* Boutons */
.woocommerce-account .woocommerce-MyAccount-content .button{
  border-radius:6px;
  background:var(--sea-blue);
  color:#fff;
  border:1px solid rgba(0,0,0,.1);
  padding:8px 14px;
}

.woocommerce-account h1{
  display:none;
}

.woocommerce-MyAccount-content div{
  margin: 20px 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .woocommerce-account .woocommerce{
    flex-direction:column;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul{
    flex-direction:row;
    flex-wrap:wrap;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation li{
    flex:1 1 160px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation a{
    justify-content:center;
  }
}


/* ---- RESPONSIVE ---- */

/* Forcer le max 4 colonnes même si Woo ajoute columns-5/6 */
@media (min-width: 1024px){
  .woocommerce ul.products.columns-5,
  .woocommerce ul.products.columns-6{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}


@media (max-width: 992px) {
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .footer-logo img {
        margin-bottom: 20px;
    }
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .info-icons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }
}


/* ----- Responsive ----- */
@media (max-width: 768px) {
    .newsletter-box {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

    .newsletter-left form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-left input {
        width: 100%;
    }

    .newsletter-left button {
        width: 60%;
    }

    .social-icons {
        justify-content: center;
    }
}


    /* ---- RESPONSIVE ---- */


    @media (max-width: 768px) {
        .boutique-secondaire {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        .site-main{
          padding:0 15px;
        }
        #filtre-serie-form .filtre-serie {
          flex: 1 1 50px;
        }
    }

    @media (max-width: 480px) {
        .boutique-secondaire {
            grid-template-columns: 1fr;
        }
        .header-inner {
         
            justify-content: center !important;
        }
        .hero-inner{
            display: flex;
            justify-content: center !important;
        }
        .hero-title{
          display:none;
          height:150px
        }
        .hero-buttons{
          position: absolute;
          bottom:20px
        }
    }

    @media (max-width: 900px) {
      .header-inner {
        flex-wrap: wrap;
      }
      .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255,255,255,0.15);
      }
    }
    @media only screen and (min-width: 769px) {
        #mega-menu-wrap-boutique-menu {
            background: none !important;
        }
    }
    @media (max-width: 600px) {
      .header-inner {
        justify-content: space-between;
      }
      .nav {
        display: none; /* pour simplifier : on cacherait le menu, ou on ferait un burger */
      }
      .hero-content {
        padding-top: 2rem;
      }
      .hero-title {
        font-size: 1.9rem;
      }
      .hero-buttons {
        flex-direction: column;
        align-items: stretch;
      }
    }
    /* Responsive : tablettes */
@media (min-width: 600px) {
  .col-6 {
    flex: 1 1 calc(50% - 1rem);
  }
}

/* Responsive : desktop */
@media (min-width: 900px) {
  .col-4 {
    flex: 1 1 calc(33.333% - 1rem);
  }
  .col-3 {
    flex: 1 1 calc(25% - 1rem);
  }
}

/* Mobile */
@media (max-width: 768px) {
    .exclu-grid {
        grid-template-columns: 1fr;
    }
}
/* 📱 Mobile : image au-dessus, texte dessous */
@media (max-width: 768px) {
    .story-container {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* 📱 Mobile breacrumb */
@media (max-width: 768px) {
  .aioseo-breadcrumbs {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .aioseo-breadcrumbs {
    flex-wrap: nowrap;            /* Une seule ligne */
    overflow-x: auto;             /* Scroll horizontal */
    -webkit-overflow-scrolling: touch;
  }

  .aioseo-breadcrumbs::-webkit-scrollbar {
    display: none;                /* Scroll discret */
  }
}