/* Sekcja */
.ms-featured-section {
    width: 100%;
    margin: 30px auto;
    padding: 0;
}

/* Naglowek - kreska + tytul */
.ms-featured-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.ms-featured-header-line {
    flex-shrink: 0;
    width: 4px;
    height: 24px;
    background: #c41e3a;
    border-radius: 2px;
}

.ms-featured-header-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-transform: none;
}

/* Wrapper */
.ms-featured-wrapper {
    width: 100%;
    position: relative;
}

.ms-featured-swiper {
    width: 100%;
    padding: 0 50px;
    position: relative;
    overflow: hidden;
}

/* Miniaturki PrestaShop - nie lamac layoutu */
.ms-featured-swiper .swiper-slide {
    height: auto;
}

.ms-featured-swiper .swiper-slide .product-miniature {
    width: 100% !important;
    margin: 0 !important;
}

/* Przyciski nawigacji */
.ms-featured-btn-prev,
.ms-featured-btn-next {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: #fff;
    transition: background 0.3s ease;
}

.ms-featured-btn-prev:after,
.ms-featured-btn-next:after {
    font-size: 18px;
}

.ms-featured-btn-prev:hover,
.ms-featured-btn-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.ms-featured-btn-prev {
    left: 5px;
}

.ms-featured-btn-next {
    right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .ms-featured-swiper {
        padding: 0 35px;
    }

    .ms-featured-btn-prev,
    .ms-featured-btn-next {
        width: 32px;
        height: 32px;
    }

    .ms-featured-btn-prev:after,
    .ms-featured-btn-next:after {
        font-size: 14px;
    }

    .ms-featured-header-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .ms-featured-swiper {
        padding: 0 30px;
    }

    .ms-featured-btn-prev,
    .ms-featured-btn-next {
        width: 28px;
        height: 28px;
    }

    .ms-featured-header-title {
        font-size: 14px;
    }
}
