/*스와이퍼*/
/* 기본 스타일 */
.swiper {
    width: 100%;
    height: 100%;
}
#swiper_products_section .swiper-wrapper{
    z-index: 3;
}
.sec3-swiper{
    overflow: unset;
}
.swiper-gimmick{
    position: absolute;
    top: 0;
    left: 0;
    width: 100000px;
    height: 100%;
    z-index: 0;
    background: black;
    will-change: opacity;
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper-slide img {
    width: 100%;
    height: auto;
}

#swiper_products_section .swiper-slide {
    background-color: var(--body-bg-clr);
    border-radius: 20px;
    transition: opacity 0.3s ease-in-out;
    /*opacity: 0.5; /* 기본 반투명*/
    position: relative;
    width: 900px;
    /*height: 506px;*/
    display: block;
    z-index: 1;
    transform-origin: center center;
    will-change: transform;
    overflow: unset;
}
.swiper-slide.swiper-slide-active .fill{
    transform: scale(1, 1);
}
#swiper_products_section .swiper-slide .swiper-float-div{
    position: absolute;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    z-index: 2;
}
#swiper_products_section .swiper-slide:not(.swiper-slide-active) .swiper-float-div{
    display: none;
}
#swiper_products_section .swiper-slide .swiper-float-div h2{
    text-align: left;
    font-size: var(--text-effect-size);
}
#swiper_products_section .swiper-slide .swiper-float-div a{
    text-align: right;
    font-size: var(--text-size);
    pointer-events: all;
}


.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
  background: rgba(0, 0, 0, 0.5); /* 그림자 색상 */
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10px; /* 그림자 크기 */
  z-index: 10;
  transition: all 0.3s ease;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
} 
#swiper_products_section .swiper-slide img{
    position: relative;
    left: 0;
    top: 0;
}