@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root{
    --primary:#f1f1f1;
    --secondary:#00000095;


}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Amiri", serif;
}
body{
    background: var(--primary);
}
.header{

}
/* icones*/
i{
    font-size: 1.3rem;
    color: #000;
}
/* top menu*/
.header-top{
    border-bottom: 1px solid #d3d3d393;
    padding: 5px 0px;

}
.header-top-container{
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-top-items{
    display: flex;
    align-items: center;

}
.header-top-item{
    list-style: none;
    margin-left: 10px;
    display: flex;
    align-items: center;
}
.header-top-item a{
    text-decoration: none;
    color: var(--secondary);

}
.header-top-item:not(:first-child){
    border-right: 2px solid #d3d3d3;
    padding: 0px 10px;
}
.header-top-item span{
    color: var(--secondary);
    font-size: 1rem;
}
/*Menu*/
/* =========================
   MENU PRINCIPAL
========================= */

.nav{
    margin:15px 0;
    overflow:hidden;
}

.nav-container{
    width:95%;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* Logo */
.nav_items_logo{
    width:120px;
    flex-shrink:0;
}

.nav_items_logo img{
    width:100px;
    height:auto;
    display:block;
}

/* Menu */
.nav_items{
    flex:1;
    display:flex;
    justify-content:center;
}

.nav_items-lists{
    display:flex;
    align-items:center;
    gap:25px;
    flex-wrap:nowrap;
}

.nav_items-list{
    list-style:none;
    
}

.nav_items-list a{
    text-decoration:none;
    font-size:1.1rem;
    color:brown;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:3px;

    white-space:nowrap;
    line-height:1;
}

.nav_items-list a i{
    font-size:12px;
}

/* Icônes droite */
.nav_icons{
     display:flex;
    align-items:center;
    gap:15px;
    flex-shrink:0;
    border:1px solid #d3d3d393;
    padding:5px 15px;
    border-radius:8px;
    white-space:nowrap;
}

.nav_icons input{
    width:140px;
    height:38px;
    border:1px solid #ccc;
    border-radius:6px;
    padding:0 10px;
    background:#fff;
}

.nav_icons button{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:5px;
    cursor:pointer;
    border:none;
    background:none;
    white-space:nowrap;
}
.nav_icons button:first-of-type{
    min-width:90px;
}

.nav_icons button i{
    font-size:24px;
}

.nav_icon_heart{
    position:relative;
}

.nav_icon_heart_number{
    position:absolute;
    top:-6px;
    left:-6px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:red;
    color:white;
    font-size:10px;
    font-weight:bold;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* Bouton recherche noir */
.nav_icons button:last-child{
    background:black;
    color:white;
    width:50px;
    height:35px;
    border-radius:6px;
}

.nav_icons button:last-child i{
    color:white;
}
/*Main*/
.banner{
    background: url('image/image1.jpg') no-repeat ;
    height: 80vh;
    width: 95%;
    margin: auto;
    background-position: center;
    position: relative;
}
.banner_bg-color{
    position: absolute;
    background-color: #746969;
    z-index: 100;
    top: 0;
    bottom: 0;
    right: 0;
    left: 60%;
}
.banner_items_number{
    position: relative;
    width:80%;
    padding: 20px 20px 5px 10px;
    color: #fff;
    text-align: end;
}
.banner_items_number span{
    font-size: 5rem;
    font-weight: 400;
    display: inline-block;
    border-bottom: 1px solid #fff;
}
.banner_items_accroche{
    display: inline-block;
    align-items: center;
    width: 100%;
}
.banner_items_accroche span{
    color: #fff;
    display: flex;
    align-items: center;
}
.banner_items_accroche span::before{
    content: '';
    background-color: #fff;
    width: 20%;
    height: 2px;
    display: inline-block;
    margin-left: 5px;
}
.banner_items_title{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.banner_items_title span{
    color: #fff;
    font-size: 3rem;
    padding: 0px 30px;
    width: 100%;
}
.banner_items_accroche2{
    width: 100%;
    margin: 20px;
}
.banner_items_accroche2 span{
    color: #fff;
    border-right: 2px solid #fff;
    padding: 10px;
}
.banner_items_button{
    margin: 40px 20px;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner_items_btn{
    border: none;
    cursor: pointer;
    background-color: transparent;
    color: #fff;
    font-size: 1.3rem;
}
.banner_image{
    width: 150px;
    height: 150px;
    border-radius: 100%;
    position: absolute;
    right: 70%;
    top: 60%;
    transform: translate(-50%, -50%);

}
.banner_image img{
    height: 100%;
    width: 100%;
     border-radius: 100%;
}
/* Badge de confiance*/
.badge{
    width: 80%;
    margin: auto;
    padding: 30px 0px;
}
.badge_items{
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.badge_item{
    display: flex;
    align-items: center;

}
.badge_item i{
    font-size: 4rem;
    color: brown;
    margin-right: 20px;
}
.badge_item-text{
    display: flex;
    flex-direction: column;
}
.badge_item-text h4{
    font-size: 1.1rem;
    text-transform: capitalize;
}
.container{
     width: 80%;
    margin: auto;
    padding: 30px 0px;
    text-align: center;
    transition: transform .5s;
}
.listProcudt .item img{
    width: 100%;
      height: 300px;
      object-fit: contain;
    
    filter: drop-shadow(0 50px 20px #0009);
     border-radius: 20px;
}
.listProcudt{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:20px
}
.listProcudt .item {
    background-color: #eeeee6;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
    
}
.listProcudt .item h2{
    font-weight: 500;
    font-size: large;
}
.listProcudt .item .price{
    letter-spacing: 5px;
    font-size: small;
}
.listProcudt .item button{
    background-color: brown;
    color: #eee;
    border-radius: 20px;
    padding: 5px 10px;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    font-size: medium;
}
.cartTab{
    width: 500px;
    height: 100vh;
    background-color: #353432;
    color: #eee;
    position: fixed;
    inset: 0 auto 0 -500px;

    display: grid;
    grid-template-rows:
        70px    /* titre */
        1fr     /* liste produits */
        60px    /* total */
        260px   /* formulaire */
        70px;   /* boutons */

    transition: .5s;
    z-index: 9999;
}
body.showCart .cartTab{
     inset: 0 auto 0 0;

}

.cartTab h1{
    padding: 20px;
    margin: 0;
    font-weight: 300;
}
.cartTab .btn{
    display: grid;
    grid-template-columns: repeat(2, 1fr);

}
.cartTab .btn button{
    background-color:brown;
    border: none;
    font-size:18px;
    font-weight:bold;
    height:70px;
    cursor: pointer;
    

    
}
.cartTab .btn .close{
    background-color: #eee;

}

.cartTab .ListCart .item img{
    width:50px;
    height:50px;
    object-fit:cover;
    border-radius:5px

}
.cartTab .ListCart .item{
    display:grid;
    grid-template-columns: 60px 1fr 70px 90px;
    gap:10px;
    align-items:center;
}
.ListCart .quantity{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:5px;
}
.ListCart .quantity span{
    display:inline-flex;
    justify-content:center;
    align-items:center;

    width:28px;
    height:28px;

    background:#eee;
    color:#333;

    border-radius:50%;
    cursor:pointer;
    font-weight:bold;
    
}
.ListCart .quantity span:nth-child(2){
    background-color: transparent;
    color: #eee;
}
.ListCart .item:nth-child(even){
    background-color: #eee1;

}
.ListCart{
    overflow-y: auto;
    overflow-x: hidden;
    padding: 5px;
}
.ListCart::-webkit-scrollbar{
    width: 0;
}
.cartTotal{
    padding: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    background-color: #222;
    color: white;
}

.customerForm{
    padding:15px;
    background:#444;
    border-top:1px solid #666;

    display:flex;
    flex-direction:column;
    gap:10px;
}

.customerForm h3{
    text-align:center;
    color:white;
    margin-bottom:5px;
}

.customerForm input,
.customerForm textarea{
    width:100%;
    padding:10px;
    border:none;
    border-radius:5px;
    box-sizing:border-box;
    font-size:15px;
}

.customerForm textarea{
    height:80px;
    resize:none;
}
/* =========================
   CONTACT
========================= */

.contact-section{
    padding:60px 0;
    background:#fff;
    margin-top:50px;
}

.contact-container{
    width:80%;
    margin:auto;
    text-align:center;
}

.contact-container h2{
    color:brown;
    font-size:35px;
    margin-bottom:15px;
}

.contact-container p{
    color:#666;
    margin-bottom:30px;
}

.contact-form{
    background:#f8f8f8;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.contact-form .row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
}

.contact-form textarea{
    height:150px;
    resize:none;
    margin-bottom:20px;
}

.contact-form button{
    background:brown;
    color:white;
    border:none;
    padding:12px 35px;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#8b4513;
}
/* =========================
   FOOTER
========================= */

.footer{
    background:#222;
    color:white;
    margin-top:50px;
}

.footer-container{
    width:90%;
    margin:auto;
    padding:50px 0;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.footer-box h3{
    margin-bottom:15px;
    color:#d4a373;
}

.footer-box p{
    line-height:1.8;
    color:#ddd;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:10px;
}

.footer-box ul li a{
    color:#ddd;
    text-decoration:none;
}

.footer-box ul li a:hover{
    color:#d4a373;
}

.footer-logo{
    width:120px;
    margin-bottom:15px;
}

.socials{
    display:flex;
    gap:15px;
}

.socials a{
    width:40px;
    height:40px;
    background:brown;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
}

.socials a i{
    color:white;
    font-size:20px;
}

.socials a:hover{
    background:#8b4513;
}

.footer-bottom{
    background:#111;
    text-align:center;
    padding:15px;
    color:#ccc;
    font-size:14px;
}