* {
    margin: 0 auto;
}

@font-face {
    font-family: sunday;
    src: url(Sunday-Regular.ttf);
}

:root {
    --yellow: #FFC555;
    --brown: #844500;
    --white: #fff2D6;
    --dropdown-width: 160px;
}

html {
    background-color: var(--white);
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 112px;
}

body {
    min-height: 100vh;
}


/***********************************************
                HEADER
***********************************************/

.account {
    position: absolute;
    top: 10px;
    right: 10px;
}

.account a {
    text-decoration: none;
}

.account img {
    max-width: 100%;
    height: 30px;
}

a.button {
    /* Frame */
    display: inline-block;
    border-radius: 50px;
    box-sizing: border-box;

    /* Style */
    border: none;
    color: var(--white);
    font-size: 24px;
    font-family: Josefin sans;
    cursor: pointer;
}

a.button:active {
    filter: brightness(75%);
}

/* Dropdown styles */
.dropdown {
    position: relative;
    padding: 0;
    margin-right: 1em;
    transform: translateX(-60px) translateY(-25px);
    border: none;
}

.dropdown summary {
    list-style: none;
    list-style-type: none;
}

.dropdown>summary::-webkit-details-marker {
    display: none;
}

.dropdown summary:focus {
    outline: none;
}


.dropdown summary:focus {
    outline: none;
}

.dropdown .dropdown-ul {
    display: block !important;
    position: absolute;
    margin: 10px 0 0 0;
    padding: 10px 0;
    width: var(--dropdown-width);

    box-sizing: border-box;
    z-index: 2;

    background: var(--brown);
    border-radius: 6px;
    list-style: none;
}

.dropdown ul li {
    padding: 0;
    margin: 0;
    transform: translateY(-15px);
}

.dropdown ul li a:link, .dropdown ul li a:visited {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    color: var(--yellow);
    text-decoration: none;
    font-size: 12pt;
    transform: translateX(-13px);
    height: 20px;
    font-family: Josefin sans;
}



/* Dropdown triangle */
.dropdown ul::before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent var(--white) transparent;
}


/* Close the dropdown with outside clicks */
.dropdown>summary::before {
    display: none;
}

.dropdown[open]>summary::before {
    content: ' ';
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
}


nav {
    background-color: var(--brown);
    border-bottom: solid 2px var(--yellow);
    height: 110px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;

}

nav ul {
    display: flex;
    list-style-type: none;
    align-items: center;
    justify-content: space-evenly;
    max-width: 70%;
}

nav ul li a {
    text-decoration: none;
    text-transform: uppercase;
    font-family: sunday;
    color: var(--white);
    font-size: 16pt;
    padding: 15px 20px;
    position: relative;
}

.link a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 3px;
    border-radius: 20px;
    left: 50%;
    position: absolute;
    background: var(--white);
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

.link a:hover:after {
    width: 100%;
    left: 0;
}

nav ul li img {
    max-width: 100%;
    height: 100px;
}

.responsive {
    display: none;
}

@media screen and (max-width:500px) {
    nav {
        display: none;
    }

    .responsive{
        display: flex;
        height: 100px;
    }

    .account{
        position: static;
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
    }

    .dropdown{
        display: none;
    }

    .responsive ul li a img{
        max-width: 100%;
        height: 250px;
    }

    

    .sidenav {
        height: 100%;
        width: 100%;
        position: fixed;
        z-index: 1;
        top: -150%;
        left: 0;
        background-color: var(--brown);
        padding-top: 60px;
        transition: top 0.5s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      
      #openBtn{
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 2;
      
      }
      
      .sidenav ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        margin-block-start: 0 !important;
        margin-block-end: 0 !important;
        padding-inline-start: 0 !important;
      }
      
      /* Sidenav menu links */
      .sidenav a {
        text-decoration: none;
        display: block;
        transition: 0.3s;
        font-size: 2rem;
      }
      
      .sidenav a:hover {
        color: #111;
      }
      
      /* Active class */
      .sidenav.active {
        top: 0;
      }

      #openBtn.hide{
        display: none;
      }
      
      /* Close btn */
      .sidenav .close {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        color: var(--yellow);
      }
      
      .burger-icon span {
        display: block;
        width: 35px;
        height: 5px;
        background-color: var(--yellow);
        margin: 6px 0;
        border-radius: 5px;
      }
}


