.error-404 {
  padding: 100px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 0%), color-mix(in srgb, var(--background-color), var(--accent-color) 4%));
}

.error-404 .error-wrapper {
  position: relative;
  overflow: hidden;
}

.error-404 .error-illustration {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 .error-illustration i {
  font-size: 9rem;
  color: color-mix(in srgb, var(--accent-color), transparent 10%);
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite;
}

.error-404 .error-illustration .circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.error-404 .error-illustration .circle.circle-1 {
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  animation: float 6s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-2 {
  width: 120px;
  height: 120px;
  background: color-mix(in srgb, var(--heading-color), transparent 85%);
  top: 30%;
  left: 25%;
  animation: float 8s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-3 {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  bottom: 20%;
  right: 30%;
  animation: float 7s ease-in-out infinite reverse;
}

.error-404 .error-content {
  padding: 30px 0;
}

.error-404 .error-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.error-404 .error-code {
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  margin: 0;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -2px;
}

.error-404 .error-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.error-404 .error-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-404 .error-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.error-404 .error-actions .btn-home,
.error-404 .error-actions .btn-help {
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.error-404 .error-actions .btn-home i,
.error-404 .error-actions .btn-help i {
  font-size: 1.2rem;
}

.error-404 .error-actions .btn-home {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.error-404 .error-actions .btn-home:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-actions .btn-help {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.error-404 .error-actions .btn-help:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.error-404 .error-suggestions {
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 5%);
  border-radius: 12px;
}

.error-404 .error-suggestions h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.error-404 .error-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.error-404 .error-suggestions ul li {
  margin-bottom: 0.8rem;
}

.error-404 .error-suggestions ul li:last-child {
  margin-bottom: 0;
}

.error-404 .error-suggestions ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--default-color);
  font-size: 1.05rem;
  transition: all 0.3s;
}

.error-404 .error-suggestions ul li a i {
  color: var(--accent-color);
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.error-404 .error-suggestions ul li a:hover {
  color: var(--accent-color);
}

.error-404 .error-suggestions ul li a:hover i {
  transform: translateX(3px);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 992px) {
  .error-404 .error-illustration {
    height: 300px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 70px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 6rem);
  }

  .error-404 .error-title {
    font-size: 1.8rem;
  }

  .error-404 .error-actions {
    flex-direction: column;
  }

  .error-404 .error-actions .btn-home,
  .error-404 .error-actions .btn-help {
    width: 100%;
    justify-content: center;
  }
}





/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}


.menu_bottom {
  margin-bottom:20px;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "â€¢";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

.coversearch {

background: url('assets/img/fondrecherche.jpg') no-repeat;
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto;
background-position: center;
background-size: cover;
padding-bottom: 25px;

}


.special_cover {

background-position: center;
background-size: cover;
background-position: center;
background-repeat: round;
min-height:400px;
border-radius:20px;

}

.bottom_search{
position: absolute;
top: 67px;
z-index: 2000;
border: solid 1px #dee2e6;
width: 355px;
text-align: left;
padding: 15px;
background: #fff;
max-height: 265px;
overflow: auto;


}

.zone_gastro{

display:block;
float:left;

}

.bottom_search p{

display:inline-block;
font-size:15px;
}

#activite{


}



.bottom_search ul {
list-style:none;
padding:0;

}

.bottom_search ul li a{
display:block;
padding:10px;
padding-left:0px;
margin: 5px;

}

.bottom_search ul li a:hover{

background:#d21111;
border-radius:10px;
color: #fff;

}

#activite ul li a:hover{

background:#dee2e6;
border-radius:10px;
color: #fff;

}

.bottom_search ul li a i{
margin: 0;
border:solid 1px #dee2e6;
padding:10px; 
border-radius:10px;
color: #d21111;
background:#fff;
}

.bottom_search ul li a img{
margin: 0;
border:solid 1px #dee2e6;
padding:1px; 
border-radius:10px;
color: #d21111;
background:#fff;
vertical-align: baseline;
margin-right :10px;
}

.bottom_search ul li{

}

#activite{


}

