#pk_flex_content .flex_layout.content_assortiment {
    background: #59332A;
    color: #FDFBEF;
    padding-inline: 0;
    max-width: 100%;
    margin-inline: 0;
}

#pk_flex_content .flex_layout.content_assortiment .flex_layout_wrapper {
    max-width: var(--site-grid);
    margin-inline: auto;
    padding-inline: 40px;
}

.flex_layout.content_assortiment .heading {
    color: #FDFBEF;
}

#pk_flex_content .flex_layout.content_assortiment .line {
    background: #FDFBEF;
}

.flex_layout.content_assortiment .assortiment_top_content_wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;

}

.flex_layout.content_assortiment .assortiment_top_content_wrapper .top_content {
    max-width: 666px;
    width: fit-content;
}

.flex_layout.content_assortiment .assortiment_top_content_wrapper .top_content .tekst p {
    margin-bottom: 0;
}

#pk_flex_content .flex_layout.content_assortiment .assortiment_top_content_wrapper .button span {
    background: #FDFBEF;
    color: #59332A;
}

.flex_layout.content_assortiment .products {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
}

.flex_layout.content_assortiment .products .selector {
    grid-column: 1 / span 6;
    margin-right: 30px;
}

.flex_layout.content_assortiment .products .detail {
    grid-column-end: span 6;
    margin-left: 30px;
    background-color: #9B8379;
    padding: 34px;
}

.flex_layout.content_assortiment .flex_container.reverse_order .products .selector {
    grid-column: 7 / span 6;
    order: 2;
    margin-right: 0;
    margin-left: 30px;
}

.flex_layout.content_assortiment .flex_container.reverse_order .products .detail {
    grid-column: 1 / span 6;
    margin-left: 0;
    margin-right: 30px;
}

.flex_layout.content_assortiment .product_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flex_layout.content_assortiment .product_list a {
    display: grid;
    grid-template-areas: "text icon";
    grid-template-columns: auto min-content;
    align-items: center;
    border: 1px solid #9B8379;
    padding: 22px;
    border-radius: 10px;
    background-color: transparent;
    transition: background-color 180ms ease-in-out;
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.96px;
}

.flex_layout.content_assortiment .product_list a:is(:hover, :active, :focus) {
    background-color: #9B8379
}

.flex_layout.content_assortiment .product_list a,
.flex_layout.content_assortiment .product_list a:is(:hover, :active, :focus) {
    text-decoration: none;
    color: #FDFBEF;
}

.flex_layout.content_assortiment .product_list a::after {
    content: '';
    grid-area: icon;
    place-self: center;

    transition: background-color 180ms ease-in-out, transform 180ms ease-in-out;
}

.flex_layout.content_assortiment .product_list a::after {
    width: 1rem;
    aspect-ratio: 1;
    background-color: currentColor;
    mask: url(/wp-content/uploads/2025/10/arrow.svg) no-repeat center / contain;
    -webkit-mask: url(/wp-content/uploads/2025/10/arrow.svg) no-repeat center / contain;
}

.flex_layout.content_assortiment .product_list a:is(:hover, :active, :focus)::after {
    transform: translateX(5px);
}

.flex_layout.content_assortiment .swiper.content_assortiment {
    height: 100%;
}

.flex_layout.content_assortiment .swiper.content_assortiment .swiper-slide .slide_inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.flex_layout.content_assortiment .swiper.content_assortiment .swiper-slide img {
    height: 360px;
    width: 100%;
    object-fit: cover;
}

.flex_layout.content_assortiment .swiper.content_assortiment .swiper-slide .slide_inner:not(:has(.heading)) img {
    height: 100%;
}

#pk_flex_content .flex_layout.content_assortiment .swiper.content_assortiment .swiper-slide .heading {
    margin-bottom: 0;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.12px;
}

.flex_layout.content_assortiment .swiper.content_assortiment .line {
    height: 1px;
    width: 100%;
    background: #BBABA0;
}

.flex_layout.content_assortiment .swiper.content_assortiment .swiper-slide p {
    margin-bottom: 0;
}


/* green */
#pk_flex_content .flex_layout.content_assortiment:has(.flex_container.green_background) {
    background: #363C2E;
}

.flex_layout.content_assortiment .flex_container.green_background .product_list a {
    border-color: #7A826A;
    color: #E3E3D4;
}

.flex_layout.content_assortiment .flex_container.green_background .product_list a:hover {
    background: #7A826A;
}

.flex_layout.content_assortiment .flex_container.green_background .products .detail {
    background: #7A826A;
}

#pk_flex_content .flex_layout.content_assortiment .flex_container.green_background .swiper.content_assortiment .swiper-slide .heading {
    color: #E3E3D4;
}

#pk_flex_content .flex_layout.content_assortiment .flex_container.green_background .line {
    background: #C9CBBA;
}

.flex_layout.content_assortiment .flex_container.green_background .swiper.content_assortiment .swiper-slide p {
    color: #E3E3D4;
}

#pk_flex_content .flex_layout.content_assortiment .flex_container.green_background .assortiment_top_content_wrapper .button span {
    color: #363C2E;
}

@media only screen and (max-width: 1200px) {
    .flex_layout.content_assortiment .products .selector {
        margin-right: 10px;
    }

    .flex_layout.content_assortiment .products .detail {
        margin-left: 10px;
    }
}

@media only screen and (max-width: 992px) {
    .flex_layout.content_assortiment .products {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .flex_layout.content_assortiment .products .selector,
    .flex_layout.content_assortiment .products .detail {
        grid-column: 1/-1;
    }

    .flex_layout.content_assortiment .flex_container.reverse_order .products .selector {
        order: 0;
        margin-right: 0;
        margin-left: 0;
        grid-column: 1/-1;
    }

    .flex_layout.content_assortiment .flex_container.reverse_order .products .detail {
        margin-right: 0;
        margin-left: 0;
        grid-column: 1/-1;
    }


    .flex_layout.content_assortiment .products .detail {
        margin-left: 0;
        margin-top: 40px;
    }

    .flex_layout.content_assortiment .products .selector {
        margin-right: 0;
    }

    .flex_layout.content_assortiment .products .detail {
        padding: 20px;
    }

    .flex_layout.content_assortiment .swiper.content_assortiment .swiper-slide img {
        height: 300px;
        margin-bottom: 8px;
    }

    .flex_layout.content_assortiment .swiper.content_assortiment .line {
        margin-block: 8px;
    }
}

@media screen and (max-width: 767px) {
    #pk_flex_content .flex_layout.content_assortiment .flex_layout_wrapper {
        padding-inline: 20px;
    }
}