/* multimachine_slider.css */

.multimachine-hero {
    position: relative;
    overflow: visible;
    height: 700px;
    background: url('../../img/multimachine/multimachine_bg.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    color: #fff;
}

.multimachine-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.swiper-container {

    width: 100%;
    height: 100%;
    z-index: 2;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 700px;
}

.slide-content {
    padding-right: 30px;
}

.slide-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    word-break: keep-all;
}

.slide-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    word-break: keep-all;
}

.payment-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 0px;
    /* 버튼이 없으므로 간격 조정 */
    align-items: center;
}

.pay-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.pay-item img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.slide-images {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    position: relative;
}

.product-img {
    max-height: 750px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s ease;
    transform: translateY(35px);
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 991px) {
    .multimachine-hero {
        height: auto;
        min-height: 600px;
        overflow: hidden;
    }

    .swiper-slide {
        height: auto;
        padding: 40px 0;
    }

    .slide-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 0;
        margin-top: 30px;
    }

    .slide-content h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .payment-icons {
        justify-content: center;
    }

    .slide-images {
        margin-bottom: 10px;
    }

    .product-img {
        max-height: 380px;
        transform: none;
    }
}

@media (max-width: 575px) {
    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .product-img {
        max-height: 300px;
    }
}

/* multimachine 섹션 전용 스타일 (Responsive) */
.multimachine-section {
    background: #ffffff;
    padding: 60px 0;
}

.multimachine-wrap {
    max-width: 1792px;
    margin: 0 auto;
    padding: 0 20px;
}

.multimachine-banner {
    text-align: center;
}

.multimachine-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* 모바일 환경 설정 */
@media (max-width: 991px) {
    .multimachine-section {
        padding: 30px 0;
    }

    .multimachine-wrap {
        max-width: 100%;
        padding: 0 15px;
    }
}