.menu-container {
    display: flex;
    overflow-x: scroll;
    white-space: nowrap;
    /* padding-right: 20px; */
    /* padding-left: 20px; */
    padding-bottom: 20px;
}

.menu-vertical-container {
    display: flex;
    flex-direction: column; /* Arrange items in a column (vertical layout) */
    gap: 10px; /* Adjust the space between items */
    align-items: center;
    /* margin-left: 10%; */
    /* margin-right: 10%; */
  }

.slider {
    position: relative;
    width: 98%;
    max-width: 600px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    margin-left: 1%;
    margin-right: 1%;
  }

  .slides {
    display: flex;
    /* width: 100%; */
    transition: transform 0.5s ease-in-out;
  }

  .slide {
    /* width: 100%; */
  }

  .slide-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }

  .slide-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }

  .button-menu {
    display: flex;
    flex-direction: column; /* Arrange items in a column (vertical layout) */
    gap: 10px; /* Adjust the space between items */
    align-items: center;
    width: 140px;
  }

.shipping-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 200px;
  height: 300px;
}

.shipping-card img {
  width: 100%;
  height: auto;
}