/* =========================================================
   OSP 83002 - Promotion Image Slider
========================================================= */

[data-cattype="83002"].osp-83002-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

[data-cattype="83002"].osp-83002-section * {
    box-sizing: border-box;
}

[data-cattype="83002"] .osp-83002-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

[data-cattype="83002"] .osp-83002-track {
    display: flex;
    width: 100%;
    transition: transform 0.55s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

[data-cattype="83002"] .osp-83002-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
}

[data-cattype="83002"] .osp-83002-slide-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

[data-cattype="83002"] .osp-83002-slide-link.no-link {
    cursor: default;
}

[data-cattype="83002"] .osp-83002-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Arrow */
[data-cattype="83002"] .osp-83002-arrow {
    position: absolute;
    top: calc(50% - 4px);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    background: rgba(0, 0, 0, .30);
    box-shadow: none;
    color: #fff;
    font-size: 0;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}

[data-cattype="83002"] .osp-83002-arrow svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

[data-cattype="83002"] .osp-83002-prev {
    left: 16px;
}

[data-cattype="83002"] .osp-83002-next {
    right: 16px;
}

[data-cattype="83002"] .osp-83002-arrow:hover {
    border-color: #d3a83e;
    background: rgba(0, 0, 0, .60);
    color: #d3a83e;
    transform: translateY(calc(-50% - 2px));
}

[data-cattype="83002"] .osp-83002-arrow:focus-visible {
    border-color: #d3a83e;
    outline: 2px solid rgba(211, 168, 62, .35);
    outline-offset: 2px;
}

/* Indicator */
[data-cattype="83002"] .osp-83002-indicators {
    position: absolute;
    bottom: 14px;
    left: 50%;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(-50%);
}

[data-cattype="83002"] .osp-83002-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

[data-cattype="83002"] .osp-83002-dot.is-active {
    width: 24px;
    background: #F28C00;
}

/* One item: no slider UI */
[data-cattype="83002"].is-single .osp-83002-arrow,
[data-cattype="83002"].is-single .osp-83002-indicators {
    display: none !important;
}

@media (max-width: 767px) {
    [data-cattype="83002"] .osp-83002-arrow {
        top: calc(50% - 2px);
        width: 34px;
        height: 34px;
    }

    [data-cattype="83002"] .osp-83002-arrow svg {
        width: 17px;
        height: 17px;
    }

    [data-cattype="83002"] .osp-83002-prev {
        left: 10px;
    }

    [data-cattype="83002"] .osp-83002-next {
        right: 10px;
    }

    [data-cattype="83002"] .osp-83002-indicators {
        bottom: 10px;
        gap: 6px;
    }

    [data-cattype="83002"] .osp-83002-dot {
        width: 7px;
        height: 7px;
    }

    [data-cattype="83002"] .osp-83002-dot.is-active {
        width: 20px;
    }
}
