header {
    .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;}
}

header {
    height: 140px;
}
header div.logo {
    height: 100px;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0%, 0%);
}
header div.logo svg {
    display: block;
    margin: 0 auto;
    width: 100px;
    height: 100px;
}
nav {
    margin-top: -40px;
    z-index: 999;
    position: sticky;
    top: 0px;
    box-shadow: 0 0 1px 3px rgba(0, 0, 0, 0.1);
    background: #fff
}
nav ul li a.selected {
    box-shadow: none;
    background: #5CA3A7;
    color: #fff;
}

h1 {
    text-align: left;
    font-family: "Roboto Condensed", sans-serif;
    line-height: 50px;
}

.fiche-produit {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Roboto Condensed", sans-serif;
}

.fiche-contenu {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    padding: 2rem;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.images {
    flex: 1 1 400px;
    max-width: 500px;
    box-sizing: border-box;
}

.details {
    flex: 1 1 400px;
    min-width: 300px;
    box-sizing: border-box;
}

.swiper-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.swiper-slide img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-pagination {
    margin-top: 10px;
    text-align: center;
}

.zoomable {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

p.prix {
    color:#5CA3A7;
    color:#111;
    text-align: left;
    font-size: 1.5em;
}
a.btn-supprimer,
button[type="submit"] {
    background-color: #5CA3A7;
    color: white;
    font-weight: bold;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

a.btn-supprimer:hover,
button[type="submit"]:hover {
    background-color: #5CA3A7;
    transform: scale(1.05);
}

div.produits {
    margin: 0 0 50px;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
    font-family: "Roboto Condensed", sans-serif;
}
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;
}
