/* PBC Slider Frontend Styles */

.pbc-slider-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.pbc-slider {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.pbc-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pbc-slide-link {
    display: block;
    width: 100%;
    height: 100%;
}

.pbc-slide-images {
    width: 100%;
    height: 100%;
    position: relative;
}

.pbc-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pbc-mobile-image {
    display: none;
}

.pbc-desktop-image {
    display: block;
}



/* Pagination Dots */
.pbc-slider .swiper-pagination {
    bottom: 20px;
}

.pbc-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
    transition: all 0.3s ease;
}

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

/* Mobile Navigation Arrows */
.pbc-mobile-nav {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 20;
    display: flex;
    gap: 8px;
}

.pbc-mobile-nav button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pbc-mobile-nav button:hover {
    transform: scale(1.1);
}

.pbc-mobile-nav button:active {
    transform: scale(0.95);
}

.pbc-mobile-nav svg {
    width: 20px;
    height: 20px;
}

/* Light arrows (default - dark background with light icons) */
.pbc-mobile-nav.light-arrows button {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
}

.pbc-mobile-nav.light-arrows button:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Dark arrows (light background with dark icons) */
.pbc-mobile-nav.dark-arrows button {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.pbc-mobile-nav.dark-arrows button:hover {
    background: rgba(255, 255, 255, 1);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .pbc-slider {
        height: 500px;
    }
    
    .pbc-mobile-image {
        display: block;
    }
    
    .pbc-desktop-image {
        display: none;
    }
    
}

@media screen and (max-width: 480px) {
    
}

/* Loading State */
.pbc-slider-wrapper:not(.swiper-initialized) {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pbc-slider-wrapper.swiper-initialized {
    opacity: 1;
}

/* Smooth transitions */
.pbc-slider .swiper-slide {
    transition: opacity 0.3s ease;
}

/* Lazy loading */
.pbc-slide-image[loading="lazy"] {
    background: #f0f0f0;
}