.banners-container {
    width: 100%;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .banners-swiper {
    width: 95%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
  }
  .banner-item {
    background-size: cover;
    background-position: center;
    height: 600px;
    position: relative;
  }
  .banner-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(49, 57, 63, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .banner-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: var(--font-main);
    color: var(--background-color);
  }
  .banner-button {
    display: inline-block;
    height: 60px;
    line-height: 60px;
    padding: 0 40px;
    background-color: var(--red-color);
    color: var(--background-color);
    text-decoration: none;
    font-weight: bold;
    font-family: var(--font-main);
    border-radius: 40px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
  }
  .banner-tasting-card-container {
    width: 100%;
    background-color: var(--black-color);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }