/* Swiper Styles */
.p-mv__slider {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #fff0f4;
  }
  
  .p-mv__slider .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .p-mv__image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .p-mv__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  /* .p-mv__image {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .p-mv__image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
  } */

  .p-mv__slider .swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  
  .p-mv__slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.5;
    margin: 0 5px;
  }
  
  .p-mv__slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: #f97598;
  }
  
  /* ... existing code ... */