
/* SWIPER */
.swiper {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .close-menu-label::after {
    content: '☰';
    position: fixed;
    top: 2rem;
    right: var(--horizontal-padding);
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 3rem;
    width: 3rem;
    height: 3rem;
    text-align: center;
    line-height: 3rem;
    padding: 0.5rem;
    border-radius: 5px;
    z-index: 10000;
    cursor: pointer;
  }
  
  @media screen and (min-width: 800px) {
    .swiper {
      max-width: 500px;
    }
  }
  