/* =========================== */
/*        IMPORT FONTS         */
/* =========================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css?family=Raleway:600,900');

/* =========================== */
/*        VARIABLES ROOT       */
/* =========================== */
:root {
  /* Couleurs globales */
  --bg: #ffffff;
  --text: #333333;
  --accent: #007bff;
  --shadow: rgba(0, 0, 0, 0.1);

  /* Barre de navigation */
  --nav-height: 77px;
  --link-size-desktop: 1.1rem;
  --link-size-mobile: 1.125rem;

  /* Page de garde */
  --hero-height: 90vh;
  --overlay-color: rgba(0, 0, 0, 0.2);
  --btn-bg: #007bff;
  --btn-hover: #1d4ed8;

  /* Section marchés */
  --clr-bg: #f7fafc;
  --clr-text: #2b2d42;
  --clr-sub: #4a4a4a;
  --clr-btn: #2563eb;
  --clr-btn-hover: #1d4ed8;

  /* Page livraison */
  --livraison-font: 'Montserrat', sans-serif;
  --livraison-bg: #f8fbff;
  --livraison-text: #1a2b3c;
  --livraison-primary: #0073e6;
  --livraison-secondary: #e8f1ff;
  --livraison-border: #c8d9f0;
  --livraison-hover: #f0f7ff;
  --livraison-white: #ffffff;

  /* Autres */
  --transition: 0.3s ease;
  --container-max: 1200px;
}

/* =========================== */
/*            BODY             */
/* =========================== */
.hero,
.hero__background,
.hero__background img,
.hero__waves,
.scroll-animate {
  will-change: auto !important;
  contain: none !important;
  transform: none !important;
  translate: none !important;
  backface-visibility: visible !important;
  perspective: none !important;
}

.hero__background,
.hero__waves,
.hero__overlay {
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}

html, body {
  overflow-x: auto !important; 
  overflow-y: auto !important;
  position: relative !important;
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior: contain !important;
}

.hero__background img {
  transition: opacity 0.5s ease-out !important;
}

@supports (-webkit-touch-callout: none) {
  .parallax > use {
    animation: none !important;
    transform: none !important;
  }
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: var(--bg, #fafafa);
  -webkit-overflow-scrolling: touch;

  scrollbar-width: thin;
  scrollbar-color: #007bff #cfe3ff;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text, #111);
  background: var(--bg, #fff);
  overflow-x: auto;
  overflow-y: auto;
  min-height: 100dvh;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; 
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  touch-action: pan-x pan-y;
  user-select: auto;
  -webkit-user-select: auto;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;/
  }
}

/*-- --------------------------------- -->
<---   SYSTEME DE SCROLL ANIMATION     -->
<--- --------------------------------- -*/
.scroll-animate {
  opacity: 0;
  transform: translateY(120px);
  transition:
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1.2s ease-out;
  will-change: transform, opacity;
  backface-visibility: hidden;
  contain: none;
}

.scroll-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate.left {
  transform: translateX(-100px);
}
.scroll-animate.right {
  transform: translateX(100px);
}
.scroll-animate.left.in-view,
.scroll-animate.right.in-view {
  transform: translateX(0);
}

.scroll-animate:nth-child(2).in-view { transition-delay: 0.15s; }
.scroll-animate:nth-child(3).in-view { transition-delay: 0.3s; }
.scroll-animate:nth-child(4).in-view { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  .scroll-animate {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* =========================== */
/*      BARRE DE NAVIGATION    */
/* =========================== */
.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 2rem;
  background: var(--bg);
  box-shadow: 0 2px 8px var(--shadow);
  transition: background var(--transition), height var(--transition), padding var(--transition);
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.logo-container a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.logo-image {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 600px) {
  .logo-image {
    width: 68px;
    height: 68px;
  }
}

@keyframes floatIn {
  0% { transform: translateY(-20px) rotateX(0deg) rotateY(0deg); opacity: 0; }
  100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); opacity: 1; }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
  transition: transform var(--transition);
}
.menu-toggle:focus { outline: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  position: relative;
  color: var(--text);
  font-size: var(--link-size-desktop);
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active { color: var(--accent); }

.nav-links li a:hover::after,
.nav-links li a.active::after { width: 100%; }

.nav-links li.spacer { flex-grow: 1; }

.nav-links li.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg);
  list-style: none;
  padding: 0.5rem 0;
  min-width: 150px;
  z-index: 50;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.dropdown-menu.active {
  display: block;
  max-height: 500px;
}

.dropdown-menu li a {
  display: inline-block;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: var(--link-size-desktop);
  color: var(--text);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.dropdown-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.dropdown-menu li a:hover {
  color: var(--accent);
}

.dropdown-menu li a:hover::after {
  width: 100%;
}

.nav-links li.login-li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: var(--link-size-desktop);
}
.nav-links li.login-li a i { font-size: 1.3rem; margin: 0; }

.cart-li { margin-left: 1rem; }
.cart-li a {
  color: var(--text);
  text-decoration: none;
  font-size: var(--link-size-desktop);
  transition: color var(--transition);
}
.cart-li a:hover { color: var(--accent); }

@media (max-width: 1640px) {
  .nav-container {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
  }

  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    cursor: pointer;
    margin-left: auto;
    margin-right: 2.5rem;
  }
  .cart-li {
    margin: 0;
  }
  .pc-login { display: none; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition);
    box-shadow: 0 8px 16px var(--shadow);
    z-index: 50;
  }
  .nav-links.active { max-height: 1000px; padding-bottom: 1rem; }
  .nav-links li {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s var(--transition), transform 0.3s var(--transition);
  }
  .nav-links.active li { opacity: 1; transform: translateY(0); }
  .login-li { margin-top: 0.5rem; }
  .nav-links li.login-li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--link-size-mobile);
  }
  .nav-links li.login-li a i { font-size: 1.2rem; }
  .nav-links li.spacer { display: none; }
  .nav-links li.dropdown > a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    cursor: pointer;
  }
  .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .dropdown-menu li { width: 100%; }
  .dropdown-menu li a {
    display: block;
    text-align: center;
    padding: 0.5rem 1rem;
    width: 100%;
  }
  .dropdown-menu.active { max-height: 500px; }
}

