/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #fff;
    transition: 0.5s;
    box-shadow: 0 0 4px 1px rgba(0,0,0,0.6);
    z-index: 99;
}

header video {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    z-index: 0;
}
header div.logo {
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

header ul.socials {
    position: absolute;
    top: 0; 
    left: 0;
    z-index: 99;
    list-style: none;
    display: flex;
    width: auto;
    margin: 0;
    padding: 0;
}
header ul.socials a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    text-decoration: none;
}
header a.cart {
    position: absolute;
    top: 0; 
    right: 0;
    z-index: 99;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    text-decoration: none;
}

header video {
    display: none;
}
header div.logo svg {
    width: 100px;
    height: 100px;
    padding: 10px;
    transition: 0.5s;
    text-align: center;
}

header ul.socials a,
header a.cart {
    color: #000;
    transition: 0.5s;
}
header ul.socials a:hover,
header a.cart:hover {
    color: #5CA3A7;
    transition: 0.5s;
}

.st0{fill:none !important;stroke:#5CA3A7;stroke-miterlimit:10;transition:0.5s;}
.st1{fill:none;stroke:#5CA3A7;stroke-width:5.6693;stroke-miterlimit:10;transition:0.5s;}
.st2{fill:#5CA3A7;transition:0.5s;}
.st3{fill:#000;transition:0.5s;}

main, main.mini {
    margin: 100px 0 0;
    height: auto;
}

article {
    width: 100%;
    height: calc(100vh - 100px);
    display: block;
}
article div.images {
    width: 80%;
    width: 60%;
    height: 100%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

}
article div.images img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;

}
article div.desc {
    width: 40%;
    position: sticky;
    top: 100px;
    padding: 10px 60px;
    float: left;
}
article div.desc h1 {
    margin: 0;
    padding: 0;
}
article div.desc p.prix {
    margin: 0;
    padding: 0;
}
article div.desc input[type="submit"] {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 5px 0;
    padding: 0;
    color: #fff;
    background: #5CA3A7;
    border: none;
    text-decoration: none;
}
article div.desc input.delete {
    background: #a75c5c;
}

div.miniatures {
    display: none;
}

div.produits {
    padding: 0 100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}
div.produit {
    border: solid 1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
div.produit div.promo {
    width: auto;
    height: auto;
    background: #c00;
    color: #fff;
    transform: rotate(-45deg);
    text-align: center;
    display: inline-block;
    padding: 5px 30px;
    position: absolute;
    z-index: 9;
    top: 10px;
    left: -25px;
}
div.produit div.photo {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
div.produit div.photo div.cover {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    transition: 0.5s;
}
div.produit:hover div.photo div.cover {
    transform: scale(1.2);
    transition: 0.5s;
}
div.produit p.produit {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 1px;
    text-align: center;
    font-size: 1.3em;
}
div.produit p.produit a {
    color:#222;
    text-decoration: none;
}
div.produit p.prix {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0 1px;
    text-align: center;
    font-size: 1.1em;
    color: #999;
    transition: 0.5s;
}
div.produit:hover p.prix {
    color: #222;
    transition: 0.5s;
}
div.produit p.prix s {
    color: #999;
    font-size: 0.8em;
}

div.related {
    padding: 50px 0;
}

h2 {
    color: #999;
    margin: 0;
    padding: 0; 
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playwrite DK Uloopet", serif;
    height: auto;
}
h2 strong {
    display: inline-block;
    margin: 0 10px;
}
h2 span {
    color: rgba(92, 164, 167, 0.7);
    cursor: pointer;
    position: relative;
    z-index: 0;
    animation: bounce 1s infinite;
}
div.waves {
    width: 500px;
    height: 50px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
div.waves img {
    width: 100%;
    height: 4px;
}
