/* BREAKPOINT */
/* bloc-collections-slider-filtre */
.collections-slider-filtre {
    background-color: var(--light-orange);
    padding: 40px 0 11px 0;
}

.collections-slider-filtre.white {
    background-color: var(--white);
}

@media screen and (min-width: 768px) {
    .collections-slider-filtre {
        padding: 120px 0 80px 0;
    }
}

@media screen and (min-width: 768px) {
    .collections-slider-filtre .collections-slider-filtre--container {
        position: relative;
    }
}

.collections-slider-filtre .collections-slider-filtre-header {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media screen and (min-width: 768px) {
    .collections-slider-filtre .collections-slider-filtre-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

@media screen and (min-width: 1281px) {
    .collections-slider-filtre .collections-slider-filtre-header {
        padding: 0 80px;
    }
}

.collections-slider-filtre .collections-slider-filtre-header .container-title {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.collections-slider-filtre .collections-slider-filtre-header .container-title .uptitle {
    letter-spacing: 1.4px;
}

@media screen and (min-width: 768px) {
    .collections-slider-filtre .collections-slider-filtre-header .container-title {
        margin: 0;
        max-width: 600px;
        width: 100%;
    }

    .collections-slider-filtre .collections-slider-filtre-header .container-title .uptitle {
        margin-top: 12px;
    }

    .collections-slider-filtre .collections-slider-filtre-header .container-title h2 {
        max-width: 468px;
    }
}

.collections-slider-filtre .collections-slider-filtre-header p {
    max-width: 600px;
    width: 100%;
}

.collections-slider-filtre .collections-slider-filtre-button {
    margin-top: 32px;
    margin-bottom: 40px;
    padding: 0 0 0 16px;
}

@media screen and (min-width: 1025px) {
    .collections-slider-filtre .collections-slider-filtre-button {
        margin-top: 80px;
        margin-bottom: 56px;
        display: flex;
        gap: 32px;
    }
}

@media screen and (min-width: 1281px) {
    .collections-slider-filtre .collections-slider-filtre-button {
        padding: 0 0 0 80px;
    }
}

.collections-slider-filtre .collections-slider-filtre-button .btn-filtre {
    border-radius: 48px;
    border: 1px dashed var(--orange);
    background-color: var(--white);
    padding: 8px 16px;
    transition: background-color 0.3s ease-in-out;
}

.collections-slider-filtre .collections-slider-filtre-button .btn-filtre.active {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--orange);
}

.collections-slider-filtre .collections-slider-filtre-button .btn-filtre.active::before {
    content: "";
    mask: url(../images/icon/close.svg) no-repeat center;
    -webkit-mask: url(../images/icon/close.svg) no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
    background-color: var(--black);
    width: 16px;
    height: 16px;
}

.collections-slider-filtre .collections-slider-filtre-button .btn-filtre:hover {
    background-color: var(--orange);
}

.collections-slider-filtre .collections-slider-filtre-items {
    margin-top: 40px;
}

.collections-slider-filtre .collections-slider-filtre-items .card-product a {
    width: 100%;
    max-width: unset;
    height: 420px;
}

.collections-slider-filtre .collections-slider-filtre-items .card-product a::after {
    content: none;
}

@media screen and (min-width: 768px) {
    .collections-slider-filtre .collections-slider-filtre-items .card-product a {
        height: 549px;
    }
}

.collections-slider-filtre .collections-slider-filtre-items .card-product a:hover .img-container img {
    opacity: 1;
}

@media screen and (min-width: 768px) {
    .collections-slider-filtre .collections-slider-filtre-items .card-product a:hover .img-container::after {
        content: none;
    }

    .collections-slider-filtre .collections-slider-filtre-items .card-product a:hover .img-container img:not(.hovered) {
        opacity: 0;
    }

    .collections-slider-filtre .collections-slider-filtre-items .card-product a:hover .product-infos .product-collection span {
        color: var(--orange);
    }
}

.collections-slider-filtre .collections-slider-filtre-items .card-product .img-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@media screen and (min-width: 768px) {
    .collections-slider-filtre .collections-slider-filtre-items .card-product .img-container {
        height: 453px;
    }

    .collections-slider-filtre .collections-slider-filtre-items .card-product .img-container::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: linear-gradient(360deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 1;
    }
}

.collections-slider-filtre .collections-slider-filtre-items .card-product .img-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.collections-slider-filtre .collections-slider-filtre-items .card-product .img-container img:nth-child(1) {
    opacity: 0;
}

@media screen and (min-width: 768px) {
    .collections-slider-filtre .collections-slider-filtre-items .card-product .img-container img:nth-child(1) {
        opacity: 1;
    }
}

.collections-slider-filtre .collections-slider-filtre-items .card-product .img-container img:nth-child(2) {
    /* object-fit: contain; */
    opacity: 1;
}

@media screen and (min-width: 768px) {
    .collections-slider-filtre .collections-slider-filtre-items .card-product .img-container img:nth-child(2) {
        opacity: 0;
    }
}

.collections-slider-filtre .collections-slider-filtre-items .card-product .product-infos-design {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .collections-slider-filtre .collections-slider-filtre-items .card-product .product-infos-design {
        top: 24px;
        padding-left: 24px;
    }
}

.collections-slider-filtre .collections-slider-filtre-items .card-product .product-infos-design p {
    color: var(--orange);
    font-size: 0.875rem;
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media screen and (min-width: 768px) {
    .collections-slider-filtre .collections-slider-filtre-items .card-product .product-infos-design p {
        color: var(--white);
        transition: all 0.3s ease-in-out;
    }
}

.collections-slider-filtre .collections-slider-filtre-items .card-product .product-infos-design p::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--darkgrey);
}

.collections-slider-filtre .collections-slider-filtre-items .card-product .product-infos-design .zoom {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px dashed var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

@media screen and (min-width: 768px) {
    .collections-slider-filtre .collections-slider-filtre-items .card-product .product-infos-design .zoom {
        opacity: 0;
        transition: all 0.3s ease-in-out;
    }
}

.collections-slider-filtre .collections-slider-filtre-items .card-product .product-infos-design .zoom::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    mask: url(../images/icon/zoom.svg) no-repeat center;
    -webkit-mask: url(../images/icon/zoom.svg) no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
    background-color: var(--orange);
}

.collections-slider-filtre .collections-slider-filtre-items .card-product:hover .product-infos-design .zoom {
    opacity: 1;
}

.collections-slider-filtre .collections-slider-filtre-items .card-product:hover .product-infos-design p {
    color: var(--orange);
}

.collections-slider-filtre .collections-slider-filtre-items .card-product .product-infos {
    z-index: 1;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    color: var(--black);
    padding: 0 24px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .collections-slider-filtre .collections-slider-filtre-items .card-product .product-infos {
        color: var(--white);
        transform: translateY(-106px);
        transition: all 0.3s ease-in-out;
    }

    .collections-slider-filtre .collections-slider-filtre-items .card-product .product-infos:hover {
        transform: translateY(0px);
        color: var(--black);
    }
}

.collections-slider-filtre .collections-slider-filtre-items .card-product .product-infos .product-style::after {
    content: none;
}

.collections-slider-filtre .collections-slider-filtre-items .card-product .product-infos .product-collection {
    flex-basis: unset;
    font-size: 2rem;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    display: flex;
    gap: 8px;
}

.collections-slider-filtre .collections-slider-filtre-items .card-product .product-infos .product-collection span {
    font-size: 13.333px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.667px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.collections-slider-filtre .collections-slider-filtre-items .card-product .product-infos .product-descriptif {
    display: none;
}

.collections-slider-filtre .collections-slider-filtre-nav {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

@media screen and (min-width: 1025px) {
    .collections-slider-filtre .collections-slider-filtre-nav {
        flex-direction: row-reverse;
        position: absolute;
        top: 253px;
        right: 80px;
        z-index: 1;
    }
}

.collections-slider-filtre .collections-slider-filtre-nav .collections-slider-filtre-controls {
    display: flex;
    gap: 48px;
    position: relative;
}

.collections-slider-filtre .collections-slider-filtre-nav .collections-slider-filtre-controls::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--orange);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.collections-slider-filtre .collections-slider-filtre-nav a {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 16.8px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.collections-slider-filtre .collections-slider-filtre-nav a::after {
    content: "";
    display: block;
    mask: url(../images/icon/right-long-arrow.svg) no-repeat center;
    -webkit-mask: url(../images/icon/right-long-arrow.svg) no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
    background-color: var(--orange);
    width: 16px;
    height: 16px;
}

.lity {
    background: rgba(0, 0, 0, 0.75)
}

.lity-content::after {
    box-shadow: none !important;
}

.lity-container {
    position: relative;
    background-color: transparent;
    max-width: 1280px;
    padding: 0 16px;
}

@media screen and (min-width: 1024px) {
    .lity-container {
        padding: 0;
    }
}

.lity-container h2 {
    font-family: "Silka", sans-serif;
    font-size: 2rem;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 3.2px;
    text-transform: uppercase;
}

.lity-container h2,
.lity-container p {
    color: white;
}

.lity-content div {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

@media screen and (min-width: 1024px) {
    .lity-content div {
        flex-direction: row;
        gap: 48px;
        margin-top: 40px;
    }
}

.lity-content img {
    height: 250px;
    max-height: 650px !important;
    width: 100%;
    object-fit: cover;
}

@media screen and (min-width: 400px) {
    .lity-content img {
        height: 400px;
    }
}

@media screen and (min-width: 1024px) {
    .lity-content img {
        height: 100%;
    }
}

.lity-close {
    position: absolute;
    right: 8px;
    top: -80px;
    border-radius: 100px;
    border: 2px solid var(--branding-orange, #F39655);
    padding: 16px;
    display: flex;
    height: 56px;
    width: 56px;
    align-items: center;
    text-shadow: none;
}

@media screen and (min-width: 1024px) {
    .lity-close {
        top: 16px;
        right: 16px;
        color: black;
    }
}

.lity-close::before {
    content: "FERMER";
    color: white;
    font-family: Silka;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    position: absolute;
    left: calc(-32px - 100%);
}

@media screen and (min-width: 1024px) {
    .lity-close::before {
        color: var(--neutrals-black, #1B1B1B);
    }
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
    border-radius: 100px;
    border: 2px solid var(--branding-orange, #F39655);
    padding: 16px;
    top: -80px;
    text-shadow: none;
}

@media screen and (min-width: 1024px) {

    .lity-close:hover,
    .lity-close:focus,
    .lity-close:active,
    .lity-close:visited {
        top: 16px;
        right: 16px;
        color: black;
    }
}


/* // bloc-collections-slider-filtre */