.wmc-slider-wrapper {
    width: 100%;
    margin: 20px 0;
    overflow: hidden;
    position: relative;
}

.wmc-swiper {
    position: relative;
}

.swiper-slide {
    background: #000;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.swiper-slide:hover {
    transform: scale(1.02);
    z-index: 10;
}

.wmc-nav {
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    color: #000 !important;
}

.wmc-nav::after {
    font-size: 18px !important;
    font-weight: bold;
}

.wmc-slider-wrapper:hover .wmc-nav {
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #000 !important; 
}