/* ==========================================================================
   services-carousel.css
   The image carousel on each individual service page (pServices/?w=...).
   ========================================================================== */

.service-carousel-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto 40px;
}

.service-swiper {
    border-radius: 15px;
    overflow: hidden;
    background: #101314;
}

.service-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-swiper .swiper-slide img {
    width: 100%;
    height: 480px;
    object-fit: contain;
    background: #101314;
    display: block;
}

@media (max-width: 767px) {
    .service-swiper .swiper-slide img {
        height: 280px;
    }
}

.service-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}

.service-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--art-accent, #e5bb89);
}

.service-swiper-prev,
.service-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    color: var(--art-dark, #2a2a2a);
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.service-swiper-prev:hover,
.service-swiper-next:hover {
    background: var(--art-accent, #e5bb89);
}

.service-swiper-prev {
    left: 12px;
}

.service-swiper-next {
    right: 12px;
}

.service-carousel-empty {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 60px 20px;
    text-align: center;
    color: #999;
    background: #f5f5f5;
    border-radius: 15px;
}
