.product-shelf {
    padding: 48px 120px;
}

.product-shelf__container {
    margin: 0 auto;
}

.product-shelf__header {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    justify-content: center;
}

.product-shelf__title {
    font-weight: 500;
    font-size: var(--font-size-40);
    color: var(--color-9);
    margin: 0;
}

.product-shelf__more {
    font-weight: 500;
    font-size: 20px;
    color: rgba(23, 47, 187, 0.7);
    margin-left: auto;
	padding:4px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.product-shelf__title-only {
    font-weight: 400;
    font-size: var(--font-size-24);
    color: var(--color-9);
    padding: 0 16px;
    margin: 0;
    margin-top: -16px;
    margin-bottom: 32px;
    text-align: center;
}

.product-shelf__slider {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.product-shelf__slider-left, .product-shelf__slider-right {
    position: absolute;
    width: 32px;
    height: 32px;
    stroke: #434042;
    z-index: 3;
    border: none;
    background: var(--color-2);
    /*border-radius: 999px;*/
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    transition: 0.15s ease opacity,  0.15s ease background-color;
    margin-bottom: 100px;
}

.product-shelf__slider-left:hover, .product-shelf__slider-right:hover {
    background: var(--color-primary);
}

.product-shelf__slider-left_not-active, .product-shelf__slider-right_not-active {
    opacity: 0;
    pointer-events: none;
}

.product-shelf__slider-left svg, .product-shelf__slider-right svg {
    position: absolute;
    transition: 0.15s ease stroke;
}

.product-shelf__slider-left:hover svg, .product-shelf__slider-right:hover svg {
    position: absolute;
    stroke: white !important;
    transition: 0.15s ease stroke;
}

.product-shelf__slider-left{
    left: 1px;
}

.product-shelf__slider-right {
    align-self: end;
    right: 1px;
}

.product-shelf__slider-swiper {
    max-width: 100%;
    width: 100%;
}

.product-shelf__slider-swiper .swiper-wrapper {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-shelf__slider-swiper .swiper-slide {
    height: auto !important;
}

.product-shelf__slider-navigation {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 5px;
position: static;
}

.product-shelf .swiper-pagination-bullet {
    background-color: var(--color-3);
    border-radius: 999px;
    width: 14px;
    height: 14px;
    transition: 0.15s ease background-color;
    opacity: 1;
    margin: 0 !important;
    padding: 0;
}

.product-shelf .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    padding: 0;
}

@media screen and (max-width: 1200px){
    .product-shelf {
        padding-bottom: 40px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .product-shelf__slider-left{
        display: none;
    }

    .product-shelf__slider-right {
        display: none;
    }

    .product-shelf__header {
        margin-bottom: 16px;
    }

    .product-shelf__title-only {
        font-weight: 500;
        font-size: var(--font-size-32);
        color: var(--color-9);
        margin-top: 31px;
        margin-bottom: 56px;
    }
}

@media screen and (max-width: 700px){
    .product-shelf {
        padding: 24px 0;
    }

    .product-shelf__header {
        padding: 0 24px;
    }

    .product-shelf__slider {
        overflow: hidden;
    }

    .product-shelf__slider-swiper {
        max-width: 288px;
        overflow: visible !important;
    }
}

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

    .product-shelf__header {
        margin-bottom: 20px;
        padding: 0 16px;
    }

    .product-shelf__title {
        font-size: var(--font-size-20);
    }

    .product-shelf__slider-swiper {
        max-width: 240px;
        overflow: visible !important;
    }

    .product-shelf__title-only {
        font-size: var(--font-size-20);
        margin-top: 0;
        margin-bottom: 32px;
    }

    .product-shelf .swiper-pagination-bullet:nth-child(n+12) {
        display: none;
    }
}