.header ul, .footer ul{
    list-style: none;
}

.header ul li{
    display: inline-block;
    margin-left:5px;
}
  
.header ul li a, .footer ul li a{
    text-decoration:unset;
}

#dialog{
    position: fixed;
    top :15%;
    background-color: white;;
    left:15%;
    overflow:auto;
    z-index: 10000;
    min-width: 60%;
    min-height:25%;
    transition-property: opacity;
    transition-duration: 1s;
    border-radius: 20px;
   box-shadow: 5px 5px 15px 5px grey;
   border:1px solid grey;
  }
  
  #rightDialog{
    position: fixed;
    top:0px; 
    right:0px;
    width:400px !important;
    background-color: white; 
    z-index:9999;
    height:calc(100%);
    overflow :auto;
    border-left:1px solid grey;
  }

  #leftDialog{
    position: fixed;
    top:0px; 
    left:0px;
    width:400px !important;
    background-color: white; 
    z-index:9999;   
    height:calc(100%);
    border-right:1px solid grey;
    overflow :auto;
  }
  
   #fullDialog{
    position: fixed;
    top:0px; 
    left:0px;
    width:100% ;
    background-color: white; 
    z-index:9999;   
    height:calc(100%);
    border-right:1px solid grey;
    overflow : auto;
  }
  
#DialogTitle{
    color: white;
    padding :10px;
    top:0px;
    font-size: 15px;
    text-align: center;
    cursor: move;
  }
  
  #dialog #DialogContent{
    padding :15px;
    max-height: 800px;
    overflow:auto;
    filter: alpha(opacity='70');
  }

  #DialogRighContent .container{
      width:100% !important;
  }
  
  .dialogContent, #DialogTitle{
   font-family: "Montserrat",sans-serif;    
  }
  
  .dialogContent .link{
      font-size:14px;
  }
  #divResult {
    z-index: 10040;
    position: absolute;
    height: 200px;
    padding: 5px;
    border: 1px solid grey;
    border-radius: 6px 6px 6px 6px;
    overflow: auto;
    background: none repeat scroll 0 0 white;
}

#divResult ul {
    text-align: left;
}

.txtEditor{
    border:1px solid grey;
    width:100%;
    min-height: 150px;
}

.txtEditor .toolBar{
    border-bottom:1px solid grey;
    width:100%;
    min-height : 35px;
    padding:1px;
}

.txtEditor .toolBar div {
    display: inline-block;
    border : 1px solid #bebebe;
    border-radius: 5px;
    cursor: pointer;
    width :auto;
    padding:5px;
    text-align: center;
}

.txtEditor .inputArea{
    min-height:100px;
}

.txtEditor ul {
    padding:revert;
}

.txtEditor ul li{
    list-style: unset;
}

.txtEditor table tr td{
  border :1px solid grey;
  height:30px;
  width: 30px;
}

.mainContent {
    min-height: 69vh;
}

.width100{
    width:100%;
}

.center{
   text-align: center;
}

.marginTop{
   margin-top:10px;    
}

.marginRight{
   margin-right:10px;    
}

.info label{
    margin-right:10px;
    margin-left:10px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}


.positionBottom{
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    text-align: center;
}

date-box {
    display: inline-block;
    position: relative;
}
date-box input, time-box input{
    height: 34px;
    padding: 6px 12px;
    border: 1px solid #CFD8DC;
    border-radius: 4px;

}

date-box input {
    padding: 8px;
    font-size: 14px;
    width: 140px;
}

date-box .calendar {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    z-index: 100;
}

date-box table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
}

date-box th {
    color: #555;
    font-size: 12px;
}

date-box td {
    cursor: pointer;
    padding: 4px;
}

date-box td:hover {
    background: #eee;
    border-radius: 4px;
}

date-box .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

date-box button {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}


time-box {
    display: inline-block;
    position: relative;
    font-family: sans-serif;
}

time-box input {
    padding: 8px;
    font-size: 14px;
    width: 100px;
    cursor: pointer;
}

time-box input {
    padding: 8px;
    font-size: 14px;
    width: 140px;
}

time-box .time-picker {
    display: none; /* caché par défaut */
    position: absolute;
    top: 110%;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    padding: 8px;
    z-index: 100;
}

time-box .time-picker div.selects {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-bottom: 4px;
}

time-box .time-picker select {
    font-size: 14px;
    padding: 4px;
}