@media (min-width: 1641px) {
  .nav-links li.dropdown {
    position: relative;
  }
  .nav-links li.dropdown > a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
  }
  .nav-links li.dropdown:hover > a {
    color: var(--accent);
  }
  .nav-links li.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg);
    padding: 0.5rem 0;
    min-width: 200px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    border-radius: 6px;
  }
  .dropdown-menu li a {
    display: block;
    text-align: center;
    padding: 0.5rem 1.2rem;
    width: 100%;
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s, background 0.3s;
  }
  .dropdown-menu li a:hover {
    color: var(--accent);
    background: rgba(0, 0, 0, 0.05);
  }
  .nav-links li.dropdown:hover .dropdown-menu {
    max-height: 500px;
    opacity: 1;
  }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pc-login a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: var(--link-size-desktop);
}
.pc-login a i { font-size: 1.3rem; }

.mobile-login {
  display: none;
  text-align: center;
  padding: 0.5rem 0;
  border-top: 1px solid #ccc;
}

.mobile-login a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: var(--link-size-mobile);
}

.mobile-login a i { font-size: 1.2rem; }

.nav-links li.login-li a i,
.nav-links li.login-li a,
.nav-right .pc-login a i,
.nav-right .pc-login a {
  color: var(--text);
}

.nav-links li.login-li a:hover i,
.nav-links li.login-li a:hover,
.nav-right .pc-login a:hover i,
.nav-right .pc-login a:hover {
  color: #2563eb;
}

/*-- ----------------------------- -->
<--- ./INDEX.HTML : PAGE DE GARDE  -->
<--- ----------------------------- -*/
.hero {
  position: relative;
  width: 100%;
  min-height: calc(100dvh - 20px);
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: visible;
  z-index: 1;
  margin-bottom: 5rem;
  will-change: transform, opacity;
  contain: layout paint;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: visible;
  pointer-events: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1);
  filter: brightness(35%);
  will-change: transform, opacity;
  transition: transform 1s ease-out, opacity 0.8s ease-out;
}


.hero__background img.scroll-animate {
  opacity: 0;
  transform: scale(1.05) translateY(3%);
  transition:
    transform 1.5s ease-out,
    opacity 1.5s ease-out;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.hero__background img.scroll-animate.in-view {
  opacity: 1;
  transform: scale(1) translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .hero__background {
    transform: translateZ(0);
    perspective: 1000px;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 90%;
  padding: clamp(1rem, 2vw, 2rem);
}

.hero__content h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.hero__content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #007bff;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px) scale(1.03);
}

.stars {
  font-size: clamp(1.5rem, 6vw, 2rem);
  color: #ffc107;
  margin: 1rem 0;
}

.hero__waves {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: clamp(60px, 10vh, 150px);
  z-index: 1;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-transform: translateZ(0);
}

.hero__waves svg {
  width: 100%;
  height: 100%;
  display: block;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes move-forever {
  from { transform: translate3d(-90px,0,0); }
  to   { transform: translate3d(85px,0,0); }
}

@media (max-width: 800px) {
  .hero {
    min-height: 100dvh;
  }
}

/*-- ----------------------------- -->
<---  ./INDEX.HTML : NOS MARCHÉS   -->
<--- ----------------------------- -*/
#marches {
  background-color: #fff;
  padding: 0 1.5rem 5rem;
  position: relative;
}

#marches .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

#marches .container > * + * {
  margin-top: 2rem;
}

#marches .text-left {
  width: 100%;
  text-align: center;
}

#marches h2 {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 0.8rem;
}

#marches h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #00bfff);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
  opacity: 0.95;
}

#marches p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4a4a4a;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

#marches a {
  display: inline-block;
  padding: 12px 30px;
  background-color: #007bff;
  color: #fff;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 1.5rem;
  will-change: transform;
  transform-origin: center;
}

