 .swiper {
      width: 100%;
      height: 100%; /* Respect parent height */
    }
    .swiper-slide {
      width: 100%;
      aspect-ratio: 1 / 1; /* Square ratio */
      line-height: 0; /* Remove any line-height spacing */
    }
    .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Maintain aspect ratio */
      display: block; /* Prevent inline spacing */
      cursor: pointer;
    }

     @media (min-width: 576px) {
      .swiper {
        /*max-height: 300px;*/
        overflow: hidden; /* Prevent overflow */
      }
      .swiper-slide {
        height: auto;
      }
      .swiper-slide img {
        height: auto;
      }
      .swiper-slide-active img {
        border: 4px solid #f0f; /* Red border for active slide */
      }
      .swiper-button-next,
      .swiper-button-prev {
        color: #000; /* Arrow color */
        background: rgba(255, 255, 255, 0.7); /* Semi-transparent background */
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        left: 50%;
      }
      .swiper-button-next:after,
      .swiper-button-prev:after {
        font-size: 20px; /* Arrow size */
      }
      .swiper-button-prev {
        top: 10px; /* Position at top */
        transform: translateX(-50%) rotate(90deg); /* Rotate for upward arrow */
      }
      .swiper-button-next {
        bottom: 10px; /* Position at bottom */
        top: auto;
        transform: translateX(-50%) rotate(90deg); /* Rotate for downward arrow */
      }
    }