/***********************************************
                    ACCUEIL
***********************************************/
.banner {
    background-image: url(img/bg-image.png);
    background-position: 0% 90%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .banner-title {
    font-family: Sunday;
    font-size: 4rem;
    color: var(--white);
    text-shadow: rgba(132, 69, 0, .61) 3px 2px 0px;
    transform: translateY(50px);
}


@media screen and (max-width:500px) {
    .banner-title {
        font-size: 2rem !important;
    }
}

/***********************************************
                ACCUEIL-PRES
***********************************************/
.container {
    max-width: 90%;
    font-family: josefin sans;
    padding-top: 3rem;
    color: var(--brown);
}

.container .apropos {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: -10px;
}

.container .apropos .bjr {
    font-weight: 800;
}

.container .apropos .presentation {

    display: grid;
    grid-template-areas:
        "a b c"
        "d b c";
    grid-template-columns: 100px 625px 100px;
    gap: 8rem;
    height: 400px;
}


.img-container {
    width: 200px;
    height: 150px;
    grid-area: a;
    transform: translateY(-40px);
}


.img-container img {
    max-width: 300%;
    max-height: 150px;
}

.sulawesi {
    grid-area: d;
    transform: translateY(-100px);
}

.sulawesi img {
    max-width: 300%;
    height: 150px;
}


.bol {
    grid-area: c;
    overflow: hidden;
    max-width: 230px;
    transform: translateX(-80px) translateY(-30px);
}

.bol img {
    max-height: 100%;
    max-width: 230px;
}

.txt-pres {
    padding-top: 2rem;
    font-size: 12pt;
    line-height: 1.5;
    grid-area: b;
    height: 400px;
}

.menu-btn {
    text-decoration: none;
    width: 200px;
    text-align: center;
    font-size: 14pt;
    color: white;
    background-color: var(--brown);
    padding: 20px 40px;
    transform: translateY(-60px);
}


@media screen and (max-width:500px) {
    .apropos .presentation {
        display: flex !important;
        flex-direction: column;
        gap: 1rem !important;
        height: auto !important;
    }

    .apropos {
        margin-bottom: 1rem !important;
    }

    .presentation .img-container {
        transform: none !important;
        padding-top: 2rem;
    }


    .apropos .presentation .sulawesi {
        display: none;
    }

    .presentation .bol {
        display: none;
    }

    .menu-btn {
        transform: none !important;
        position: static !important;
        margin-top: 5rem !important;
    }
}

/*******************SECRET**********************/

.secret {
    background-color: var(--brown);
    color: white;
    font-family: josefin sans;
    padding: 2rem;
}

.secret h1 {
    text-align: center;
    font-family: sunday;
    color: var(--yellow);
    text-transform: uppercase;
    padding-bottom: 24pt;
}

.secret p {
    width: 80%;
    font-size: 12pt;
    text-align: center;
    line-height: 1.5;
}

/**********************************************************
                    LIEN MENU
**********************************************************/

.link-menu {
    display: flex;
    padding: 2rem;
    justify-content: space-evenly;
}



.link-menu .carte {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0px !important;
}

.carte h1 {
    position: absolute;
    color: var(--white);
    font-family: Sunday;
    text-transform: uppercase;
    font-weight: 300;
    padding: 1rem;
    text-shadow: rgba(132, 69, 0, .4) 2px 2px 0px;
}

.carte a {
    text-decoration: none;
    width: 300px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown);
    font-family: Josefin sans;
    border: solid 3px var(--brown);
    margin-top: 1rem;
    font-size: 1.3rem;
}

@media screen and (max-width:500px) {
    .link-menu {
        overflow-x: scroll;
        justify-content: left !important;
        padding: 0 !important;
        width: 100%;
    }

    .link-menu .carte {
        scroll-snap-type: x-mandatory;
        scroll-behavior: smooth;
    }

    .link-menu .carte img {
        width: 100vw;

    }
}

/**********************INFO + HISTOIRE *********************/


.info-hist {
    display: flex;
    justify-content: space-evenly;
    width: 90%;
    gap: 2rem;
    padding-top: 2rem;
}

.histoire {
    flex-basis: 40%;
    background-color: var(--yellow);
    margin-bottom: 2rem;
}

.histoire h1 {
    font-family: Sunday;
    font-size: 2rem;
    color: var(--white);
    text-shadow: rgba(132, 69, 0, .4) 2px 1px 0px;
    text-align: center;
    padding-top: 2rem;
}

