.pix-wrapper-bande-produits {
    position: relative;

    padding: 0 70px clamp(80px, 9.5vw, 180px);
}

.pix-wrapper-bande-produits::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: calc(clamp(100px, 14vw, 270px) * -0.15);
    width: clamp(100px, 14vw, 270px);
    aspect-ratio: 270/305;
    background: url('i/mascotte-fond-clair.svg') no-repeat bottom right;
    background-size: contain;
    z-index: 10;
    pointer-events: none;
}

.pix-wrapper-bande-produits h2 {
    text-align: center;
    margin: 0;
    margin-bottom: 40px;
}

.pix-swiper-produits {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    mask-image: radial-gradient(
    circle at bottom -40px right 0,
    transparent 0 clamp(80px, 12vw, 180px),
    black calc(clamp(80px, 12vw, 180px) + 1px)
  );
}
.pix-swiper-produits .swiper-slide {
    height: auto;
}


.pix-wrapper-product-category-card {
    position: relative;
    font-size: clamp(12px, 1.3vw, 20px);

    container-type: inline-size;
}


.pix-product-category-content {
    position: absolute;
    inset: 0;
}

.pix-product-category-content-inner {
    position: relative;
    z-index: 1;
    
    display: flex;
    flex-direction: row;
    padding: 1.5em;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 1em;
    width: 100%;
    height: 100%;

    outline: 0px solid var(--pix-color-background);
    outline-offset: 0;
    
    transition: outline 0.2s ease, outline-offset 0.2s ease;
}

.pix-product-category-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, color-mix(in srgb, var(--pix-color-background) 0%, transparent), var(--pix-color-primary) 80%);
    opacity: 0.8;
    z-index: 0;

    transition: opacity 0.2s ease;
}


.pix-product-category-content img {
    width: 4.25em;
    height: auto;
}

.pix-product-category-content h3 {
    font-family: "Boizenburg", sans-serif;
    color: var(--pix-color-background);
    text-transform: uppercase;
    font-size: 2.5em;
    font-weight: 400;
    margin: 0;
}


.pix-product-category-thumbnail img {
    vertical-align: top;
}


.pix-product-category-card:hover .pix-product-category-content-inner {
    outline: 4px solid var(--pix-color-background);
    outline-offset: -12px;
}
.pix-product-category-card:hover .pix-product-category-content::before {
    opacity: 1;
}





@media (max-width: 1650px) {
    .pix-wrapper-bande-produits {
        padding-inline: 40px;
    }
}
@media (max-width: 1100px) {
    .pix-wrapper-bande-produits {
        padding-inline: 40px;
    }
}
@media (max-width: 820px) {
    .pix-wrapper-bande-produits {
        padding-inline: 20px;
    }
}

@container (max-width: 400px) {
    .pix-product-category-content-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 0.2em;
    }
    .pix-product-category-content img {
        width: 3.5em;
    }
}