#home-page  {
    background-color: white;
}h1.line,
h2.line {
    color: #7a7a7a;
    text-transform: uppercase;
    font-size: 1.3rem;
    text-align: center;
    padding: 2.5rem 0.5rem 1.0rem 0.5rem;
}
h1.line hr,
h2.line hr {
    display: none;
}

@media (min-width: 768px) {
    h1.line,
    h2.line {
        display: flex;
        text-align: left;
        font-size: 1.5rem;
        white-space: nowrap;
    }
    h1.line hr,
    h2.line hr {
        display: inline-block;
        border: none;
        border-bottom: 1px solid #7a7a7a;
        width: 100%;
        margin-left: 1.5rem;
    }
}
#streaming {
    width: 100%;
    height: auto;
    /* height: calc(var(--vw100) / 1.778); */
}#streaming-cover {
    --media-width: var(--vw100);
    /* --media-height: calc(var(--vw100) / 1.778); */
    --title-font-size: 1.3rem;
    --title-v-padding: 0.7rem;
    --title-height: 2.7rem;  /* --title-font-size + (2 * --title-v-padding) */
    position: relative;
}
#streaming-cover video {
    display: block;
    background: black;
    /* width: var(--media-width); */
    /* height: var(--media-height); */
    margin: 0 auto;
}

#streaming-cover .title {
    position: absolute;
    text-align: center;
    display: inline-block;
    color: white;
    background-color: rgba(0,0,0, 0.2);
    text-shadow: 1px 1px rgba(0,0,0, 0.5);
    padding: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    height: var(--title-height);
    line-height: var(--title-font-size);
    font-size: var(--title-font-size);
    font-weight: 700;
    border-radius: 0.2rem;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    padding: var(--title-v-padding) 0.2rem;
}

#streaming-cover .subtitle {
    display: inline-block;
    width: 100%;
    background-color: black;
    text-shadow: 1px 1px rgba(0,0,0, 0.5);
    color: white;
    text-transform: uppercase;
    padding: var(--title-v-padding) 0.2rem;
    font-size: 1.2rem;
    text-align: center;
}
#streaming-cover .text {
    display: inline-block;
    text-align: justify;
    padding: 0.75rem;
}
#streaming-cover .button {
    margin-left: 0.75rem;
    height: 2.5rem;
    line-height: 2.5rem;
}


@media (min-width: 930px) {
    #streaming-cover .title {
        margin-top: 5vw;
        margin-left: 5vw;
        width: auto;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    #streaming-cover .details {
        position: absolute;
        top: 0;
        /* height: var(--media-height); */
        overflow: hidden;
        left: 5vw;
        width: 450px;
    }
    #streaming-cover .details .subtitle {
        margin-top: calc(5vw + var(--title-height) + 1rem);
        background-color: inherit;
        color: white;
        text-align: left;
        font-size: 2rem;
        margin-left: 0.75rem;
    }
    #streaming-cover .details .text {
        background-color: rgba(0,0,0,0.2);
        color: white;
        border-radius: 0.2rem;
    }
    #streaming-cover .button {
        margin-top: 1rem;
    }

}
.gridads {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 30rem 30rem 30rem 30rem 30rem 30rem;
    grid-template-areas: 
        "a"
        "b"
        "c"
        "d"
        "e"
        "f";
    margin: 1rem 0.5rem;
    justify-content: space-around;
    align-items: stretch;
    align-content: stretch;
    gap: 0.5rem;
    padding: 0;
}

@media (min-width: 768px) {
    .gridads {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: 30rem 30rem;
        grid-template-areas: 
        "a a b c"
        "d e f f";
    }
}


.gridads li {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    border-radius: 0.2rem;

    position: relative;
    list-style-type: none;
    border: 1px solid black;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
    padding: 0.5rem;
    background-color: black;
    color: white;
    text-shadow: 1px 1px rgba(0,0,0,0.5);
    overflow: hidden;
    min-height: 20rem;
}


.gridads li:nth-child(1) {
    grid-area: a;
}
.gridads li:nth-child(2) {
    grid-area: b;
}
.gridads li:nth-child(3) {
    grid-area: c;
}
.gridads li:nth-child(4) {
    grid-area: d;
}
.gridads li:nth-child(5) {
    grid-area: e;
}
.gridads li:nth-child(6) {
    grid-area: f;
}


