.main-slider-container {
  position: relative;
  max-width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #f8f8f8;
}

.swiper {
    width: 100%;
    height: 100%;
  }
  
  .swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
  }
  
  .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
  }
  
  .slide-content {
    position: relative;
    text-align: center;
    width: 90%;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 40px 30px;
    border-radius: 5px;
    z-index: 2;
  }
  
  .slide-title {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  
  .slide-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
  }
  
  .slide-price {
    font-size: 35px;
    color: #c8a063;
    margin: 20px 0;
    font-weight: bold;
  }
  
  .slide-price-label {
    font-size: 16px;
    color: #333;
  }
  
  .new-feature {
    background-color: #f0c14b;
    color: #333;
    padding: 10px 15px;
    margin: 20px auto;
    max-width: 300px;
    font-weight: bold;
  }
  
  .detail-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    padding: 8px 0;
    font-size: 14px;
    color: #333;
  }
  
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #fff;
    opacity: 0.7;
  }
  
  .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #fff;
  }
  
  .wellness-logo {
    position: absolute;
    top: 20px;
    right: 30px;
    height: 60px;
    z-index: 10;
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.1em;
    z-index: 10;
  }
  
  .scroll-indicator::after {
    content: '|';
    display: block;
    text-align: center;
    animation: scrollAnim 1.5s ease-in-out infinite;
  }
  
  @keyframes scrollAnim {
    0% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.5; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  @media (max-width: 768px) {
    .slide-title {
      font-size: 24px;
    }
    
    .slide-price {
      font-size: 30px;
    }
  }