    /******************************************** Défilement texte horizontal****************************************/
/* MARQUEE STYLES */
.marquee-container {
  width: 100%;
  overflow: hidden;
  background: #f9f9f9; /* facultatif */
}

.marquee {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
}

.marquee .trackot {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}

.marquee span {
  display: inline-block;
  margin: 0 1.5rem;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

/* Animation keyframes */
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .marquee span {
    font-size: 0.9rem;
    margin: 0 1rem;
  }
}

@media (max-width: 480px) {
  .marquee span {
    font-size: 0.8rem;
    margin: 0 0.8rem;
  }
}

  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html, body {
      font-family: Arial, sans-serif;
      overflow-x: hidden;
      width: 100%;
    }
    body {
      padding-top: 120px;
    }
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 999;
      background-color: #2b3648;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .top-header, .nav-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
      flex-wrap: wrap;
    }
    .top-header img {
      height: 40px;
    }
    .location-text {
      margin-left: 10px;
      font-size: 14px;
      color: white;
    }
    .search-bar {
      flex-grow: 1;
      margin: 0 20px;
      display: flex;
    }
    .search-bar input {
      flex: 1;
      padding: 8px 12px;
      border: 1px solid #ccc;
      border-right: none;
      border-radius: 20px 0 0 20px;
    }
    .search-bar button {
      padding: 0 15px;
      background-color: #ccc;
      border: 1px solid #ccc;
      border-radius: 0 20px 20px 0;
    }
    .header-icons i {
      font-size: 18px;
      margin-left: 15px;
      cursor: pointer;
      color: white;
    }
    .nav-bar {
      background-color: #2b3648;
      justify-content: flex-start;
      padding: 8px 20px;
    }
    .menu-toggle {
      font-size: 22px;
      cursor: pointer;
      margin-right: 15px;
      color: white;
    }
    .nav-links a {
      margin-right: 5px;
      color: #ffffcc;
      text-decoration: none;
      font-family: sans-serif;
      padding: 6px 8px;
      font-weight: 400;
    }
    @media (max-width: 768px) {
      .header-icons i.fa-shopping-cart,
      .header-icons i.fa-user {
        display: inline !important;
      }
      .header-icons i:not(.fa-shopping-cart):not(.fa-user),
      .nav-links {
        display: none !important;
      }
      .search-bar {
        margin: 0;
      }
      .nav-bar {
        justify-content: start;
      }
    }
    .side-menu {
      position: fixed;
      top: 0;
      left: -250px;
      height: 100vh;
      width: 250px;
      background: #303949;
      box-shadow: 2px 0 8px rgba(0,0,0,0.2);
      transition: left 0.3s ease;
      padding: 20px;
      z-index: 1000;
    }
    .side-menu.open {
      left: 0;
    }
    .side-menu a {
      display: block;
      margin: 15px 0;
      text-decoration: none;
      color: #f3ebeb;
      font-family: sans-serif;
      padding: 3px 6px;
      border-bottom: 1.6px solid #6b727b;
    }
    .carousel-item img {
      width: 100%;
      height: 480px;
      object-fit: contain;
    }
    @media (max-width: 768px) {
      .carousel-item img {
        height: 290px;
      }
    }

    .category-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }
    .category-card button {
      width: 100%;
      margin-bottom: 10px;
    }/*
    @media (max-width: 768px) {
      .category-card img {
        height: 140px;
      }
    }*/
    /* Supprime les marges du parent sur mobile */
    @media (max-width: 768px) {
      .product-carousel {
        margin: 0;
        padding: 5px 0;
      }
    
      .category {
        margin-bottom: 15px;
      }
    
      .product-carousel .product {
        flex: 0 0 33.33%; /* 3 produits visibles côte à côte */
      }
    }

    #productRow {
      overflow-x: auto;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    #productRow::-webkit-scrollbar {
      display: none;
    }
    .product-card {
      flex: 0 0 auto;
      width: 200px;
      margin-right: 15px;
    }
    .product-carousel-controls {
      position: absolute;
      top: -35px;
      right: 10px;
      z-index: 10;
    }
    .coeur-title {
      font-weight: bold;
      font-size: 1.3rem;
      margin-bottom: 10px;
    }

     .thumbnail {
      width: 40px;
      height: 40px;
      object-fit: cover;
      margin: 4px;
      border: 1px solid #ccc;
      border-radius: 4px;
      cursor: pointer;
      transition: transform 0.2s ease;
    }
    .thumbnail:hover {
      transform: scale(1.1);
    }
      #chatBox {
  display: none;
  position: fixed;
  bottom: 70px;
  right: 20px;
  background: #5e5967;
  padding: 20px;
  border-radius: 10px;
  width: 350px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  color: white;
  align-items: center;
  text-align: center;
  }

  #chatBox textarea {
  resize: vertical;
  min-height: 80px;
  width: 100%;
  border-radius: 3px;
  margin: 3px;
  padding: 2px 3px;
}
.clss_inpout{
      margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    border: none;
    border-radius: 5px;
    padding: 5px 8px;
    text-align: center;
}
#chatBox button {
  background-color: #28a745;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  border: none;
  padding: 5px 12px;
  transition: background-color 0.2s ease;
}