@media (hover: hover) and (pointer: fine) {
  #marches a:hover {
    background-color: #1d4ed8;
    transform: translateY(-5px);
  }
}

#marches .image-wrapper {
  width: 100%;
}

#marches .image-wrapper img {
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-top: 2rem;
  will-change: transform;
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
}

@media (min-width: 801px) {
  #marches .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #marches .text-left {
    flex: 0 0 45%;
    text-align: left;
  }
  #marches .image-wrapper {
    flex: 0 0 50%;
    width: auto;
    margin-top: 0;
  }
  #marches .image-wrapper img {
    width: 100%;
    height: auto;
    margin: 0;
  }
}

@media (max-width: 800px) {
  #marches {
    padding: 0 0 5rem;
  }
  #marches .container {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  #marches .text-left {
    text-align: center;
  }
  #marches .image-wrapper {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  #marches .image-wrapper img {
    width: 100%;
    margin: 2rem 0 0;
  }
}

/*-- ----------------------------- -->
<---   ./INDEX.HTML : LIVRAISON    -->
<--- ----------------------------- -*/
.index-livraison-titre {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 800;
  margin: 0 auto 2.5rem;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 0.8rem;
}

.index-livraison-titre::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateZ(0);
  transform: translateX(-50%) translateZ(0);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #00bfff);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
  opacity: 0.95;
  will-change: transform;
  backface-visibility: hidden;
}

/*-- ----------------------------- -->
<--- ./INDEX.HTML : SLIDER PLATS   -->
<--- ----------------------------- -*/
.container-unite {
  width: 90%;
  margin: 0 auto;
  margin-top: 3em;
}

.container-unite h2.cs-title {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 800;
  margin: 0 auto 2.5rem;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 0.8rem;
}

.container-unite h2.cs-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateZ(0);
  transform: translateX(-50%) translateZ(0);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #00bfff);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
  opacity: 0.95;
  will-change: transform;
  backface-visibility: hidden;
}

.container-unite .cs-title {
  white-space: normal;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
  margin-bottom: 2rem;
}

.container-unite h2 {
  margin-bottom: 60px;
}

#unite h2 {
  font-size: 2.5rem;
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2b2d42;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: underline;
  text-decoration-color: #007bff;
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
  -webkit-text-decoration-skip-ink: auto; 
  text-decoration-skip-ink: auto;    
}

.text-center-unite {
  text-align: center;
}

.slider-container-unite {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
  -webkit-overflow-scrolling: touch; 
}

.slider-unite1,
.slider-unite2 {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s ease;
  will-change: transform;
  backface-visibility: hidden;
}

.slide-unite {
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
}

.slide-unite img {
  width: 200px;
  height: auto;
  margin-bottom: 15px;
  -webkit-user-drag: none; 
  -webkit-user-select: none;
  user-select: none;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.slide-unite h3 {
  font-weight: 700;
}

.slide-unite h3,
.slide-unite span {
  font-size: 1.5rem;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.prev-unite,
.next-unite {
  padding: 0.5rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
  will-change: background;
}

@media (hover: hover) and (pointer: fine) {
  .prev-unite:hover,
  .next-unite:hover {
    background: #155a9c;
  }
}

.prev-unite { left: 0; }
.next-unite { right: 0; }

.slider-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .slide-unite {
    min-width: 101%;
  }
}

@media (min-width: 768px) and (max-width: 1224px) {
  .slide-unite {
    min-width: 50%;
  }
}

@media (min-width: 1225px) {
  .slide-unite {
    min-width: 33.33%;
  }
}

#slider2 {
  margin-top: 77px;
}

/*-- ----------------------------- -->
<--- ./INDEX.HTML : AVIS CLIENTS   -->
<--- ----------------------------- -*/
#avis-clients {
  margin-top: 35px;
  padding: 60px;
  background: #ffffff;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

#avis-clients .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

#avis-clients h2 {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 0.8rem;
  backface-visibility: hidden;
}

#avis-clients h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateZ(0);
  transform: translateX(-50%) translateZ(0);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #00bfff);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
  opacity: 0.95;
  will-change: transform;
}

#avis-clients p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  text-align: center;
  -webkit-hyphens: auto;
  hyphens: auto;
}

#avis-clients .avis-bouton {
  text-align: center;
  margin-top: 2rem;
}

#avis-clients .avis-bouton a {
  display: inline-block;
  padding: 12px 30px;
  background-color: #007bff;
  color: #fff;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 1.5rem;
  text-decoration: none;
  -webkit-user-select: none;
  user-select: none;
  will-change: transform;
  transform-origin: center;
}

@media (hover: hover) and (pointer: fine) {
  #avis-clients .avis-bouton a:hover {
    background-color: #1d4ed8;
    transform: translateY(-5px);
  }
}

.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
  -webkit-overflow-scrolling: touch;
}

.slider {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
  will-change: transform;
  padding-bottom: 1rem;
  backface-visibility: hidden;
}