.clear{ clear:both;}


.bottom_search ul li p {
display:block;
margin:0;

}




.zone_search_resto .border_bottom_sigle{

text-align :center !important

}


.section-title .zone_search_resto  p {

font-size: 15px;
font-family: var(--default-font);

}

.specialite {

list-style: none;
text-align: left;
margin: 25px 0;

}

#map {
      height: 100vh;
      width: 100%;
    }

    .map-panel {
      position: fixed;
      top: 120px;
      left: 20px;
      width: 450px;
      z-index: 1000;
    }

    .map-panel .card {
      border-radius: 0px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }


 .restaurantsearch {
  
  padding:  0;
 
}


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

.text-left{
text-align:left;
}

.border_bottom_sigle{
padding:  20px 0;
border-bottom :solid 1px #ccc;
border-top :solid 1px #ccc;
text-transform:capitalize;
}

.Bouton-full {
padding:  10px;
display:block;
background: color-mix(in srgb, var(--accent-color), transparent 15%);
width:100%;
color :#fff;

}

#panier_complet .bg-danger {
display:none;
}



.text-right{
text-align:right;
}


#response_restaurants{
     background:#fff;
     padding : 0px 20px;
}


.border_produit_cat {
  border:solid 1px #ccc;
  padding : 10px;
  margin-bottom:15px;
   border-radius:20px;
}


.quantity-selector .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
}

/* Couleur grise pour le bouton moins */
.btn-outline-secondary {
    border-color: #dee2e6;
    color: #dee2e6;
}

/* Couleur orange pour le bouton plus */
.btn-outline-warning {
    border-color: #cc1212;
    color: #cc1212;
}

/* Supprimer le contour bleu lors du clic sur l'input */
.quantity-selector input:focus {
    box-shadow: none;
}


.formulaire_panier  {
   
   background:#c40f0f;
}


.zone_commande {
   
    width:70%;
    margin: 0 auto;
}

.bouton_commande {
    display:block;
    margin-top:20px;
    padding:20px 0;
    width:100%;
}

.cart-items {

list-style: none;
padding: 0;
margin: 0;
}

.cart-items li {

margin-top: 10px;
margin-bottom: 20px;
border-bottom:1px #ccc solid;
}

.zone_saisie
{

border:none;
border-bottom: solid 1px #ccc;
border-radius:unset;
margin-bottom:10px;
transition: none;
}

input.zone_saisie:hover
{

border:none;
border-bottom: solid 1px #ccc;


}

.btn-search {
	position: relative;
   z-index: 2;
  text-align: left;
  top: 61Px;
  font-size: 33px;
}


.btn-enroll{
	color: var(--contrast-color);
  	background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

#bouton_connexion{
  background: #fff;
  border: solid 1px black;
  color: black;
}

.cart-box {
  position: sticky;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

/* Animation total */
.total-animate {
  animation: bump 0.3s ease;
}

@keyframes bump {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Animation badge */
.badge-animate {
  animation: pulse 0.4s ease;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* Mobile panier fixe */
@media (max-width: 991px) {
  .cart-box {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 16px 16px 0 0;
    z-index: 1000;
  }
  
  
  .voir_monpanier {
  	top : 100px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 16px 16px 0 0;
    z-index: 1000;
  }
  
  
  
  

  main {
    padding-bottom: 140px;
  }
  
  #bouton_connexion{
  display:none;
}

.map-panel {
  position: fixed;
  top: 90px;
  left: 5%;
  width: 90%;
  z-index: 996;
}

.cart-items {
  display: none;
}

.voir_monpanier .cart-items {
  display: block;
}


#panier_complet .bg-danger {
background:none !important;
color : #000;
display:block;
font-size:20px;
}

  
}


  @media (min-width: 1200px) {
.navmenu a i, .navmenu a:focus i {
  font-size: 22px;
  line-height: 0;
  margin-left: 5px;
  transition: 0.3s;
}


.cart-box {
  position: sticky;
  top: 100px;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}



}