.histoire p {
    font-size: 12pt;
    line-height: 1.5;
    padding: 2rem;
    color: var(--brown);
    font-family: Josefin sans;
    width: 85%;
}

.histoire a {
    text-decoration: none;
    color: var(--white);
    border: solid 3px var(--white);
    width: 180px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-family: Josefin sans;
    transform: translateX(150px);
    margin-bottom: 2rem;
}

.info-container {
    width: 500px;
}


.titre-info {
    font-family: Sunday;
    color: var(--brown);
    font-size: 2rem;
    text-transform: uppercase;
    text-align: center;
    padding-top: 2rem;
    font-weight: 300;
}

.txt-info {
    font-size: 1.2rem;
    color: var(--brown);
    font-family: Josefin sans;
    line-height: 2rem;
    padding-top: 2rem;
}

.txt-info .strong {
    font-weight: 800;
}

.txt-info .map {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.map iframe {
    width: 100%;
    height: 300px;
}

.i {
    position: absolute;
    max-width: 100%;
    height: 100px;
    transform: translateX(400px) translateY(-30px);
}

@media screen and (max-width:500px) {

    .info-hist {
        flex-direction: column;
        gap: 1rem;
    }

    .info-hist .histoire {
        flex-basis: 100%;
    }

    .histoire a {
        transform: none;
    }

    .info-container {
        width: auto;
    }

    .i {
        display: none;
    }
}


/***********************************************
                FOOTER
***********************************************/

footer {
    display: flex;
    flex-direction: column;
    background-color: #844500;
}

footer h1 {
    font-family: Sunday;
    color: var(--yellow);
    text-transform: uppercase;
    font-size: 24pt;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

footer .info-footer {
    display: flex;
    justify-content: space-evenly;
    width: 70%;
    gap: 2rem;
    padding-bottom: 2rem;
}

.info-footer a {
    text-decoration: none;
    color: #fff2D6;
    font-family: Josefin sans;
    margin-left: 1rem;
    font-size: 12pt;
}

.info-footer .link-footer {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-family: Josefin sans;
}



footer h3 {
    font-family: Josefin sans;
    color: #fff2D6;
    font-weight: 500;
    padding-bottom: 1rem;
}

@media screen and (max-width:500px) {
    footer .info-footer {
        flex-direction: column;
        gap: 1rem;
    }

    footer .info-footer .link-footer {
        flex-direction: column;
        gap: 1rem;
    }

}

/***********************************************
                PAGE APROPOS
***********************************************/


@media screen and (max-width: 500px) {
    .about-row, .reverse-about{
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
    }
}

.container .about-row {
    display: flex;
    gap: 5rem;
    padding-bottom: 4rem;
    width: 90%;
    text-align: justify;
    font-size: 12pt;
    line-height: 1.5;
}

.about-row .img-about {

    height: 300px;
    display: flex;
    justify-content: end;
    align-items: center;
}

.about-row .img-about img {
    max-width: 100%;
    height: 300px;

}

.reverse-about {
    flex-direction: row-reverse;
}

.about-row p {
    flex-basis: 50%;
    font-size: 1.1rem;
    line-height: 1.3rem;
}


/***********************************************
                LA CARTE
***********************************************/

@media screen and (max-width: 500px) {
    
    .carte-boisson{
        padding-left: 0rem  !important;
    }

    .carte-boisson .img-boisson{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .carte-menu{
        padding-left: 0rem !important;
    }
}

.carte-menu h1 {
    font-size: 2rem;
    color: var(--brown);
    font-family: sunday;
    font-weight: 300;
    padding-bottom: 2rem;
}

.carte-menu img {
    max-width: 100%;
    height: 500px;
    margin: 0px !important;
}

.carte-menu a {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 300px;
    height: 50px;
    text-decoration: none;
    color: #844500;
    font-family: Josefin sans;
    border: solid 3px #844500;
    margin-top: 2rem;
    font-size: 12pt;
}

.carte-menu a svg {
    margin: 0px !important;
}

.carte-menu .img-carte {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: flex-start;
    align-items: center;
}

.carte-menu {
    padding-bottom: 4rem;
    padding-left: 5rem;
}

.carte-boisson {
    padding-bottom: 4rem;
    padding-left: 5rem;
}

.carte-boisson h1 {
    font-size: 2rem;
    color: var(--brown);
    font-family: sunday;
    font-weight: 300;
    padding-bottom: 2rem;
}

.carte-boisson img {
    max-width: 100%;
    height: 500px;
}



.carte-boisson a {
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    align-items: center;
    width: 300px;
    height: 50px;
    text-decoration: none;
    color: #844500;
    font-family: Josefin sans;
    border: solid 3px #844500;
    margin-top: 2rem;
    font-size: 12pt;
}

.carte-boisson a svg {
    margin: 0px !important;
}

/***********************************************
                PAGE CONTACT
***********************************************/

@media screen and (max-width:500px) {
    
    .contacts{
        flex-direction: column;
    }

    .contacts .contact-link{
        transform: none;
        height: 500px !important;
    }

    .contact-link .lien-svg svg{ 
        height: 30px;
        width: 30px;
        margin-bottom: 1rem;
    }

    .lien-contact{
        justify-content: space-around !important;
    }

    .lien-contact a{
        transform: translateY(-.5rem);
    }

    .contact-form .titre-contact{
        padding-left: 0rem !important;
        font-size: 20pt !important;
        text-align: center  ;
    }

    .contact-form form{
        width: 100% !important;
        align-items: center !important;
        
    }

    .contact-form form input{
        width: 100% !important;
        margin: 10px auto !important;
        padding: 0 !important;
    }

    .contact-form form input::placeholder{
        transform: translateX(10px);
    }

    .contact-form form textarea{
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;        
    }

    .contact-form form textarea::placeholder{
        transform: translateX(10px) translateY(10px);
    }



}

.contacts {
    display: flex;
    justify-content: space-evenly;
}


.contact-form {
    flex-basis: 30%;
    padding-bottom: 4rem;
}

.contact-form .titre-contact {
    font-family: sunday;
    color: var(--brown);
    font-size: 24pt;
    font-weight: 400;
    padding-left: 5rem;
    padding-bottom: 2rem;
}

.contact-link {
    display: flex;
    flex-basis: 50%;
    justify-content: center;
    margin: 0px !important;
    height: 250px;
    transform: translateX(-100px) translateY(100px);
}

.lien-contact {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    margin: 0px !important;
}

.lien-svg {
    display: flex;
    flex-direction: column;
    margin: 0px !important;
    justify-content: space-evenly;
}

.lien-svg svg {
    padding: 3px;
    border: solid 2px var(--brown);
    border-radius: 50%;
}


.lien-contact a {
    text-decoration: none;
    color: var(--brown);
    font-size: 1.2rem;
    font-family: josefin sans;
    padding-left: 1rem;
    margin: 0px !important;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    width: 600px;
    color: var(--brown);
    align-items: flex-end;
}

.contact-form form input {
    border: solid 2px var(--brown);
    border-radius: 5px;
    width: 500px;
    height: 4rem;
    color: var(--brown);
    background-color: transparent;
    font-size: 12pt;
    margin: 10px;
    padding-left: 1rem;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Chrome */
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Opéra*/
input::-o-inner-spin-button,
input::-o-outer-spin-button {
    -o-appearance: none;
    margin: 0
}

.contact-form form input::placeholder {
    color: var(--brown);
    transition: all .1s linear;
    font-family: josefin sans;
}

.contact-form form input[type="submit"] {
    background-color: var(--brown);
    color: white;
    width: 20%;
    font-family: Josefin sans;
    font-size: 12pt;
    height: 50px;
}

.contact-form form textarea {
    width: 480px;
    border: solid 2px var(--brown);
    background-color: transparent;
    border-radius: 10px;
    font-family: josefin sans;
    color: var(--brown);
    font-size: 12pt;
    margin: 15px;
    padding: 1rem;
}

.contact-form form textarea::placeholder {
    color: var(--brown);
    transition: all .1s linear;

}

.contact-form form textarea:focus {
    outline: none;
}

.contact-form form input:focus {
    outline: none;
}

.contact-form form input:focus::placeholder {
    opacity: 0;
}

.contact-form form textarea:focus::placeholder {
    opacity: 0;
}

.contact-valid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 200px;
}

.contact-valid .confirm-form {
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sunday;
    color: var(--brown);
    padding: 3rem;
}

/***********************************************
                COMMANDE
***********************************************/

@media screen and (max-width: 500px) {
    

    .carte-show ul{
        display: none !important;
    }

    .soon{
        font-size: 1rem !important;
    }

}


.carte-show {
    display: flex;
    align-items: center;
    padding-top: 5rem;
}

.carte-show ul {
    display: flex;
    justify-content: space-evenly;
    width: 90%;
    list-style-type: none;
    padding-bottom: 2rem;
}

.carte-show ul li {
    width: 250px;
    height: 50px;

    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carte-show ul li a {
    text-decoration: none;
    color: var(--brown);
    font-family: Josefin sans;
    text-transform: uppercase;
    font-size: 12pt;
    text-align: center;
    width: 100%;
    border: solid 2px var(--brown);
    display: flex;
    width: 200px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.carte-show ul li a:focus {
    background-color: var(--brown);
    color: white;
}

/*******************CARTE*********************/





.content-box {
    width: 90%;
    padding-top: 4rem;
    padding-bottom: 3rem;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;

}

.soon{
    font-size: 4rem;
    font-family: Sunday;
    color: var(--yellow);
    padding-bottom: 2rem;
    text-align: center;
}

.show {
    display: none;

}

.titre-menu {
    font-family: josefin sans;
    text-transform: uppercase;
    font-size: 3.5rem;
    font-weight: 400;
    margin-left: 3.8rem;
    color: var(--brown);
}

.item-box {
    display: flex;
    flex-direction: column;
    flex-basis: 33%;
    margin: 0px !important;
    padding-bottom: 2rem;

}

.item-box img {
    max-width: 100%;
    height: 250px;
    position: relative;
}



.item-box .info-plat {
    font-size: 1rem;
    color: var(--brown);
    font-family: josefin sans;
    width: 350px;

}

.info-plat h1 {
    font-weight: 500;
    font-size: 14pt;
    padding-top: 2rem;
}

.info-plat h2 {
    margin-left: 0;
    font-weight: 400;
    font-size: 12pt;

}

.info-plat p {
    font-size: 16.5pt;
    font-weight: 700;
    margin: 0px !important;
}

.ajout-panier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;

}

.item-box a {
    text-decoration: none;
    color: var(--white);
    background-color: #844500;
    font-family: Josefin sans;
    text-transform: uppercase;
    font-size: 12pt;
    text-align: center;
    width: 100%;
    border: solid 2px var(--brown);
    display: flex;
    width: 200px;
    height: 40px;
    align-items: center;
    justify-content: center;
    margin: 0px !important;

}

.item-box a img {
    max-width: 100%;
    height: 20px;
}


/***************plat de la semaine*******************/

.day {
    color: var(--white);
    font-family: Sunday;
    position: absolute;
    transform: translateX(60px);
}

/******************************************************
                PAGE LOGIN                              
*******************************************************/

.form-login {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    gap: 2rem;
    width: 530px;
}

.form-login input {
    border: solid 2px var(--brown);
    background-color: transparent;
    border-radius: 5px;
    width: 500px;
    height: 50px;
    padding-left: 20px;
    font-family: Josefin sans;
    font-size: 12pt;
    color: #844500;
}


.form-login input:focus {
    outline: var(--brown);
}

.form-login input[type="submit"] {
    width: 250px;
    background-color: #844500;
    color: var(--white);
    align-self: flex-end;
    margin: 0px !important;
    cursor: pointer;
}

.form-login input::placeholder {
    color: #844500;
}

.register-btn a {
    text-decoration: none;
    color: #844500;
    font-weight: 800;
}


/*****************************************************
                PAGE PROFIL
******************************************************/


.titre-profil {
    font-family: Sunday;
    color: var(--brown);
    font-size: 24pt;
    padding-left: 5rem;
    font-weight: 400;
}

.profil-container {
    display: flex;
    padding-top: 3rem;
    width: 90%;
}

.profil-container p {
    font-size: 12pt;
    font-family: Josefin sans;
    color: var(--brown);
    border: solid 2px var(--brown);
    display: flex;
    width: 260px;
    align-items: center;
    justify-content: center;
    height: 60px;
    margin-bottom: 2rem;
}

.profil-container ul li a {
    text-decoration: none;
    font-size: 12pt;
    font-family: Josefin sans;
    color: var(--brown);
    display: flex;
    width: 260px;
    align-items: center;
    justify-content: flex-start;
    height: 30px;
    margin-bottom: 2rem;
}


/****************************************************
                        PANIER
****************************************************/

.panier-container {
    display: flex;
    width: 90%;
}

.visu-panier {
    padding-bottom: 2rem;
    font-size: 12pt;
}

.visu-panier h1 {
    font-family: Sunday;
    color: var(--brown);
    font-size: 24pt;
    text-align: center;
    font-weight: 400;
}

.article-panier {
    display: flex;
    border: solid 2px var(--brown);
    padding: 10px 10px;
    width: 700px;
    margin: 2rem;
}

.article-panier img {
    max-width: 100%;
    height: 80px;
}

.quant {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-left: 1rem;
}

.quant-modif {
    padding-left: 2rem;
}

.quant-modif a {
    text-decoration: none;
}

.quant .prix-quant {
    display: flex;
    gap: 1rem;
}

.facture {
    width: 500px;
}

.facture h2 {
    font-size: 12pt;
}

.facture h1 {
    font-family: Sunday;
    color: var(--brown);
    font-size: 24pt;
    text-align: center;
    font-weight: 400;
    padding-bottom: 2rem;
}

.liste-panier {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border: solid 2px var(--brown);
    padding: 1rem;
}

.pts-fid {
    display: grid;
    grid-template-areas: "a b";
    gap: 2rem;
    margin: 0px !important;
}

.panier-container hr {
    background-color: #844500;
    border-color: #844500;
    width: 90%;
}


.total {
    display: flex;
    gap: 2rem;
    margin: 0px !important;
}

.details {
    display: flex;
    gap: 2rem;
    width: 90%;
}

.valid {
    height: 40px;
    display: flex;
    margin-left: 82%;
    margin-top: 2rem;
    background-color: var(--brown);
    color: #fff2D6;
    font-family: Josefin sans;
    outline: none;
    border: none;
    font-size: 12pt;
    margin-bottom: 2rem;
}

/*********************************************************
                    PAGE AVIS
**********************************************************/

#avis-container {
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    display: grid;
    place-items: center;
    margin-top: -15rem;
}

#slider-container {
    height: 300px;
    width: 85vw;
    max-width: 1400px;
    background: transparent;

    position: relative;
    overflow: hidden;
    padding: 20px;
}

#slider-container .btn {
    position: absolute;
    top: calc(50% - 30px);
    height: 30px;
    width: 30px;
    border-left: 4px solid var(--brown);
    border-top: 4px solid var(--brown);
    cursor: pointer;
    z-index: 99;
}

#slider-container .btn:hover {
    transform: scale(1.2);
}