.gridads li .text {
    width: 100%;
}

.gridads li .button {
    text-shadow: none;
}
.gridads li * {
    z-index: 1;
}
.gridads li .background {
    z-index: 0;
    opacity: 0.4;
    transform: scale(1);
    transition: ease all 0.5s;
    height: 100%;

}
.gridads li:hover .background {
    transform: scale(1.2);
    opacity: 0.6;
}

section.sample {
    color: white;
    margin: 1rem 0 1.5rem 0;
    --color-before: #727272;
    --color-after: var(--primary-bg-color);
}
section.sample .presentation {
    order: 1;
    position: relative;
    flex-shrink: 0;
    background-color: var(--color-before);
    border-radius: 0.2rem;
    padding: 1rem;
    margin: 0.5rem;
}
@media (min-width: 768px) {

    section.sample {
        display: flex;
        margin: 1rem 0.5rem 1.5rem 0.5rem;
    }

    section.sample .presentation {
        width: var(--card-width);
        min-height: 435px;
        margin: 0rem;
    }
}

section.sample .presentation.after {
    order: 3;
    background-color: var(--color-after);
}
section.sample .presentation {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
section.sample .presentation .title {
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    font-weight: normal;
    padding: 0 0 1rem 0;
}
section.sample .presentation .subtitle {
    text-align: center;
    font-size: 1.5rem;
    font-weight: normal;
    margin: 0;
    padding: 0;
}
section.sample .presentation .text {
    letter-spacing: 0.1rem;
    font-size: 0.9rem;
}
section.sample .presentation .icon {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    text-align: center;
    border-radius: 50%;
    background-color: white;
    margin-bottom: 2.75rem;
}
section.sample .presentation .icon i {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.5rem;
    background-color: var(--color-before);
}
section.sample .presentation.after .icon i {
    background-color: var(--color-after);
}
section.sample .presentation .link {
    position: absolute;
    bottom: 1rem;
    color: inherit;
    border: 1px solid white;
    border-radius: 0.2rem;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.9rem;
}
section.sample .presentation .link:hover {
    background-color: white;
    color: #444;
}

section.sample .cards {
    display: flex;
    flex-wrap: wrap;
    order: 2;
    padding: 0;
    margin-top: 1rem;
    justify-content: space-around;
    scrollbar-width: none;
}
section.sample .cards:hover {
    scrollbar-width: thin;
}
section.sample .cards::-webkit-scrollbar {
    height: 6px;
}
section.sample .cards::-webkit-scrollbar-thumb {
    background: white;
}
section.sample .cards:hover::-webkit-scrollbar-thumb {
    background: #e0e0e0;
}
section.sample .cards::-webkit-scrollbar-track {
    background: white;
}
section.sample .cards article.card a {
    box-shadow: none !important;
}
@media (min-width: 768px) {
    section.sample .cards {
        display: inline-block;
        white-space: nowrap;
        overflow-x: scroll;
        padding: 0 0.5rem;
    }
        
}
:root {
    --card-article: 250px;
    --card-width: min(var(--card-article), max(var(--vw50), 160px));
    --card-img: 240px;
    --card-grid-gap-mobile: 0px 0px;
    --card-grid-gap-desktop: 8px 8px;
    --card-borders: 2px;
    --card-max_variants: 8px;
    --card-variant: 30px;
    --card-a: 242px;
    --card-article: 250px;
    --card-space: 0px; /* 4px */
}
:root {
    --fr-new: "nouveau";
    --en-new: "new";
    --es-new: "nuevo";
    --it-new: "nuovo";
    --de-new: "neu";

    --fr-wished: "coup de ♥";
    --en-wished: "crush ♥";
    --es-wished: "flechazo ♥";
    --it-wished: "colpo di ♥";
    --de-wished: "Schwarm ♥";

    --fr-visited: "déjà vu";
    --en-visited: "seen";
    --es-visited: "visto";
    --it-visited: "visto";
    --de-visited: "gesehen";

    --fr-first-price: "à partir de";
    --en-first-price: "from";
    --es-first-price: "desde";
    --it-first-price: "da";
    --de-first-price: "Ab";

    --fr-until: "jusqu'à";
    --en-until: "until";
    --es-until: "hasta";
    --it-until: "fino a";
    --de-until: "bis";

    --fr-text-no-price: "en savoir plus";
    --en-text-no-price: "read more";
    --es-text-no-price: "saber más";
    --it-text-no-price: "saperne di più";
    --de-text-no-price: "Lern mehr";
}



/* Opacity animation */
@keyframes opacify {
  0% { opacity: 1;  }
  100% { opacity: 0; }
}

/* <article> : Invisible part, include gap between cards, and permit to sticker label to be inside a controlled element */
article.card {
    position: relative;
    display: inline-block;
    width: var(--card-width);
}

/* Hide articles not matching the refine search */
article.card.unmatch,
article.card.unmatch-title {
    display: none;
}


/* <button> Wishlist icon */
article.card > .i.heart {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    z-index: 2;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--primary-bg-color);

    padding: 1.5rem; /* 48x48px */
    mask-size: 50%;
    mask-repeat: no-repeat;
    mask-position: top right;
}