.avis-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

.avis-card p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.avis-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #007bff;
  margin-bottom: 0.5rem;
  text-align: center;
}

.stars {
  color: #f1c40f;
  font-size: 1.25rem;
  text-align: center;
}

.slider-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
  will-change: background;
}

@media (hover: hover) and (pointer: fine) {
  .slider-btn:hover {
    background: #155a9c;
  }
}

.slider-btn.prev { left: -1rem; }
.slider-btn.next { right: -1rem; }

@media (max-width: 1024px) {
  .avis-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 600px) {
  #avis-clients {
    padding: 40px 20px;
  }
  .avis-card {
    flex: 0 0 100%;
  }
}

/*-- ----------------------------------- -->
<--- ./INDEX.HTML : OPTIONS DE PAIEMENT  -->
<--- ----------------------------------- -*/
#options-paiement {
  text-align: center;
  margin-top: 35px;
  background-color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
}

#options-paiement h2 {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 800;
  margin-bottom: 2.5rem;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 0.8rem;
  backface-visibility: hidden;
  will-change: transform;
}

#options-paiement h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateZ(0);
  transform: translateX(-50%) translateZ(0);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #00bfff);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
  opacity: 0.95;
}

#options-paiement p {
  font-size: 1.25rem;
  color: #4a4a4a;
  margin-top: 10px;
  margin-bottom: 2rem;
  text-align: center;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.banner-paiement {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.paiement-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-user-select: none;
  user-select: none;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

.paiement-item img {
  width: 100px;
  margin-bottom: 50px;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  backface-visibility: hidden;
}

.paiement-item p {
  margin: 0;
  font-size: 14px;
  color: #333;
}

.option-paiement {
  width: 90%;
  margin: 4em auto 2em;
  text-align: center;
}

@media screen and (max-width: 500px) {
  .paiement-item img {
    width: 60px;
  }
  .paiement-item {
    margin: 0 2px;
  }
}

@media screen and (min-width: 501px) and (max-width: 767px) {
  .paiement-item img {
    width: 80px;
  }
  .paiement-item {
    margin: 0 7px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .paiement-item {
    margin: 0 10px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .paiement-item {
    margin: 0 20px;
  }
}

@media screen and (min-width: 1200px) {
  .paiement-item {
    margin: 0 30px;
  }
}

/*-- ----------------------------- -->
<---    ./INDEX.HTML : CONTACT     -->
<--- ----------------------------- -*/
@media only screen and (min-width: 0rem) {
  #contact {
    padding: var(--sectionPadding);     
    position: relative;
    z-index: 1;
  }
  #contact .cs-container {
    width: 100%;
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
    column-gap: auto;
    gap: clamp(2rem, 3vw, 3rem);
    position: relative;
  }
  #contact .cs-content {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 39.375rem;
    padding: clamp(1.5rem, 5.18vw, 3rem) clamp(1rem, 4vw, 3rem);
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 1rem;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Montserrat', sans-serif;
  }
  #contact .cs-title {
    position: relative;
    display: inline-block;
    font-size: clamp(2.25rem, 6vw, 3rem);
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    padding-bottom: 0.8rem;
  }
  #contact .cs-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #007bff, #00bfff);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
    opacity: 0.95;
  }
  #contact .cs-text {
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    text-align: justify;
  }
  #contact .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #contact .cs-ul {
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
  }
  #contact .cs-li {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.25rem;
    font-family: 'Montserrat', sans-serif;
  }
  #contact .cs-li:hover .cs-icon-wrapper {
    transform: scale(1.1);
  }
  #contact .cs-header {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 0.75rem;
    color: var(--headerColor);
    display: block;
  }
  #contact .cs-link {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    color: #767676;
    display: block;
    position: relative;
  }
  #contact .cs-link:hover {
    text-decoration: underline;
  }
  #contact .cs-icon-wrapper {
    width: 3.75rem;
    height: 3.75rem;
    margin: 0;
    border-radius: 50%;
    border: 1px solid #bababa;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: none;
    transition: transform 0.3s;
  }
  #contact .cs-icon {
    width: 1.5rem;
    height: auto;
    display: block;
  }
  #contact .cs-form {
    width: 100%;
    max-width: 39.375rem;
    padding: clamp(1.5rem, 5.18vw, 3rem) clamp(1rem, 4vw, 3rem);
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 77px;
  }
  #contact .cs-h3 {
    font-size: clamp(1.25rem, 3vw, 2.4375rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: var(--headerColor);
  }
  #contact .cs-label {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    width: 100%;
    color: var(--headerColor);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.25rem;
  }
  #contact .cs-input {
    font-size: 1rem;
    width: 100%;
    height: 3.5rem;
    padding: 0;
    padding-left: 1.5rem;
    color: var(--headerColor);
    background-color: #f7f7f7;
    border-radius: 0.5rem;
    border: none;
    box-sizing: border-box;
  }
  #contact .cs-input::placeholder {
    color: #7d799c;
    opacity: 0.6;
  }
  #contact .cs-textarea {
    min-height: 7.5rem;
    padding-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: inherit;
  }
  #contact .cs-button-solid {
    font-size: 1rem;
    line-height: 3.5rem;
    text-decoration: none;
    font-weight: 700;
    overflow: hidden;
    margin: 0;
    color: #fff;
    padding: 0 3rem;
    border-radius: 1.875rem;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #contact .cs-button-solid:before {
    position: absolute;
    display: block;
    height: 100%;
    width: 0%;
    background: #1a1a1a;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #contact .cs-button-solid:hover {
    color: var(--primary);
  }
  #contact .cs-button-solid:hover:before {
    width: 100%;
  }
  #contact .cs-submit {
    flex-basis: 100%;
    margin-top: 1rem;
    background-color: #007bff;
  }
  #contact .cs-submit:hover {
    color: #fff;
    cursor: pointer;
  }
  .error-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1em;
  }
  .cs-label.error .cs-input,
  .cs-consent.error input {
    border-color: #e53e3e;
  }
}

