/**
 * Simple Swiper Custom Styles
 * Only the essential customizations
 * Let Swiper's native styles do the work
 */

/* Basic container styles */
.swiper-container {
    position: relative;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
}

/* Hero slider specific */
#section-intro .swiper-container {
    width: 100%;
    height: 100%;
}

/* Product carousels */
.product-carousel {
    padding: 0 40px; /* Space for navigation buttons */
}

/* Navigation buttons - simple and clean */
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Hide navigation on mobile */
@media (max-width: 768px) {
    .product-carousel {
        padding: 0;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* Pagination dots */
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #999;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #333;
    opacity: 1;
}

/* Product card styles (keep existing) */
.swiper-slide .de__pcard {
    height: 100%;
}

/* That's it! No complex overrides, no !important, no will-change */