.stacked-carrousel {
    width: 100%;
    max-width: 1200px; /* Ajuste selon la taille de ta carte */
    margin: 0 auto;
    overflow: hidden; /* Cache les autres slides sur les côtés */
}

.card-container .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Conteneur principal blanc */
.card-container {
    background-color: white;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin-right: 100px;
    margin-left: 100px;
}

.card-container ul{
    list-style: none;
    margin-bottom: 20px;
    padding: 0%;
}

.card-container li{
    padding: 0%;
    padding-bottom: 5px;
}

/* Côté Gauche - L'image */
.card-container .card-left {
    flex: 1; /* Prend 50% de la largeur */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    padding: 50px;
}

.card-container figure {
    margin: 0;
}

.card-container img {
    width: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.2);
}

/* Côté Droit - Le texte */
.card-container .card-right {
    flex: 1; /* Prend les autres 50% */
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-container h2 {
    font-size: 2em;
    font-weight: bold;
    margin: 0;
    margin-bottom: 0px;
    color: #ff4d4d;
}

.card-container .menu-price p {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.card-container .red-separator {
    width: 100px; /* Longueur de la ligne */
    height: 4px;
    background-color: #ff4d4d; /* Rouge vif */
    border-radius: 2px;
}

.card-container .card-right .command a {
  text-decoration: none;
  color: white;
  background: #CA5858;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 10px;
  margin: 15px 0 0;
  display: inline-block;

  font-size: 0.75em;
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: bold;
  font-variation-settings: 100;
}

.contentcarda .card-right .command a:hover {
  background: #CA5858;
  color: whitesmoke;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
}

/* On personnalise les boutons par défaut de Swiper */
.stacked-carrousel .swiper-button-next, 
.stacked-carrousel .swiper-button-prev {
  color: #ff4d4d;
  background-color: white;
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.swiper-button-next:hover, 
.swiper-button-prev:hover {
  background-color: #ff4d4d;
  color: white;
}