/* <a> : The visual card, with borders */
article.card a {
    display: inline-block;
    /* width: calc(var(--card-width) - var(--card-gap)); */
    width: var(--card-width);
    text-decoration: none;
    color: var(--color);
    margin: var(--card-space);
    border: 1px solid transparent;
    background-color: white;
}
@media (min-width: 480px) {
    article.card a {
        box-shadow: 0 5px 5px rgba(0,0,0,.1);
    }
}
article.card a:hover {
    border-color: var(--border-hover-color);
}

/* limited time offer */
article.card.lto s:before {
    content: "⏱";
    color: #E00;
    display: inline-block;
    font-weight: bold;
    font-size: 0.8rem;
    padding-right: 0.5rem;
    transform: scale(1.3);
}

/* <q> : Possible reduction, partially shifted outside the <a> but still inside the <article> */
article.card:not(.q) q,
article.card q::before, 
article.card q::after {
    display: none;
}
article.card.q q {
    display: inline-block;
    position: absolute;
    background-color: var(--primary-bg-color);
    color: var(--primary-color);
    padding: 0.1rem 0.5rem;
    /* margin: calc(var(--card-gap) / -2) 0 0 calc(var(--card-gap) / -2); */
    margin: 0;
    font-weight: bold;
    font-size: 0.8rem;
    z-index: 2;
}

/* <q> Include the « until » label if case of multiple reductions */
article.card.m.q q::before {
    display: inline-block;
    height: 1rem;
    width: auto;
    padding-right: 0.3rem;
}
html.fr article.card.m.q q::before { content: var(--fr-until); }
html.en article.card.m.q q::before { content: var(--en-until); }
html.es article.card.m.q q::before { content: var(--es-until); }
html.it article.card.m.q q::before { content: var(--it-until); }
html.de article.card.m.q q::before { content: var(--de-until); }



/* <i> Container of images, same dimension than an image */
article.card a i {
    position: relative;
    display: block;
    margin-top: 5px;
}
article.card a i,
article.card a i img {
    width: calc(var(--card-width) - var(--card-borders));
    height: calc(var(--card-width) - var(--card-borders));
}

/* <img> Always show only one image, there is variants images and each could have a 2nd image to show on mouse over */
article.card a i img { 
    display: none;
    background-color: white;
    opacity: 1;
}

/* Variant <img> The visual variants are injected at search time only and show by setting <article data-v="X"> */
article.card a i img.hover { position: absolute; top: 0; z-index: 0; }
article.card[data-v="0"] a i img.v0,
article.card[data-v="1"] a i img.v1,
article.card[data-v="2"] a i img.v2,
article.card[data-v="3"] a i img.v3,
article.card[data-v="4"] a i img.v4,
article.card[data-v="5"] a i img.v5,
article.card[data-v="6"] a i img.v6,
article.card[data-v="7"] a i img.v7,
article.card[data-v="8"] a i img.v8 { display: block; }
article.card a i img:not(.hover) {
    position: absolute;
    top: 0;
    z-index: 1;
}

