#foodAndPayment-section {
    display:flex;
    flex-direction: row;
    justify-content: center;
}

#foodAndPayment-section > * {
    backdrop-filter:blur(15px);
    padding: 20px;
}

#payment {
    height: 50%;
    border: 1px solid gray;
    border-radius: 20px;
    background-color: lightgray;
    color:black;
}







/* For smaller width media */
@media (max-width: 768px) {
    .carousel-item {
      width: 80%;
    }
    .modal-content {
      width: 95%;
    }
    /* Accessibility improvements */
  .carousel-item:focus-within {
    outline: 3px solid yellow;
  }
  .carousel-item img {
    max-width: 100%;
    height: auto;
  }
  /* Enhance user interaction */
  .button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .button-primary {
    background-color: red;
    color: white;
  }
  .button-primary:hover {
    background-color: darkred;
  }
  .button-secondary {
    background-color: black;
    color: white;
  }
  .button-secondary:hover {
    background-color: #333;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
  }
  .carousel-item {
    scroll-snap-align: start;
    flex: none;
    width: 300px;
    margin-right: 20px;
    position: relative;
    transition: transform 0.5s ease;
  }
  .carousel-item:last-child {
    margin-right: 0;
  }
  .carousel-item:hover {
    transform: scale(1.05);
  }
  .combo {
    border: 2px solid red;
    padding: 10px;
    background-color: #444; /* Darker background for combos */
  }
  .combo:hover {
    background-color: #555; /* Lighten on hover */
  }
  .price {
    font-weight: 700;
  }
checkout-button {
    background-color: red;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
  }
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
  }
  .modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
  }
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  /* Carousel animations */
@keyframes slide-in {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}
.carousel-item {
    animation: slide-in 1s forwards;
}
}