.jd-slide-widget .swiper {
        width: 100%;
        overflow: hidden;
    }
    .jd-slide-widget .swiper { width: 100%; overflow: hidden; }

    .jd-slide-image-wrap,
    .jd-slide-video-wrap {
        position: relative;
        width: 100%;
    }

    .jd-slide-img { display: block; }

    /* YouTube iframe 확대 - UI 영역 잘라내기 */
    .jd-slide-youtube {
        position: absolute;
        top: 50%; left: 50%;
        width: 120%; height: 120%;
        transform: translate(-50%, -50%);
    }
    .jd-slide-youtube iframe {
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    /* 마우스 이벤트 차단 */
    .jd-slide-video-shield {
        position: absolute; top: 0; left: 0;
        width: 100%; height: 100%;
        z-index: 10; cursor: default;
        background: transparent;
    }

    .jd-slide-content-overlay { pointer-events: none; }
    .jd-slide-text { pointer-events: auto; }
    .jd-slide-btn { pointer-events: auto; box-sizing: border-box; }

    /* ── 세로 슬라이드 ── */
    .jd-slide-style-vertical {
        overflow: hidden;
    }

    /* ── 멀티 슬라이드 - 중앙 확대 ── */
    .jd-slide-style-multi .swiper-slide {
        transition: transform 0.3s ease;
        transform: scale(0.85);
    }
    .jd-slide-style-multi .swiper-slide-active {
        transform: scale(1);
    }

    /* ── 캐러셀 슬라이드 - 중앙 확대, 간격 없음 ── */
    .jd-slide-style-carousel .swiper-slide {
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform: scale(0.8);
        opacity: 0.6;
    }
    .jd-slide-style-carousel .swiper-slide-active {
        transform: scale(1);
        opacity: 1;
    }

    /* ── 원형 슬라이드 ── */
    .jd-slide-style-circle .jd-slide-image-wrap,
    .jd-slide-style-circle .jd-slide-video-wrap {
        border-radius: 50%;
    }
    .jd-slide-style-circle .jd-slide-image-wrap img {
        border-radius: 50%;
    }


    .swiper-pagination-bullet {
        text-align: center;
        line-height: 20px;
        color: #000;
        opacity: 1;
        background: rgba(0, 0, 0, 0.2);
    }

    .swiper-pagination-bullet-active {
        color: #fff;
        background: #007aff;
    }

    .jd-pagination-outside {
        position: relative !important;
        bottom: auto !important;
        margin-top: 10px;
        text-align: center;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        display: none;
    }
    .swiper-button-prev i,
    .swiper-button-next i {
        font-size: var(--swiper-navigation-size, 20px);
        color: var(--swiper-navigation-color, #666);
    }

    .jd-slide-arrow-outside-wrap {
        display: flex;
        align-items: center;
    }

    .jd-slide-arrow-outside-wrap .swiper {
        flex: 1;
    }

    .jd-arrow-outside-btn {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        flex-shrink: 0;
        margin: 0 5px;
    }

    .jd-arrow-circle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: var(--swiper-arrow-bg, #e0e0e0);
        color: var(--swiper-navigation-color, #666);
    }

    .jd-arrow-circle i {
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        position: relative;
    }

    .swiper-button-prev .jd-arrow-circle i {
        transform: translateX(-2px);
    }

    .swiper-button-next .jd-arrow-circle i {
        transform: translateX(2px);
    }