/**
 * @package ZZAN Studio
 * @author ZZAN Studio
 * @brief Swiper Pagination Styles for ZZAN Neon Lime
 */

/* --- Pagination Bullets --- */
.zzan-widget-pagination .swiper-pagination-bullet {
    background: #fff; /* 다크 테마 기본값 */
    opacity: 0.3;
    width: 8px;
    height: 8px;
    margin: 0 5px !important;
    transition: all 0.3s;
}
/* Light theme override */
html[data-theme="light"] .zzan-widget-pagination .swiper-pagination-bullet {
    background: #000;
    opacity: 0.2;
}
/* Active state */
.zzan-widget-pagination .swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: var(--zzan-neon) !important;
    width: 20px;
    border-radius: 100px !important;
    border: none !important;
    box-shadow: none !important;
    background-image: none !important;
}
