.carte-container {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.carte-container-banner {
  width: 100%;
  height: 30vh;
  background-image: url(../img/lime-near-roasted-meat-salad.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.carte-container-title {
  font-size: 45px;
  display: flex;
  align-items: center;
  padding-left: 3rem;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.436);
  color: whitesmoke;
}

.carte-menu-mobile {
  display: none;
}

.carte-nav {
  width: 90%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
}

.carte-link {
  border: 1px solid black;
  border-radius: 10px;
  padding: 1rem;
  text-decoration: none;
  color: black;
  transition: box-shadow 0.3s ease, transform 0.5s ease;
}

.carte-link:hover {
  transform: translateY(-3px);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.carte-block {
  width: 50%;
  height: fit-content;
  padding: 1rem;
}

.carte-block-title {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  display: flex;
}


.carte-fader-title {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.436);
  color: whitesmoke;
display: flex;
justify-content: space-between;
  display: flex;
  align-items: center;
  font-size: 35px;
  border-radius: 10px;
  padding-left: 2rem;
  overflow: hidden; /* Masquer ce qui dépasse */
}

.carte-block-img {
min-height: 100%;
width: 50%;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;

}

.carte-icon {
  height: 50px;
}

.orderable-products-list {
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 862px) {
  .carte-block {
    width: 100%;
  }

  .carte-container-banner {
   height: 20vh;
  }

  .carte-container-title {
    font-size: 35px;
    justify-content: center;
    padding-left: 0;
  }

  .carte-nav {
    display: none;
  }

  .carte-menu-mobile {
    display: flex;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
  }

  .carte-block-title {

    height: 100px;
  
  }

  .carte-fader-title {
    font-size: 20px;
 
  }
}