#slider-container .btn.inactive {
    border-color: rgb(153, 121, 126)
}

#slider-container .btn:first-of-type {
    transform: rotate(-45deg);
    left: 10px
}

#slider-container .btn:last-of-type {
    transform: rotate(135deg);
    right: 10px;
}

#slider-container #slider {
    display: flex;
    width: 1000%;
    height: 100%;
    transition: all .5s;
}

#slider-container #slider .slide {
    height: 400px;
    margin: auto 1rem;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
    flex-direction: column;
}

#slider-container #slider .slide img {
    width: 100%;
    height: 172px;

}

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

    #slider-container #slider .slide {
        width: calc(2.5% - 20px);
    }

}

@media only screen and (max-width: 1100px) {

    #slider-container #slider .slide {
        width: calc(3.3333333% - 20px);
    }

}

@media only screen and (max-width: 900px) {

    #slider-container #slider .slide {
        width: calc(5% - 20px);
    }

}

@media only screen and (max-width: 550px) {

    #slider-container #slider .slide {
        width: calc(10% - 20px);
    }

}


.overlay {
    position: absolute;
    top: 0px;
    width: 100%;
}

.overlay p {
    position: absolute;
    bottom: 20px;
    left: 42%;
}


.rating {
    width: 226px;
    font-size: 30px;
    overflow: hidden;
}

.rating a {
    float: right;
    color: #aaa;
    text-decoration: none;
    -webkit-transition: color .4s;
    -moz-transition: color .4s;
    -o-transition: color .4s;
    transition: color .4s;
}

.rating a:hover,
.rating a:hover~a,
.rating a:focus,
.rating a:focus~a {
    color: orange;
    cursor: pointer;
}

.rating2 {
    direction: rtl;
}

.rating2 a {
    float: none
}

.avis-client {

    width: 230px;
    display: flex;
    flex-direction: column;
    transform: translateX(-25px);
}


.commentaire {
    border: solid 2px var(--brown);
    color: #844500;
    font-family: Josefin sans;
    font-size: 12pt;
    background-color: transparent;
    height: 40px;
    padding: 5px 10px;
    width: 250px;
}

.commentaire:focus {
    outline: none;
    border-color: #844500;
}

.commentaire::placeholder {
    color: #844500;
    font-family: Josefin sans;
    font-size: 12pt;
}