time-box .time-picker button {
    width: 100%;
    padding: 4px;
    border: none;
    background-color: #0078D4;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

time-box .time-picker button:hover {
    background-color: #005fa3;
}



#popupNotify{
    background-color:white;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0px 0px 10px 15px rgb(0 0 0 / 10%);
    width: 200px;
    color:black;
}
.header .headerContainer {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  flex-wrap: nowrap;
  gap: 10px;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.logo img {
  width: 60px;
  height: auto;
  border-radius: 6px;
}

/* ===== NAVIGATION ===== */
.navbar {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
  margin: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #ff4444;
  text-shadow: 0 0 8px rgba(255, 68, 68, 0.8);
}

/* ===== ICONES ET SELECT ===== */
.lang-select {
  color: #fff;
  padding: 5px 8px;
}

.shopCardIcon, .notifyMenu {
  position: relative;
  display: block;    
  font-size: 14px;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
}

.cart-count, .notify-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #ff2222;
  color: #fff;
  font-size: 12px;
  padding: 1px 5px;
  border-radius: 50%;
}

/* ===== MENU BURGER ===== */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .navbar {
     z-index: 10;
    position: fixed;
    top: 0px;
    right: -100%;
    background: var(--color-background-dark);
    width: 65%;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 40px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.6);
  }

  .navbar.active {
    right: 0;
  }

  .nav-menu {
    flex-direction: column;
    gap: 20px;
  }
  
  .noHover a:hover{
    text-decoration: none;
}

  .menu-toggle {
    display: block;
  }

  /* Ajustement : icônes à droite visibles en ligne */
  .header .headerContainer {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left:10px;
    padding-right:10px;
  }

  .lang-select,
  .shopCardIcon,
  .notifyMenu {
    order: 4;
    margin-top: 5px;
  }
}

.block-height-midlle{
    height:300px;
    margin:0px;
    margin-bottom:15px;
    overflow :auto
}

.block-height-hight{
    height:400px;
    margin:0px;
    margin-bottom:15px;
    overflow :auto
}

.breadCrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none;
    background-color: var(--color-background-light-grey);
    padding : 10px;
    color:white;
}


.breadCrumb li {
    display: inline-block;
    padding-right : 10px;
}

.breadCrumb  li::after {
  content: " /";
}

.breadCrumb li:last-child::after {
  content: "";  
}

.positionBottom{
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    text-align: center;
}

date-box {
    display: inline-block;
    position: relative;
}
date-box input, time-box input{
    height: 34px;
    padding: 6px 12px;
    border: 1px solid #CFD8DC;
    border-radius: 4px;
    color:black;
}

date-box input {
    padding: 8px;
    font-size: 14px;
    width: 140px;
}

date-box .calendar {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    color : black;
    background: white;
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    z-index: 100;
}

date-box table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
}

date-box th {
    color: #555;
    font-size: 12px;
}

date-box td {
    cursor: pointer;
    padding: 4px;
}

date-box td:hover {
    background: #eee;
    border-radius: 4px;
}

date-box .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    color: white;
}

date-box button {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}


time-box {
    display: inline-block;
    position: relative;
    font-family: sans-serif;
}

time-box input {
    padding: 8px;
    font-size: 14px;
    width: 100px;
    cursor: pointer;
}

time-box input {
    padding: 8px;
    font-size: 14px;
    width: 140px;
}

time-box .time-picker {
    display: none; /* caché par défaut */
    position: absolute;
    top: 110%;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    padding: 8px;
    z-index: 100;
}

time-box .time-picker div.selects {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-bottom: 4px;
}

time-box .time-picker select {
    font-size: 14px;
    padding: 4px;
    color:black;
}

time-box .time-picker button {
    width: 100%;
    padding: 4px;
    border: none;
    background-color: #0078D4;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

time-box .time-picker button:hover {
    background-color: #005fa3;
}
tel-box .tel-box {
  display: flex;
  gap: 6px;
}

tel-box select,
tel-box input {
  padding: 6px;
  font-size: 14px;
   background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}


#popupNotify{
    background-color:white;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0px 0px 10px 15px rgb(0 0 0 / 10%);
    width: 200px;
    color:black;
}

#popupNotify p{
    color:black !important;
}

/* ===== RESET & BASE STYLES ===== */
:root {
  --primary-color: #D32F2F;       /* Rouge vif */
  --secondary-color: #B71C1C;     /* Rouge foncé */
  --light-color: rgba(255, 255, 255, 0.05); /* Fond sombre transparent */
  --dark-color: #F5F5F5;          /* Gris clair pour le texte */
  --accent-color: #FF5252;        /* Rouge accent (survols, bordures) */
  --highlight-color: #E53935;     /* Rouge lumineux pour boutons */
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  --border-radius: 8px;
  --font-main: 'Oswald', sans-serif;  /* Typo sportive et condensée */
  --font-secondary: 'Roboto', sans-serif;
  --metal-color: #1C1C1C;          /* Noir métal */
}

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