/* Variant <img> when the mouse over one of the preview variants */
article.card[data-v][data-vm] a i img { display: none; }
article.card[data-v][data-vm="0"] a i img.v0,
article.card[data-v][data-vm="1"] a i img.v1,
article.card[data-v][data-vm="2"] a i img.v2,
article.card[data-v][data-vm="3"] a i img.v3,
article.card[data-v][data-vm="4"] a i img.v4,
article.card[data-v][data-vm="5"] a i img.v5,
article.card[data-v][data-vm="6"] a i img.v6,
article.card[data-v][data-vm="7"] a i img.v7,
article.card[data-v][data-vm="8"] a i img.v8 { display: block; }


/* Mouse over permit to show a 2nd photo of the selected variant */ 
article.card:hover a i img:not(.hover) {
    animation-duration: 1.5s;
    animation-iteration-count: 2;
    animation-direction: alternate;
    animation-name: opacify;
}
article.card:hover a i img:not(.hover):not(.v0) {
    animation-delay: 1s;
}

/* <u> Variants list, always fixed the the same height, whatever the viewport size, could show until 8 variants photos */
article.card u {
    display: inline-block;
    height: var(--card-variant);
    width: 100%;
    margin: 3px 0;
    overflow: hidden;
}
article.card u img {
    width: var(--card-variant);
    height: var(--card-variant);
}

/* <u> Variants list, hide the current main variant photo */
article.card[data-v="0"] u img.v0,
article.card[data-v="1"] u img.v1,
article.card[data-v="2"] u img.v2,
article.card[data-v="3"] u img.v3,
article.card[data-v="4"] u img.v4,
article.card[data-v="5"] u img.v5,
article.card[data-v="6"] u img.v6,
article.card[data-v="7"] u img.v7,
article.card[data-v="8"] u img.v8 { display: none; }

/* <em> Title of the article, fixed to 3 lines of text */ 
article.card em {
    display: block;
    overflow: hidden;
    height: 4.15rem;
    font-size: 0.85rem;
    font-weight: normal;
    text-align: center;
    padding: 1rem 0 0 0;
    padding: 0;
    margin: 0 5px 0 5px;
    white-space: normal;
}

/* <em> Label « new » / « seen » / « visited » before the title if the article is new */
article.card.n em::before,
article.card.wish em::before,
article.card.visited em::before {
    display: inline-block;
    height: 1rem;
    width: auto;
    color: var(--primary-bg-color);
    font-weight: bold;
    padding: 0 0.25rem;
    font-style: normal;
    font-size: 0.75rem;
    white-space: nowrap;
    text-transform: uppercase;
}

html.fr article.card.n em::before { content: var(--fr-new); }
html.en article.card.n em::before { content: var(--en-new); }
html.es article.card.n em::before { content: var(--es-new); }
html.it article.card.n em::before { content: var(--it-new); }
html.de article.card.n em::before { content: var(--de-new); }

html.fr article.card.wished em::before { content: var(--fr-wished); }
html.en article.card.wished em::before { content: var(--en-wished); }
html.es article.card.wished em::before { content: var(--es-wished); }
html.it article.card.wished em::before { content: var(--it-wished); }
html.de article.card.wished em::before { content: var(--de-wished); }

html.fr article.card.visited em::before { content: var(--fr-visited); }
html.en article.card.visited em::before { content: var(--en-visited); }
html.es article.card.visited em::before { content: var(--es-visited); }
html.it article.card.visited em::before { content: var(--it-visited); }
html.de article.card.visited em::before { content: var(--de-visited); }


/* <b> Price of the article, include the possible striked price */
article.card b {
    display: inline-block;
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 0;
    bottom: 0.25rem;
    font-size: 0.9rem;
    white-space: nowrap;
    font-weight: bold;
    white-space: nowrap;
}

/* <b> Price label « from » in case of multiple variant prices */ 
article.card b::before {
    display: block;
    font-size: 0.8rem;
    height: 1rem;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}
html.fr article.card b::before { content: var(--fr-first-price); }
html.en article.card b::before { content: var(--en-first-price); }
html.es article.card b::before { content: var(--es-first-price); }
html.it article.card b::before { content: var(--it-first-price); }
html.de article.card b::before { content: var(--de-first-price); }