#chatBox button:hover {
  background-color: #218838;
}

#chatBox #subOptions button {
  background: #2b3648;
  margin: 5px 0;
}

#chatBox #subOptions button:hover {
  background: #461abd;
}
.intro_tis{
  width: 35%;
  padding: 4px 8px;
  border: none;
  border-radius: 5px;
  margin: 5px;
}
   
.prem_h2{
  font-weight: 900;align-items: center; text-align:center; color: #20447f;
}
  .modal-ville-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-ville-content {
  background: white;
  border-radius: 12px;
  padding: 20px;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  font-family: sans-serif;
}

.modal-ville-close {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #444;
}

.modal-ville-header {
  text-align: center;
}

.modal-ville-title {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: bold;
}

.modal-ville-desc-globale {
  font-size: 1rem;
  color: #555;
}

.modal-ville-image {
  width: 100px;
  height: auto;
}

.modal-ville-main {
  margin-top: 20px;
  text-align: center;
}

.modal-ville-main-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.modal-ville-main-desc {
  margin-top: 10px;
  font-style: italic;
}

.modal-ville-thumbs {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin-top: 20px;
  padding-bottom: 10px;
}

.modal-ville-thumbs img {
  height: 60px;
  width: 80px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s;
}

.modal-ville-thumbs img:hover {
  transform: scale(1.1);
}

.modal-ville-footer {
  margin-top: 20px;
  text-align: right;
}
:root {
  --primary-color: #ce0058;
  --dark-bg: #393c45;
  --dark-bg-light: #464a53;
  --text-light: #ffffff;
  --text-muted: #b6b8bf;
  --border-color: #575b63;
  --font-family: 'Arial', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  max-width: 100vw;
  overflow-x: hidden;
}

footer {
  margin-top: 2rem;
}

/* Bande blanche avec 3 blocs */
.top-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 1rem 2rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  width: 33.3333%;
  padding: 0.5rem 1rem;
}

.feature img {
  width: 32px;
  height: 32px;
  margin-right: 0.75rem;
}

.feature strong {
  display: block;
  font-size: 16px;
  margin-bottom: 0.25rem;
  font-weight: bold;
}

.feature span {
  display: block;
  font-size: 0.75rem;
}