@media only screen and (min-width: 48rem) {
  #contact .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
  }
  #contact .cs-content {
    width: 47%;
    flex: none;
  }
  #contact .cs-submit {
    flex-basis: 100%;
    margin-top: 1rem;
    background-color: #007bff;
  }
}

@media only screen and (min-width: 64rem) {
  #contact .cs-form {
    width: 46%;
    max-width: 36.125rem;
  }
  #contact-1388 .cs-submit {
    width: auto;
  }
}

@media only screen and (min-width: 93.75rem) {
  #contact .cs-graphic {
    display: block;
  }
}

#mail_envoye {
  display: none;
  margin-top: 0.5rem;
  text-align: left;
  color: #4CAF50;
  background: none;
  padding: 0;
  box-shadow: none;
  width: auto;
}

#mail_envoye.show {
  display: block;
}

@media (max-width: 600px) {
  #mail_envoye {
    padding: 15px 15px;
    font-size: 0.9em;
  }
}

.cs-form {
  position: relative;
}

.cs-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-row-gap: 0.25rem;
  align-items: center;
  font-size: 15px;
}

.cs-consent .error-message {
  grid-column: 1 / -1;
  color: #e53e3e;
  font-size: 0.875rem;
}

.cs-consent input[type="checkbox"] {
  margin-right: 10px;
}

.cs-consent span {
  font-family: 'Montserrat', sans-serif;
  text-align: justify;
  font-size: 1.1em;
  color: #555;
}

.cs-consent a {
  color: #007bff;
  text-decoration: none;
}

.cs-consent a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .cs-consent {
    flex-direction: row;
    align-items: center;
  }

  .cs-consent input[type="checkbox"] {
    margin-right: 10px;
  }
}

/*-- ----------------------------- -->
<---             FOOTER            -->
<--- ----------------------------- -*/
#footer {
  background-color: #f7f7f7;
  color: #333;
  padding: 2rem 0;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-logo img {
  width: 150px;
  margin: 0 auto 1rem;
  display: block;
}

.footer-socials-inline {
  margin-bottom: 1.5rem;
}

.footer-socials-inline .footer-social-icon {
  font-size: 1.5rem;
  margin: 0 0.5rem;
  color: #333;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials-inline .footer-social-icon:hover {
  color: #2563eb;
  transform: scale(1.2);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.footer-links li {
  display: inline-block;
  margin: 0 1rem;
}

.footer-links a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #2563eb;
}

.footer-legal {
  margin-top: 2rem;
}

.footer-legal p {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.footer-legal ul {
  list-style: none;
  padding: 0;
}

.footer-legal li {
  display: inline-block;
  margin: 0 0.75rem;
}

.footer-legal a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #2563eb;
}

/*-- -------------------------- -->
<---  ./PAGES-EXT/MARCHES.HTML  -->
<--- -------------------------- -*/
.page-marche-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  margin-bottom: 0;
  text-align: center;
}

.page-marche-titre {
  position: relative;
  display: inline-block;
  margin-top: 160px;
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 800;
  margin-bottom: 50px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 0.8rem;
}

.page-marche-titre::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #00bfff);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
  opacity: 0.95;
}

.page-marche-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #fff;
  padding: 60px;
  margin-bottom: 50px;
  width: 100%;
  justify-content: center;
}

.page-marche-item:nth-child(even) {
  flex-direction: row-reverse;
}

.page-marche-info {
  flex: 1;
  margin: 0;
  padding: 0;
  color: #3d3c3c;
  text-align: center;
}

.page-marche-info h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.page-marche-info p {
  font-size: 1.2rem;
  margin: 15px 0;
  color: #3d3c3c;
}

.page-marche-info strong {
  color: #3d3c3c;
}

