.overview-container {
    margin-top:4rem;


    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .overview-text-line-container{
    width: 100%;
  }
    .overview-text-line-container-text{
  font-size: 24px;
  }
.overview-scroll-info{

  width: 100%;
  margin: 0 auto;
  font-size: 12px;

  text-align: center;
}

.overview-content-toggle{
width: 100%;;
}
.overview-container-top{
    display: flex;
    flex-direction: row;
    align-items:flex-start;
    justify-content: space-between;
    width: 100%;


}
.overview-line-separator{
    width:100%;
    text-align:left;
    margin:0;

    margin-block-end: 2rem;
}
.overview-image-product-description{
    width: 50%;


}
.overview-product-description-title{
    font-size: 36px; 

}
.overview-product-description-subtitle{
    font-size: 24px; 
       
}
.overview-set-details{
 
    width: 50%;
   
    margin-left: 5rem;

}

.overview-set-details-title{
    font-size: 58px;
}
.overview-set-details-subtitle{
    font-size: 24px;
}

/* Overview Image Gallery Styles */

.overview-swiper {
    width: 100%;
  
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
  }
  
  .overview-swiper-wrapper {
    display: flex;
  }
  
  .overview-swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .overview-swiper-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }
  
  /* Navigation Buttons */
  /*.overview-swiper-button-next,
  .overview-swiper-button-prev {
    color: black;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    z-index: 10;
    cursor: pointer;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .overview-swiper-button-next {
    right: 10px;
  }
  
  .overview-swiper-button-prev {
    left: 10px;
  }*/
  
  /* Pagination Dots */
  .overview-swiper-pagination {
    position: absolute;
    text-align: center;
    bottom: 10px;
    width: 100%;
    z-index: 10;
  }
  
  .overview-swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: black;
    opacity: 0.4;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    transition: opacity 0.3s;
  }
  
  .overview-swiper-pagination-bullet-active {
    opacity: 1;
    background: black;
  }
  
  .overview-result-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 3rem 0 3rem 0; 
  }
  
  .overview-result-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding: 0.5rem 0;
  }
  
  .overview-result-title {
    font-weight: bold;
    font-size: 1rem;
  }
  
  .overview-result-value {
    font-size: 1rem;
    color: #333;
    text-align: right;
    min-width: 100px;
  }
  
  /* Overview In this set Image Gallery Styles */

    /* Flex container for cards, wrapping and left-aligned */
    .overview-in-this-set {
        display: flex;
        flex-wrap: wrap;
        justify-content:space-between;
        gap: 20px;
        margin: 5rem 0 5rem 0;
      }
  
      .overview-in-this-set-title{
        font-size: 58px;
      }
      
      .card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
  
      /* Card title below card */
      .card-title {
        padding-top: 1rem;
        font-size: 1.2rem;
        color: #333;
        text-align: center;
      }