.feature:nth-child(1) strong { color: var(--primary-color); }
.feature:nth-child(1) span   { color: var(--primary-color); }
.feature:nth-child(2) strong,
.feature:nth-child(3) strong { color: #2d2e30; }
.feature:nth-child(2) span   { color: var(--text-muted); }
.feature:nth-child(3) span   { color: #2d2e30 !important; text-decoration: none; }

/* Newsletter */
.newsletter-section {
  background-color: rgb(43, 54, 72);
  color: var(--text-light);
  text-align: center;
  padding: 2rem 1.5rem 2.5rem;
}

.newsletter-section .heading {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--border-color);
}

.newsletter-form input[type="email"] {
  padding: 0.6rem 0.8rem;
  border: none;
  outline: none;
  width: 240px;
  font-size: 1rem;
  color: #333;
}

.newsletter-form button {
  background-color: #930f8d;
  color: var(--text-light);
  border: none;
  padding: 0 1rem;
  font-weight: bold;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Colonnes */
.columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: #2b3648;
  color: var(--text-light);
}

.columns .col {
  padding: 1.5rem;
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.columns .col:last-child {
  border-right: none;
}

.columns h3 {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  position: relative;
}

.columns h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: #cf2bc7;
  margin: 0.25rem auto 0;
}

.columns ul {
  list-style: none;
  margin-top: 0.5rem;
  padding-left: 0;
}

.columns li {
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
}

.columns li a {
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.columns li a:hover {
  color: var(--primary-color);
}

/* Service client */
.service-client .phone {
  font-size: 1.4rem;
  font-weight: bold;
  color: #bf13ba;
  margin-bottom: 0.5rem;
}

.service-client .schedule {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.service-client .social-icons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.service-client .social-icons .icon {
  width: 26px;
  height: 26px;
  border: 1px solid var(--text-muted);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.service-client .social-icons .icon:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

/* Footer bas */
.bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2b3648;
  color: var(--text-muted);
  font-size: 0.75rem;
  border-top: 1px solid var(--border-color);
  padding: 1rem 1.5rem;
}

.bottom-bar a {
  color: var(--text-muted);
  text-decoration: none;
}
.bottom-bar a:hover {
  color: var(--primary-color);
}

/* Bouton d'aide */
.help-button {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background-color: #751471;
  color: var(--text-light);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  cursor: pointer;
}

.help-button span {
  font-weight: bold;
}

.help-button .close-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid var(--text-light);
  border-radius: 50%;
  position: relative;
}

.help-button .close-icon::before,
.help-button .close-icon::after {
  content: '';
  position: absolute;
  left: 2px;
  right: 2px;
  top: 5px;
  height: 0;
  border-top: 1px solid var(--text-light);
}

.help-button .close-icon::before { transform: rotate(45deg); }
.help-button .close-icon::after  { transform: rotate(-45deg); }

/* Responsive */
@media (max-width: 1024px) {
  .columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .feature {
    width: 100%;
    flex-direction: row;
    align-items: center;
    margin-bottom: 1rem;
  }

  .newsletter-section {
    padding: 1.5rem 1rem;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
    border: none;
    width: 100%;
  }

  .newsletter-form input[type="email"]{
    width: 100%;
    margin: 0.25rem 0;
  }

  .newsletter-form button {
    background-color: rgb(117, 20, 113);
    width: 100%;
    margin: 0.25rem 0;
  }

  .columns {
    grid-template-columns: 1fr;
  }

  .bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .help-button {
    right: 0.75rem;
    bottom: 0.75rem;
    font-size: 0.75rem;
  }
}

.connexion-modal {
  display: none;
  position: fixed;
  top: 50px;
  right: 20px;
  z-index: 9999;
  background: #f9f9f9;
  border-radius: 12px;
  border-left: 3px solid #283d65;
  border-top: 6px solid #38414f;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border-bottom: 8px solid #3e2f43;
  width: 280px;
  padding: 20px;
  animation: fadeIn 0.3s ease-in-out;
}

.connexion-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.close-connexion {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  font-size: 22px;
  color: #666;
  cursor: pointer;
}

.connexion-btn {
  padding: 8px;
    margin: 12px;
    position: relative;
    top: 20px;
    border-radius: 8px;
    background-color: #59186b;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.connexion-btn:hover {
  background-color: #7b2fa0;
}

.pro-form {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 10px 15px;
}

.pro-form input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.pro-form button {
  background-color: #e6457a;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.pro-form button:hover {
  background-color: #cc3a6a;
}

.forgot-link {
  font-size: 0.85em;
  text-align: center;
  color: #444;
  text-decoration: none;
}

.forgot-link:hover {
  text-decoration: underline;
}

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

@media (max-width: 500px) {
  .connexion-modal {
    right: 10px;
    width: 90%;
  }
}

/* ***************domal cnct**********/
:root{
  /* Palette facilement ajustable si tu veux coller pile-poil à e-zando.com */
  --eza-primary: #363d49;   /* indigo/violet (CTA, bouton Pro) */
  --eza-secondary:#0EA5E9;  /* cyan (dégradé) */
  --eza-tertiary: #8b5cf6;  /* violet clair (dégradé) */
  --eza-dark:    #0f172a;   /* bleu très foncé (textes foncés) */
  --eza-text:    #1f2937;   /* gris foncé lisible */
  --eza-muted:   #6b7280;   /* gris pour hints */
  --eza-bg:      #ffffff;   /* fond modal */
  --eza-danger:  #e11d48;   /* rouge erreurs */
  --eza-shadow:  0 18px 50px rgba(2,8,23,.25);
}

.ezp-modal{
  position: fixed; inset: 0; display:none;
  background: rgba(0,0,0,.45);
  z-index: 9999;
  opacity: 0;
  transition: opacity .28s ease;
}
.ezp-modal.is-open{ display:block; opacity:1; }

.ezp-modal__dialog{
  position: relative;
  width: min(92vw, 480px);
  margin: 9vh auto;
  background: var(--eza-bg);
  border-radius: 18px;
  padding: 18px 18px 22px;
  box-shadow: var(--eza-shadow);

  /* Bordure animée (3 couleurs) */
  border: 2px solid transparent;
  background-image:
    linear-gradient(var(--eza-bg), var(--eza-bg)),
    linear-gradient(120deg, var(--eza-primary), var(--eza-secondary), var(--eza-tertiary));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  animation: ezp-border 4.5s linear infinite;

  transform: translateY(6px) scale(.98);
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
}
.is-open .ezp-modal__dialog{
  transform: translateY(0) scale(1);
  opacity: 1;
}

@keyframes ezp-border{
  0%   { background-position: 0% 0%, 0% 50%; }
  50%  { background-position: 0% 0%, 100% 50%; }
  100% { background-position: 0% 0%, 0% 50%; }
}

.ezp-modal__close{
  position:absolute; right:10px; top:6px;
  border:0; background:transparent; font-size:24px; cursor:pointer; line-height:1;
  color:#475569;
}
.ezp-modal__title{
  margin: 2px 0 12px; font-size: 18px; font-weight: 700; color: var(--eza-dark);
}
.ezp-modal__btnrow{
  display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:12px;
}
.ezp-btn{
  border:1px solid #e5e7eb; background:#f8fafc; color:var(--eza-dark);
  padding:10px 12px; border-radius:12px; cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s;
}
.ezp-btn:hover{ transform: translateY(-1px); box-shadow: 0 6px 18px rgba(2,8,23,.08); } 
.ezp-btn--primary{ background: var(--eza-primary); border-color: var(--eza-primary); color: #c6cdd9;font-size: 18px; }
.ezp-btn--full{ width:100%; } 

.ezp-input{
  width:100%; border:1px solid #e5e7eb; border-radius:12px; padding:11px 12px; margin:6px 0;
  font-size:15px; color:var(--eza-text); background:#fff;
  transition: border-color .2s, box-shadow .2s;
}
.ezp-input:focus{
  outline:none; border-color: var(--eza-secondary);
  box-shadow: 0 0 0 3px rgba(14,165,233,.2);
}

/* Zone messages */
.ezp-msg{ margin-top:8px; font-size:14px; min-height:18px; color: var(--eza-muted); }
.ezp-msg.is-error{ color: var(--eza-danger); }

/* Lien oublié */
.ezp-forgot{ display:inline-block; margin-top:12px; text-decoration:none; color: var(--eza-primary); }

/* Vues qui glissent (login <-> forgot) */
.ezp-views{ position:relative; overflow:hidden; }
.ezp-view{
  width:100%; will-change: transform, opacity;
  transition: transform .32s ease, opacity .32s ease;
  transform: translateX(100%); opacity:0; position:absolute; inset:0;
}
.ezp-view--active{ transform: translateX(0); opacity:1; position:relative; }
.ezp-view--left { transform: translateX(-100%); opacity:0; }

/* Layout forgot */
.ezp-grid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.ezp-grid--full{ grid-column: 1 / -1; }

@media (max-width: 520px){
  .ezp-grid{ grid-template-columns:1fr; }
}

/* ---------- CSS ajouté barre de recherche ---------- */

.notif {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0.95;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 9999;
}
.notif.hide {
  opacity: 0;
  transform: translateX(-50%) translateY(-10px);
}
.notif.info { background: #2196f3; }
.notif.warn { background: #ff9800; }
.notif.error { background: #f44336; }

.product.fade-in { opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease; }
.product.fade-in.show { opacity: 1; transform: translateY(0); }