.page-marche-carte {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.page-marche-carte iframe {
  width: 100%;
  height: 400px;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carte-marche {
  border: none;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  body {
    margin: 0;
  }
  .page-marche-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .page-marche-item {
    flex-direction: column;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    justify-content: center;
  }
  .page-marche-item:nth-child(even) {
    flex-direction: column;
  }
  .page-marche-info {
    margin-bottom: 20px;
  }
  .page-marche-carte iframe {
    width: 100%;
    height: 250px;
    margin-bottom: 50px;
  }
  .page-marche-info h1 {
    font-size: 2rem;
  }
}

@media (min-width: 800px) {
  .page-marche-carte iframe {
    border-radius: 20px;
  }
}

@media (min-width: 1000px) {
  .page-marche-item {
    flex-direction: row;
    justify-content: center;
  }
  .page-marche-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .page-marche-carte iframe {
    height: 400px;
  }
}

/*-- -------------------------- -->
<---  ./PAGES-EXT/GALERIE.HTML  -->
<--- -------------------------- -*/
.page-galerie-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.page-galerie-titre {
  position: relative;
  display: inline-block;
  margin-top: 160px;
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 800;
  margin-bottom: 50px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 0.8rem;
}

.page-galerie-titre::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #00bfff);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
  opacity: 0.95;
}

.gallery {
  --gap: 1rem;
  display: grid;
  gap: var(--gap);
  padding: var(--gap);
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
}

.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox.show {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  z-index: 1001;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-size: 1.5rem;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1001;
}

@media (max-width: 767px) {
  .lightbox-prev,
  .lightbox-next {
    display: none;
  }
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}
.lightbox.show .lightbox-img {
  visibility: visible;
}

/*-- -------------------------------------- -->
<---  ./PAGES-EXT/DECLARATION-COOKIES.HTML  -->
<--- -------------------------------------- -*/
.decla-cookies {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  margin-bottom: 77px;
}

.page-decla-cookies-titre {
  position: relative;
  display: inline-block;
  margin-top: 160px;
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 800;
  margin-bottom: 50px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 0.8rem;
}

.page-decla-cookies-titre::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #00bfff);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
  opacity: 0.95;
}

.decla-cookies p {
  text-align: justify;
  font-family: 'Montserrat', sans-serif;
  margin: 20px;
  font-size: 18px;
}

.decla-cookies .cookietitre {
  padding-top: 20px;
  margin: 20px;
  font-size: 35px;
  text-align: justify;
}

.table-decla {
  width: 100%;
  overflow-x: auto;
  margin: 0 auto;
  padding: 10px;
}

.cookietable {
  display: block;
  width: 100%;
}

.cookiethead {
  display: none;
}

.cookietbody, .cookietr {
  display: block;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
}

.cookietbody tr {
  display: block;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  background: #f9f9f9;
  position: relative;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
}

.cookietbody td {
  display: block;
  position: relative;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
}

.cookietbody td::before {
  font-family: 'Montserrat', sans-serif;
  content: attr(data-label);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  background: #f4f4f4;
  padding: 5px;
  border-right: 1px solid #ddd;
  width: 45%;
  white-space: nowrap;
  text-align: right;
  box-sizing: border-box;
  text-align: left;
  background: #ddd;
  font-size: 18px;
}

.cookietbody td {
  padding-left: 50%;
  text-align: left;
  position: relative;
}

.cookietbody td:last-of-type {
  border-bottom: none;
}

/*-- -------------------------------------- -->
<---    ./PAGES-EXT/MENTIONS-LEGALES.HTML   -->
<--- -------------------------------------- -*/
.mentions-legales {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  margin-bottom: 77px;
}

.page-mentions-legales-titre {
  position: relative;
  display: inline-block;
  margin-top: 160px;
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 800;
  margin-bottom: 50px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 0.8rem;
}

.page-mentions-legales-titre::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #00bfff);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
  opacity: 0.95;
}

.mentions-legales p {
  text-align: justify;
  font-family: 'Montserrat', sans-serif;
  margin: 20px;
  font-size: 18px;
}

.mentions-legales .cs-title-mentions {
  text-align: justify;
  font-family: 'Montserrat', sans-serif;
  font-size: 35px;
  margin: 40px;
  font-weight: bold;
}

.mentions-legales .cs-title-petit {
  text-align: justify;
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  margin: 40px;
  font-weight: bold;
}

.mentions-legales .mentions-legales-bas {
  margin-bottom: 100px;
}

@media (max-width: 470px) {
  .mentions-legales .cs-title-mentions {
    font-size: 22px;
  }
  .mentions-legales .cs-title-petit  {
    font-size: 18px;
  }
}

/*-- -------------------------------------- -->
<---         ./PAGES-EXT/MENU.HTML          -->
<--- -------------------------------------- -*/
.page-menu-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.page-menu-titre1 {
  position: relative;
  display: inline-block;
  margin-top: 160px;
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 800;
  margin-bottom: 77px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 0.8rem;
}

.page-menu-titre2 {
  position: relative;
  display: inline-block;
  margin-top: 90px;
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 800;
  margin-bottom: 77px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 0.8rem;
}

.page-menu-titre1::after,
.page-menu-titre2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #00bfff);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
  opacity: 0.95;
}