body {
  font-family: var(--font-main);
  background-color: var(--metal-color);
  color: var(--dark-color);
  line-height: 1.6;
  background-image: radial-gradient(circle at top left, #111 0%, #000 100%);
  overflow-x: hidden;
}

/* ===== LAYOUT & CONTAINERS ===== */
.row-fluid {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.App {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* ===== HEADER ===== */
.header {
  background: linear-gradient(135deg, #000, var(--secondary-color));
}


.header div{
    width: auto;
}
/*
header nav a {
  margin: 0 10px;
  color: var(--dark-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: var(--accent-color);
}
*/

footer {
  background: #111;
  color: var(--dark-color);
  text-align: center;
  padding: 1rem;
  border-top: 2px solid var(--accent-color);
}

/* ===== MAIN CONTENT ===== */
.mainContent {
  min-height: calc(100vh - 120px);
  padding: 30px 0;
}

/* ===== FULL-WIDTH CONTAINERS ===== */
.full-first, .full-seco, .full-terc {
  padding: 40px 20px;
  margin-bottom: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

.full-first {
  background-color: rgba(0, 0, 0, 0.6);
  border-top: 5px solid var(--primary-color);
}

.full-seco {
  background-color: rgba(30, 30, 30, 0.7);
  border-top: 5px solid var(--accent-color);
}

.full-terc {
  background-color: rgba(40, 40, 40, 0.8);
  border: 2px solid var(--secondary-color);
}

/* ===== BLOCKS ===== */
.block-first, .block-seco, .block-terc {
  padding: 25px;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  background: rgba(20, 20, 20, 0.8);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.block-first { border-left: 5px solid var(--primary-color); }
.block-seco  { border-left: 5px solid var(--accent-color); }
.block-terc  { border: 2px dashed var(--secondary-color); }

/* ===== BLOCK HOVER ANIMATIONS ===== */
.block-first.block-hover:hover,
.block-seco.block-hover:hover,
.block-terc.block-hover:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 25px rgba(255, 0, 0, 0.3);
 opacity: 1;
}

.block-hover::before {
/*  content: "";
  position: absolute;
  top: 0; 
  left: -200%;
  width: 100%; 
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: all 0.6s ease;
  opacity: 0;
*/
}

.block-hover:hover::before {
  left: 100%;
}

/* ===== GRID ===== */
.grid {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 15px;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
}

.grid th {
  background: linear-gradient(135deg, var(--secondary-color), var(--highlight-color));
  color: white;
  padding: 12px;
  text-align: center;
  font-family: var(--font-secondary);
  font-weight: 700;
  text-transform: uppercase;
}

.grid td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.grid tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}

.grid tr:hover {
  background-color: rgba(255, 0, 0, 0.15);
}

/* ===== DIALOG ===== */
#dialog {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

#dialog.show { display: flex; }

#dialog .dialog-content {
  background-color: rgba(25, 25, 25, 0.95);
  padding: 30px;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.25);
  border-top: 6px solid var(--accent-color);
  color: var(--dark-color);
  animation: fadeIn 0.4s ease;
}

#dialog .close-dialog {
  position: absolute;
  top: 15px; right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark-color);
}

/* ===== BUTTONS ===== */
.button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
  color: white;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-secondary);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}

.button:hover {
  background: linear-gradient(135deg, var(--highlight-color), var(--accent-color));
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(255, 0, 0, 0.4);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-main);
  color: var(--accent-color);
  margin-bottom: 15px;
}

h1 {
  font-size: 2.4rem;
  border-bottom: 3px solid var(--highlight-color);
  padding-bottom: 10px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

h3 {
  font-size: 1.4rem;
  color: var(--accent-color);
}

p {
  margin-bottom: 15px;
  font-family: var(--font-secondary);
  line-height: 1.7;
  color: var(--dark-color);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .full-first, .full-seco, .full-terc {
    padding: 25px 15px;
  }
  .block-first, .block-seco, .block-terc {
    padding: 20px;
  }
  #dialog .dialog-content {
    width: 95%;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .header { padding: 10px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .button {
    padding: 10px 20px;
    font-size: 14px;
  }
}


/* ===== BUTTONS (effet métallique dynamique) ===== */
.button {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
  color: white;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-secondary);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Reflet métallique animé */
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transform: skewX(-25deg);
  transition: none;
}

/* Animation du reflet au survol */
.button:hover::before {
  animation: metallic-glow 1.2s ease forwards;
}

@keyframes metallic-glow {
  from { left: -75%; }
  to { left: 125%; }
}

/* Animation de mouvement et d'ombre */
.button:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 18px rgba(255, 0, 0, 0.5);
}



/* ===== LIENS ===== */
a {
  color: var(--dark-color); /* gris clair par défaut */
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:visited {
  color: var(--dark-color);
}

a:hover,
a:focus {
  color: var(--accent-color); /* rouge lumineux au survol */
  text-shadow: 0 0 6px rgba(255, 0, 0, 0.5);
}

a:active {
  color: var(--highlight-color);
}

a:hover {
  color: var(--accent-color);
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
  border-bottom: 1px solid var(--accent-color);
}

/* ======== STYLE DES BOUTONS AUTOMOBILE ======== */
.btn {
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #111, #222);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Reflet métallique animé (effet carrosserie) */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,
}

