
/* HOMEPAGE - SHOP THE LOOK */
.home-shop-the-look {
    overflow: clip;
}

.home-shop-the-look .inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% 50%; 
    grid-template-columns: repeat(2, 1fr);
}

.home-shop-the-look .image-wrap {
    position: relative;
}

.home-shop-the-look .image-wrap .banner-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    max-height: 950px;
}

.home-shop-the-look .title-wrap {
    position: absolute;
    top: var(--block_spacing);
    left: calc(var(--block_spacing) + 7.5%);
    z-index: 5;
}

.home-shop-the-look .title-wrap .title {
    font-size: 42px;
    font-weight: 800;
}

.home-shop-the-look .title-wrap .title span {
    position: absolute;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-transform: translate(-40%, -100%);
        -ms-transform: translate(-40%, -100%);
            transform: translate(-40%, -100%);
}

.home-shop-the-look .shop-the-look__products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;

    padding: var(--block_spacing) var(--block_spacing) calc( var(--block_spacing) / 2) 0;
}

.shop-the-look__products .list-product.sort-even .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
.shop-the-look__products .list-product.sort-1 {
	-webkit-box-ordinal-group: 2;
	    -ms-flex-order: 1;
	        order: 1;
}
.shop-the-look__products .list-product.sort-2 {
	-webkit-box-ordinal-group: 3;
	    -ms-flex-order: 2;
	        order: 2;
}
.shop-the-look__products .list-product.sort-3 {
	-webkit-box-ordinal-group: 4;
	    -ms-flex-order: 3;
	        order: 3;
}
.shop-the-look__products .list-product.sort-4 {
	-webkit-box-ordinal-group: 5;
	    -ms-flex-order: 4;
	        order: 4;
}

@media screen and (width < 992px) {
    .home-shop-the-look .inner {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .home-shop-the-look .title {
        max-width: 750px;
        width: 100%;
    }

    .home-shop-the-look .image-wrap .title {
        padding: var(--block_spacing);
    }
}

@media screen and (width < 1200px) {
    .home-shop-the-look .title-wrap {
        left: var(--block_spacing);
    }

    .home-shop-the-look .image-wrap .title {
        text-wrap: wrap;
        max-width: 500px;
    }

    .home-shop-the-look .image-wrap .title span {
        position: initial;
        -webkit-transform: unset;
            -ms-transform: unset;
                transform: unset;
    }
}

@media screen and (width < 992px) {
    .home-shop-the-look .title-wrap .title {
        max-width: 750px;
    }
}