section.featured-products {
    overflow: hidden;
    margin-top: 40px;
}

section.featured-products .featured-products-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

section.featured-products .featured-products-heading h2 {
    font-size: 20px;
}

section.featured-products .swiper-navigation {
    display: flex;
    align-items: center;
}

section.featured-products .swiper-navigation .button-prev {
    width: 36px;
    height: 36px;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

section.featured-products .swiper-navigation .button-prev:hover {
    border: 2px solid #111;
}

section.featured-products .swiper-navigation .button-next {
    margin-left: 8px;
    width: 36px;
    height: 36px;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

section.featured-products .swiper-navigation .button-next:hover {
    border: 2px solid #111;
}

section.featured-products .swiper-navigation .arrow {
    width: 20px;
    height: 20px;
}

section.featured-products .featured-products-swiper {
    --slide-count: 2;
    --slide-space-between: 10px;
    --slide-width: calc((100% - var(--slide-space-between) * (var(--slide-count) - 1)) / var(--slide-count));
}

section.featured-products .swiper-slide {
    max-width: var(--slide-width);
    margin-right: var(--slide-space-between);
}

section.featured-products .swiper-slide:last-child {
    margin-right: 0;
}

section.featured-products .product-card {
    background-color: #fff;
    border: 2px solid #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    text-align: center;
    cursor: pointer;
}

section.featured-products .product-card:hover {
    border: 2px solid #111;
}

section.featured-products .product-card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

section.featured-products .product-card .product-card-title {
    font-size: 14px;
    margin-top: 15px;
    font-weight: 700;
}

section.featured-products .product-card .product-card-price {
    margin-top: 3px;
    font-size: 13px;
    font-weight: 500;
}

section.featured-products .product-card .product-card-price-from {
    font-size: 12px;
}

section.featured-products .product-card .product-card-price .currency-symbol {
    font-size: 11px;
    margin-left: 1px;
    margin-right: -2px;
}

section.featured-products .product-card .product-card-price-value {
    font-size: 14px;
    font-weight: 700;
}

section.featured-products .product-card .product-card-moq {
    font-size: 12px;
    margin-top: 3px;
    color: #666;
}

@media screen and (min-width: 500px) {
    section.featured-products .featured-products-swiper {
        --slide-count: 3;
        --slide-space-between: 10px;
    }
}


@media screen and (min-width: 768px) {
    section.featured-products .featured-products-heading h2 {
        font-size: 24px;
    }

    section.featured-products .product-card .product-card-title {
        font-size: 15px;
    }

    section.featured-products .product-card .product-card-price-from {
        font-size: 13px;
    }

    section.featured-products .product-card .currency-symbol {
        font-size: 12px;
    }

    section.featured-products .product-card .product-card-price-value {
        font-size: 15px;
    }

    section.featured-products .swiper-navigation .button-prev,
    section.featured-products .swiper-navigation .button-next {
        width: 40px;
        height: 40px;
    }

    section.featured-products .featured-products-swiper {
        --slide-count: 4;
        --slide-space-between: 10px;
    }
}


@media screen and (min-width: 1028px) {
    section.featured-products .featured-products-swiper {
        --slide-count: 5;
        --slide-space-between: 10px;
    }
}


@media screen and (min-width: 1140px) {
    section.featured-products .featured-products-swiper {
        --slide-count: 6;
        --slide-space-between: 17px;
    }

    section.featured-products .product-card .product-card-title {
        font-size: 16px;
    }

    section.featured-products .product-card .product-card-price-from {
        font-size: 14px;
    }

    section.featured-products .product-card .currency-symbol {
        font-size: 13px;
    }

    section.featured-products .product-card .product-card-price-value {
        font-size: 16px;
    }
}