article.card:not(.m) b::before {
    visibility: hidden;
}

/* <b> Premium text for no price */ 
article.card.np b::before {
    display: block;
    font-size: 0.8rem;
    height: 1rem;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}
html.fr article.card.np b::before { content: var(--fr-text-no-price); }
html.en article.card.np b::before { content: var(--en-text-no-price); }
html.es article.card.np b::before { content: var(--es-text-no-price); }
html.it article.card.np b::before { content: var(--it-text-no-price); }
html.de article.card.np b::before { content: var(--de-text-no-price); }


/* <p> Space under the price for sticker text */
article.card p {
    display: block;
    height: 1rem;
    margin: 0;
    width: 100%;
    font-size: 0.8rem;
    text-align: center;
    font-style: italic;
    font-weight: bold;
}
article.card.st p {
    color: var(--primary-color);
    background-color: #000000;
}


/* <s> The striked price */
article.card s {
    font-size: 0.9rem;
    color: #737373;
    margin-left: 0.5rem;
}

/* <mark> The refined search */
article.card mark {
    background-color: var(--primary-bg-color);
    color: var(--primary-color);
}
.grid-pages {
    --grid-pages-height: 15rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, var(--grid-pages-height));
    grid-template-areas: 
        "a"
        "b"
        "c"
        "d"
        "e";
    margin: 1rem 0.5rem;
    justify-content: space-around;
    align-items: stretch;
    align-content: stretch;
    gap: 0.5rem;
    padding: 0;

}
.grid-pages article {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    background-color: black;
    color: white; 
    overflow: hidden;
    text-shadow: 1px 1px rgba(0,0,0, 0.2);
    border-radius: 0.2rem;
    text-align: center;
    align-content: center;
    justify-content: center;

}
.grid-pages article:nth-child(1) {
    grid-area: a;
}
.grid-pages article:nth-child(2) {
    grid-area: b;
}
.grid-pages article:nth-child(3) {
    grid-area: c;
}
.grid-pages article:nth-child(4) {
    grid-area: d;
}
.grid-pages article:nth-child(5) {
    grid-area: e;
}

.grid-pages article .title,
.grid-pages article .text,
.grid-pages article .button {
    z-index: 1;
    position: relative;
}

.grid-pages article .title {
    width: 100%;
}
.grid-pages article .text {
    width: 100%;
    padding: 0 1rem;
    text-align: left;
}
.grid-pages article .button {
    margin: 1rem 0;
    text-shadow: none;
}

.grid-pages article .background {
    z-index: 0 !important;
    opacity: 0.4;
    transform: scale(1);
    transition: ease all 0.5s;
    height: 100%;
}
.grid-pages article:hover .background {
    transform: scale(1.2);
    opacity: 0.6;
}

@media (min-width: 768px) {
    .grid-pages {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: repeat(2, var(--grid-pages-height));
        grid-template-areas: 
        "a b c"
        "a d e";
    }    
}
#brands {
    position: relative;
    margin: 0.5rem 0.5rem;
    min-height: 265px;
}
#brands .container {
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-scroll-behavior-duration: 0.5s;
    -webkit-scroll-behavior-timing-function: ease-in;
    scrollbar-width: none;
    --brand-width: 120px;
    --brand-gap: 5px;
}
#brands .container:hover {
    scrollbar-width: thin;
}
#brands .container::-webkit-scrollbar {
    height: 6px;
}
#brands .container::-webkit-scrollbar-track {
    background-color: white;
}
#brands .container::-webkit-scrollbar-thumb {
    background-color: white;
}
#brands .container:hover::-webkit-scrollbar-thumb {
    background-color: #e0e0e0;
}
#brands a {
    margin: 0 var(--brand-gap);
    color: white;
}
#brands a img {
    background-color: white;
    opacity: 0.6;
    transform: scale(1);
    transition: ease all 0.5s;
    color: white;
    border-radius: 0.2rem;
}
#brands a:hover img {
    transform: scale(1.1);
    opacity: 1;
}#main-reviews {
    height: 200px;
}