.menu-item {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}
.menu-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.image-wrapper-menu {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper-menu img {
  border-radius: 1rem;
  max-width: 100%;
  height: auto;
  object-fit: none;
  object-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.menu-item:hover .image-wrapper-menu img {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.card-body h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1f2937;
}

.card-body p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.card-body span {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}

#lightboxImg {
  transition: all 0.4s ease;
}

.lightbox-close-menu {
  position: absolute;
  top: -4rem;
  right: 1rem;
  font-size: 2.5rem;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.3s ease, color 0.3s ease;
}

.lightbox-close-menu:hover {
  color: #f87171;
  transform: scale(1.25);
}

@media (max-width: 450px) {
  #prevBtn,
  #nextBtn {
    display: none !important;
  }
}

/*-- -------------------------------------- -->
<---   ./PAGES-EXT/A-PROPOS-DE-NOUS.HTML    -->
<--- -------------------------------------- -*/
.about-section {
  max-width: 1200px;
  margin: 6rem auto 3rem;
  padding: 0 1rem;
  font-family: 'Montserrat', sans-serif;
  color: #1e1e1e;
  line-height: 1.8;
  text-align: center;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.about-section h1 {
  position: relative;
  display: inline-block;
  margin-top: 50px;
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 800;
  margin-bottom: 77px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 0.8rem;
}

.about-section h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #00bfff);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
  opacity: 0.95;
}

.about-text p {
  text-align: justify;
  margin-bottom: 1.5rem;
}

.about-text p,
.about-text ul {
  word-wrap: break-word;
  font-size: 1.2rem;
  line-height: 1.8;
}

.about-text ul {
  text-align: left;
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.about-text li {
  margin-bottom: 0.5rem;
}

.about-image-section {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.about-founder {
  text-align: center;
}

.about-founder img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.about-founder img:hover {
  transform: scale(1.05);
}

.founder-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #333;
}

@media (max-width: 992px) {
  .about-founder img {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 768px) {
  .about-founder img {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .about-founder img {
    width: 120px;
    height: 120px;
  }
}

/*-- -------------------------------------- -->
<---               PANNIER                  -->
<--- -------------------------------------- -*/
.cart-li a {
  font-weight: 600;
  position: relative;
  color: var(--text);
  transition: color var(--transition);
  display: inline-block;
}
.cart-li a:hover {
  color: var(--accent);
}

.cart-text {
  font-weight: 600;
  position: relative;
  color: var(--text);
  transition: color var(--transition);
}
.cart-text:hover {
  color: var(--accent);
}
#cartPanel {
  position: fixed;
  top: var(--nav-height);
  right: 1rem;
  width: 320px;
  max-height: 80vh;
  background: var(--bg);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  padding: 1rem;
  transform: translateX(110%);
  transition: transform 0.3s ease-in-out;
  z-index: 200;
  overflow-y: auto;
}
#cartPanel.active {
  transform: translateX(0);
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
}
.cart-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
}
.cart-item button {
  background: #ef4444;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}
.cart-item button i {
  pointer-events: none;
}
.cart-actions button {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.5rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

/*-- -------------------------------------- -->
<---          PAGE LIVRAISON                -->
<--- -------------------------------------- -*/
.page-livraison-titre {
  position: relative;
  display: inline-block;
  margin-top: 110px;
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 800;
  margin-bottom: 50px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding-bottom: 0.8rem;
}

.page-livraison-titre::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #00bfff);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
  opacity: 0.95;
}

.livraison-section {
  font-family: var(--livraison-font);
  background: var(--livraison-bg);
  padding: 2.5rem 1rem;
  border-radius: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  color: var(--livraison-text);
  margin-bottom: 77px;
}

.livraison-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.livraison-header p {
  color: #5f7085;
  font-size: 1rem;
}

.livraison-highlight {
  background: var(--livraison-secondary);
  border-left: 6px solid var(--livraison-primary);
  padding: 1rem;
  border-radius: 10px;
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--livraison-text);
}

.livraison-table-container {
  overflow-x: auto;
  border-radius: 14px;
  background: var(--livraison-white);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
}

.livraison-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid var(--livraison-border);
  border-radius: 14px;
  font-size: 0.95rem;
  min-width: 600px;
}

.livraison-table thead {
  background: var(--livraison-primary);
  color: var(--livraison-white);
}

.livraison-table th {
  padding: 0.9rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.livraison-table td {
  padding: 0.8rem;
  text-align: center;
  border: 1px solid var(--livraison-border);
  color: var(--livraison-text);
  transition: background 0.2s ease;
}

.livraison-table tr:nth-child(even) {
  background-color: #f6faff;
}

.livraison-table tr:hover td {
  background: var(--livraison-hover);
}

@media (max-width: 1024px) {
  .livraison-header h1 {
    font-size: 1.7rem;
  }
  .livraison-header p {
    font-size: 0.95rem;
  }
  .livraison-table th,
  .livraison-table td {
    padding: 0.7rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .livraison-section {
    padding: 1.5rem 0.5rem;
  }
  .livraison-header h1 {
    font-size: 1.5rem;
  }
  .livraison-table {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .livraison-header h1 {
    font-size: 1.3rem;
  }
  .livraison-header p {
    font-size: 0.85rem;
  }
  .livraison-table th,
  .livraison-table td {
    padding: 0.6rem;
    font-size: 0.8rem;
  }
  .livraison-highlight {
    font-size: 0.85rem;
  }
}

/*-- -------------------------- -->
<---  ./PAGE-EXT/MERCI.HTML     -->
<--- -------------------------- -*/
.merci-commande {
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f8f9fa;
  padding: 20px;
  box-sizing: border-box;
}

.merci-container {
  margin-top: 70px;
  text-align: center;
  background-color: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: 1000px;
  width: 100%;
}

.merci-container .merci-h1 {
  color: #28a745;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
}

.merci-container .merci-p {
  font-size: clamp(1rem, 2vw, 1.7rem);
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

.merci-commande .avis-intro {
  margin: 40px 0 25px;
  font-size: clamp(1rem, 2vw, 1.7rem);
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

.cs-button-google {
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  font-weight: 700;
  line-height: clamp(3rem, 5.5vw, 3.8rem);
  text-align: center;
  text-decoration: none;
  min-width: 14rem;
  margin: 0 auto;
  padding: 0 2rem;
  background-color: var(--primary);
  color: var(--bodyTextColorWhite);
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  position: relative;
  z-index: 1;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cs-button-google:before {
  content: "";
  width: 0%;
  height: 100%;
  background: #007bff;
  opacity: 1;
  border-radius: 0.5rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: width 0.3s ease;
}

.cs-button-google:hover:before {
  width: 100%;
}

.cs-button-google:hover {
  transform: translateY(-2px);
}

.cs-button-google .google-icon {
  width: clamp(24px, 5vw, 30px);
  height: clamp(24px, 5vw, 30px);
}

.avis-google {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

@media (max-width: 600px) {
  .merci-container .merci-h1 {
    font-size: 2rem;
  }
  .merci-container .merci-p,
  .avis-intro {
    text-align: justify;
  }
}

/*-- -------------------------- -->
<---  ./PAGE-EXT/erreur.HTML     -->
<--- -------------------------- -*/
.error-commande {
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 20px;
}

.error-container {
  margin-top: 15px;
  text-align: center;
  background-color: #fff;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 900px;
  width: 100%;
  animation: fadeIn 0.8s ease;
}

.error-h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: #d90429;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 2px;
  text-shadow: 0 4px 10px rgba(217, 4, 41, 0.2);
}

.error-p {
  font-size: clamp(1.2rem, 2.3vw, 1.8rem);
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.back-link {
  margin-top: 2rem;
  font-weight: 700;
  font-size: 1rem;
  color: #007bff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #007bff;
  text-decoration: underline;
}

.back-link i {
  font-size: 1.2rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .error-container {
    padding: 40px 20px;
  }
  .error-h1 {
    font-size: 2.5rem;
  }
  .error-p {
    text-align: justify;
  }
}

/*-- -------------------------- -->
<--- ICON BLEU SE CONNECTER     -->
<--- -------------------------- -*/
.nav-right { display: flex; align-items: center; gap: 12px; }

.is-auth .mobile-login { display: none !important; }
@media (min-width: 0px){
  .is-auth .pc-login { display: flex !important; }
}

.nav-right .user-circle{
  background-color:#007bff; 
  color:#fff;
  width:36px; height:36px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  font-weight:700; font-size:15px; 
  cursor:pointer; text-decoration:none;
  -webkit-tap-highlight-color: transparent;
}

.nav-right a.user-circle,
.nav-right a.user-circle:link,
.nav-right a.user-circle:visited,
.nav-right a.user-circle:hover,
.nav-right a.user-circle:active,
.nav-right a.user-circle:focus{
  color:#fff !important;
  text-decoration:none !important;
}

.nav-right a.user-circle:focus-visible{
  outline:2px solid #fff;
  outline-offset:2px;
}

.nav-right a.user-circle:hover{
  filter: brightness(0.95);
}

/*-- -------------------------- -->
<---     POPUP PANIER           -->
<--- -------------------------- -*/
#freeShippingNotice {
  display: none;
  color: green;
  font-weight: bold;
  margin-top: 5px;
  text-align: justify;
  opacity: 0;
  transition: opacity 0.3s ease;
  max-height: 0;
  overflow: hidden;
}

#freeShippingNotice.active {
  display: block;
  opacity: 1;
  max-height: 100px;
}

/*-- -------------------------- -->
<---       RECAPTCHA            -->
<--- -------------------------- -*/
#recaptcha-container {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

/*-- -------------------------- -->
<---       BARRE SCROLL         -->
<--- -------------------------- -*/
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: #4da3ff;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #005dc1;
}

::-webkit-scrollbar-track {
  background: #e0e7ff;
}