/* ==========================================================================
   Code CSS complet avec animations intégrées
   ========================================================================== */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    list-style: none;
    font-family: Arial, serif;
    scroll-behavior: smooth;
    outline: none;
}

:root {
    /* couleurs de base */
    --rose1: #B20349;
    --rose2: #FB025E;
    --gris: #303843;
    --color: rgba(42, 184, 42, 0.833);
    --noir: #000000;
    --light-white: #F7F6f7;
    --shad-white: #F3EEEB;
    --white: #ffffff;

    --bg1: #ffffff;
    --bg2: #dfdfdf;
    --bg3: #303843;

    --text-clr1: #303843;
    --text-clr2: #B20349;

    /* ombres et degrades */
    --btn-clr1: linear-gradient(90deg, var(--rose-fonce), var(--rose-claire), var(--rose-claire));
    --btn-clr2: linear-gradient(90deg, var(--rose-fonce), var(--rose-claire), var(--rose-fonce));

    --shadow1: rgba(0,0,0,0.1);
    --shadow2: rgba(0,0,0,0.25);

    /* polices d'ecriture */
    --poppins: 'poppins';
    --rubik: 'rubik';
}

::-webkit-scrollbar{
    width: 1px;
}

header{
    width: 100%;
    min-height: 800px;
}

.nav-bar{
    z-index: 10;
    position: fixed;
    width: 100%;
}

.nav-bar .part1{
    width: 100%;
    padding: 20px 14%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 2px 1px 4px rgba(0,0,0,0.14);
    background: var(--bg1);
}

.annonces{
    width: 100%;
    display: flex;
    min-height: 5vh;
    align-items: center;
    justify-content: center;
    background: var(--noir);
    z-index: 1;
    user-select: none;
}

.annonces marquee{
    color: green;
    width: 80%;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: .8rem;
}

.nav-bar img{
    width: 190px;
}

.nav-bar ul.menu{
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 200;
}

p.fl{
    display: none;
    position: relative;
}

.nav-bar ul.menu li a , .nav-bar ul.menu li{
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--gris);
    font-weight: 600;
    transition: .2s ease-in-out;
    position: relative;
}

.nav-bar ul.menu li a:hover , .nav-bar ul.menu li:hover{
    color: var(--rose1);
    transform: translateY(-2px);
    cursor: pointer;
}

.nav-bar ul.btn{
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-bar i.menu{
    display: none;
}

.nav-bar ul.btn li a{
    font-size: 12px;
    letter-spacing: 1px;
    border: 1px solid var(--rose1);
    padding: 10px 18px;
    border-radius: 30px;
    color: var(--rose1);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    /* AJOUT ANIMATION : transition sur 'all' pour inclure transform et box-shadow */
    transition: all .2s ease-in;
}

/* AJOUT ANIMATION : Menu déroulant fluide (MODIFIÉ) */
.nav-bar ul.menu li ul.drop{
    position: absolute;
    background: #ffffff9b;
    backdrop-filter: blur(30px);
    border-radius: 15px;
    overflow: hidden; /* Utiliser hidden pour une meilleure animation */
    top: 25px; /* Augmenté pour l'effet de glissement */
    z-index: 20;

    /* Remplacement de 'display: none' par ce bloc */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* AJOUT ANIMATION : Apparition du menu déroulant (MODIFIÉ) */
.nav-bar ul.menu li:nth-child(3):hover ul.drop, .nav-bar ul.menu li:nth-child(4):hover ul.drop{
    /* Remplacement de 'display: block' par ce bloc */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-bar ul.menu li ul.drop li{
    padding: 5px 15px;
    white-space: nowrap;
}

.nav-bar ul.menu li ul.drop li:hover{
    background: var(--rose1);
    color: var(--light-white);
    transform: translateY(0px);
    cursor: pointer;
}

.nav-bar ul.btn li:nth-child(1) a{
    border: none;
}

/* AJOUT ANIMATION : Effet de survol sur les boutons de la nav (MODIFIÉ) */
.nav-bar ul.btn li a:hover{
    color: var(--bg1);
    background: var(--rose1);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow1);
}

/* AJOUT ANIMATION : Effet d'enfoncement au clic */
.nav-bar ul.btn li a:active {
    transform: scale(0.98) translateY(0);
    box-shadow: none;
}

.nav-bar .btn3 img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--rose1);
}

.nav-bar .btn3 i{
    font-size: 1.1rem;
    display: inline-block;
    transition: .2s;
}

.nav-bar .btn3 i:hover{
    transform: scale(1.05);
}

.nav-bar .btn3 i:active{
    transform: scale(.95);
}

.nav-bar .btn3{
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-bar .btn3 i.menu{
    display: none;
}

.nav-bar .btn3 i#credis{
    position: relative;
    display: inline;
}

.nav-bar .btn3 i#credis::after{
    content: '';
    color: var(--noir);
    position: absolute;
    font-size: 7px;
    right: -5px;
    top: -2px;
    background: transparent;
    letter-spacing: .5px;
    font-weight: 700;
}

.recherche{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: auto;
    height: 45px;
    width: 45px;
    transition: .2s;
}

.recherche.active button{
    color: var(--light-white);
    background: var(--rose1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
}

.recherche.active{
    border-radius: 20px;
    width: 400px;
    height: 45px;
    justify-content: space-between;
    gap: 10px;
    overflow: visible;
}

.recherche.active input{
    width: 90%;
    height: 100%;
    padding: 10px 0px;
    padding-left: 20px;
    border: 1px solid var(--gris);
    letter-spacing: 1px;
    color: var(--gris);
    cursor: pointer;
    border-radius: 20px;
    transform: translateX(0px);
}

.recherche.active input:focus{
    font-style: italic;
    cursor: default;
    border: 1px solid var(--rose2);
}

.recherche input{
    width: 0%;
    transition: 1s;
    transform: translateX(30px);
}
.recherche button{
    width: 45px;
    height: 45px;
    background: var(--bg3);
    color: var(--light-white);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

/* -----------------------------------cart-box----------------------------------- */

.cart-box{
    width: 350px;
    height: 600px;
    position: fixed;
    top: 30px;
    right: 0;
    background: var(--bg1);
    z-index: 81;
    border-radius: 20px 0px 0px 20px;
    overflow: auto;
    transform: translateX(100%);
    transition: .8s;
    box-shadow: -4px -2px 1px rgba(0,0,0,0.12);
}

.cart-box.active{
    transform: translateX(0);
}

.content{
    width: 100%;
    height: 100%;
}

.content .cart-flex{
    width: 100%;
    height: 500px;
    overflow-y: auto;
}

.content ul.cart-btn{
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
}

.content ul.cart-btn li{
    width: 50%;
    height: 100%;
}

.content ul.cart-btn li button{
    width: 100%;
    height: 100%;
    background: var(--gris);
    color: var(--light-white);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.content ul.cart-btn li button:hover{
    background: var(--noir);
}

.content ul.cart-btn li button i{
    display: inline-block;
    transition: .2s;
}

.content ul.cart-btn li button:hover i{
    transform: translateX(5px);
}

.content ul.cart-btn li:nth-child(1) button:hover i{
    transform: rotate(90deg);
}

.content ul.cart-btn li:nth-child(2) button{
    background: green;
}

.content h3.title{
    text-align: center;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

tbody{
    width: 100%;
}

tbody tr td img{
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

tbody tr{
    background: transparent;
}

tbody tr:nth-child(2n){
    background: var(--light-white);
}

.cart-flex table {
    width: 100%;
    border-collapse: collapse;
}

.cart-flex td {
    padding: 10px;
    vertical-align: middle;
}

tbody .nom{
    color: var(--gris);
    font-size: 15px;
    letter-spacing: 1px;
    font-style: oblique;
}

tbody .qts{
    color: var(--rose1);
    font-weight: 700;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg2);
    display: flex;
    align-items: center;
    justify-content: center;
}

tbody i.ri-delete-bin-6-line{
    color: red;
    display: inline-block;
    cursor: pointer;
}

/* --------------------page d'aceuil-------------------- */
.acceuil{
    background: linear-gradient(rgba(255, 255, 255, 0.14), rgba(248, 248, 248, 0.5)), url(../../assets/images/header.jpg);
    background-size: cover;
    background-position: right;
    width: 100%;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 9%;
}

.acceuil .acceuil-cont{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -50px;
}

.acceuil .acceuil-cont .text{
    width: 60%;
}

.acceuil .acceuil-cont .text p.first{
    font-size: 15px;
    color: var(--rose1);
    text-transform: capitalize;
    font-weight: 900;
    margin-left: 5px;
}

.acceuil .acceuil-cont .text h1.titre{
    color: var(--gris);
    letter-spacing: 1px;
    margin: 8px 0px;
    font-size: 2.5rem;
}

.acceuil .acceuil-cont .text h1.titre span{
    color: var(--rose2);
    -webkit-text-stroke: 1px var(--gris);
}

.acceuil .acceuil-cont .text h5.next{
    width: 80%;
}

.acceuil .acceuil-cont img{
    width: 450px;
    margin-bottom: -15px;
}

.btn2 {
    display: flex;
    gap: 10px;
    font-size: 12px;
}

.btn2 li{
    padding: 15px 18px;
    background: var(--gris);
    border-radius: 30px;
    letter-spacing: 1px;
    font-weight: bolder;
    border: 1px solid var(--gris);
    /* AJOUT ANIMATION : transition sur 'all' */
    transition: all .2s ease-in;
}

/* AJOUT ANIMATION : Effet de survol sur les boutons (MODIFIÉ) */
.btn2 li:hover , .btn2 li:nth-child(2):hover{
    background: var(--noir);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow1);
}

/* AJOUT ANIMATION : Effet d'enfoncement au clic */
.btn2 li:active {
    transform: scale(0.98) translateY(0);
    box-shadow: none;
}

.btn2 li:nth-child(2){
    background: transparent;
    transition: .2s ease-in;
}

.btn2 li:nth-child(2) a{
    color: var(--gris);
}

.btn2 li:nth-child(2):hover a{
    color: var(--light-white);
}

.btn2 li a{
    color: var(--light-white);
}

.ri-shopping-cart-line{
    display: inline-flex;
}

/* AJOUT ANIMATION : Animation d'entrée pour la page d'accueil */
@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.acceuil .acceuil-cont .text p.first,
.acceuil .acceuil-cont .text h1.titre,
.acceuil .acceuil-cont .text h5.next,
.acceuil .acceuil-cont .btn2,
.acceuil .acceuil-cont img {
  opacity: 0; 
  animation: fadeInSlideUp 0.8s ease-out forwards;
}

.acceuil .acceuil-cont .text h1.titre { animation-delay: 0.2s; }
.acceuil .acceuil-cont .text h5.next { animation-delay: 0.4s; }
.acceuil .acceuil-cont .btn2 { animation-delay: 0.6s; }
.acceuil .acceuil-cont img { animation-delay: 0.5s; }


/* -----------------------------les sponsors----------------------------- */
.sponsor{
    width: 100%;
    background: var(--bg3);
    min-height: 13vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor .marque{
    display: flex;
    align-items: center;
    gap: 20px;
}

/* AJOUT ANIMATION : Logos des sponsors dynamiques (MODIFIÉ) */
.sponsor .marque img{
    height: 50px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

/* AJOUT ANIMATION : Effet de survol sur les logos */
.sponsor .marque img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
    opacity: 1;
}

/* ------------------------------Boutique------------------------------ */

p.empty{
    font-size: 1.4rem;
    color: var(--bg3);
    opacity: .5;
}
.boutique{
    width: 100%;
    min-height: 200vh;
    background: var(--bg1);
    padding: 20px 12%;
}

.boutique h1{
    color: var(--rose1);
    letter-spacing: 1px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.boutique h2.sec-title{
    color: var(--gris);
    border-bottom: 2px dashed var(--gris);
    letter-spacing: 1px;
    padding-bottom: 10px;
}

section.splide{
    margin-bottom: 100px;
}

/* ---------cart--------- */
/* AJOUT ANIMATION : Carte produit qui flotte (MODIFIÉ) */
.cart{
    background: transparent;
    padding: 10px;
    border-radius: 20px;
    width: 250px;
    min-height: 400px;
    animation: cart .5s linear;
    /* Ajout d'une transition pour l'effet de flottement */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media  screen and (min-width: 1001px) {
    /* AJOUT ANIMATION : Effet de survol sur la carte produit */
    .cart:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px var(--shadow2);
    }
}

@keyframes cart {
    0%{
        transform: translateX(10px);
        opacity: 0;
    }
    20%{
        
        opacity: 0;
    }
    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}

.cart:nth-child(1){
    animation-delay: .2s;
}
.cart:nth-child(2){
    animation-delay: .4s;
}
.cart:nth-child(3){
    animation-delay: .6s;
}
.cart:nth-child(4){
    animation-delay: .8s;
}
.cart:nth-child(5){
    animation-delay: 1s;
}
.cart:nth-child(6){
    animation-delay: 1.2s;
}


.cart h5.name{
    color: var(--gris);
    letter-spacing: 1px;
    font-size: .9rem;
}

.cart .prix{
    color: var(--rose2);
}

.cart .location{
    color: green;
}

.cart img.star{
    width: 100px;
}


.cart .vv{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart .vv ul.options{
    position: absolute;
    right: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart .vv ul.options li{
    color: var(--light-white);
    background: var(--gris); 
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    transform: translateX(10px);
    opacity: 0;
    transition: .3s ease-in-out;
}

.cart .vv ul.options li:hover{
    cursor: pointer;
    background: var(--noir);
}

.cart .vv:hover ul.options li{
    transform: translateX(0px);
    opacity: 1;
}

.cart .vv:hover ul.options li i{
    transition: .1s ease-in-out;
}

.cart .vv:hover ul.options li i:hover{
    transform: scale(1.2);
}

.cart a.chanel{
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 20px;
    background: var(--bg2);
    margin-top: 10px;
    width: 60%;
    color: var(--noir);
    font-size: .7rem;
    border: 1px dashed transparent;
    transition: .15s ease;
    position: relative;
}

.cart a.chanel i{
    color: gold;
    background: var(--noir);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid gold;
    position: absolute;
    top: -7px;
    right: -3px;
    font-size: .8rem;
}

.cart a.chanel:hover{
    border: 1px dashed var(--bg3);
}

.cart a.chanel:hover i{
    animation: crown 1s linear;
}

@keyframes crown{
    0%{
        transform: rotate(0deg);
    }
    20%{
        transform: rotate(15deg);
    }
    40%{
        transform: rotate(0deg);
        top: -8px;
    }
    60%{
        transform: rotate(-15deg);
        top: -8px;
    }
    80%{
        transform: rotate(0deg);
        top: -8px;
    }
    100%{
        transform: rotate(0deg);
        top: -7px;
    }
}

.cart a.chanel img{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 5px;
}

.cart .vv img.cover:hover{
    transform: scale(1.01);
}

/* like active */

.cart .ri-heart-3-fill{
    color: var(--rose2);
    display: inline-block;
    transition: .1s ease-in-out;
    animation: liked 1s linear;
}


@keyframes liked {
    0%{
        transform: scale(1) rotate(0deg);
    }
    20%{
        transform: scale(1.2) rotate(-20deg);
    }
    40%{
        transform: scale(1.2) rotate(20deg);
    }
    60%{
        transform: scale(1.2) rotate(-20deg);
    }
    80%{
        transform: scale(1.2) rotate(20deg);
    }
    100%{
        transform: scale(1) rotate(0deg);
    }
}

.cart img.cover{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: .2s ease;
    box-shadow: 1px 1px 2px 3px rgba(0,0,0,0.08);
}

/* section & categories */

.sec-bann{
    width: 100%;
    min-height: 300px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 30px;
}

#electronique{
    background: url(../../assets/images/baner-electro.webp);  
    background-size: cover;
    background-position: top;
}

#electromenager{
    background: url(../../assets/images/baner-deco.webp);  
    background-size: cover;
    background-position: top;
}
#mode{
    background: url(../../assets/images/baner-mode.webp);  
    background-size: cover;
    background-position: top;
}
#enfant{
    background: url(../../assets/images/baner-enfants.webp);  
    background-size: cover;
    background-position: top;
}
#agriculture{
    background: url(../../assets/images/baner-agricol.webp);  
    background-size: cover;
    background-position: top;
}
#autre{
    background: url(../../assets/images/baner-mode.webp);  
    background-size: cover;
    background-position: top;
}

.sec-bann h1{
    width: 100%;
    text-align: left;
    letter-spacing: 1px;
    font-size: 3rem;
    font-weight: bolder;
    color: var(--shad-white);
    background: linear-gradient(90deg,#303843, #303843d3, transparent);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    padding: 5px 0px;
    padding-left: 20px;
    font-style: italic;
}

.box-prod{
    width: 100%;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(4, 1fr);
}

p.loading {
    color: var(--noir);
    letter-spacing: 1.5px;
    font-size: 1.5rem;
}

p.loading i{
    color: var(--rose2);
    display: inline-block;
    animation: load 1s infinite;
    transform: rotate(0deg);
}

@keyframes load {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(720deg);
    }
}

/* pagination */

.pagination-box{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-box ul.pagination{
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--light-white);
    user-select: none;
}

.pagination-box ul.pagination li{
    background: var(--rose1);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .1s;
}

.pagination-box ul.pagination li:hover{
    background: var(--gris);
}

.pagination-box ul.pagination li.active{
    background: var(--gris);
}

.pagination-box ul.pagination li.btn{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.pagination-box ul.pagination li.arr{
    height: 40px;
    border-radius: 20px;
    transition: .2s;
    padding: 0px 10px;
}

.pagination-box ul.pagination li.left:hover{
    transform: translateX(-5px);
}

.pagination-box ul.pagination li.right:hover{
    transform: translateX(5px);
}

.pagination-box ul.pagination li.dot{
    background: transparent;
    border: 1px solid var(--rose1);
    color: var(--rose1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* -------------------------------footer------------------------------- */

footer .first-part{
    width: 100%;
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10%;
    border-radius: 30px;
    min-height: 130px;
    margin-top: 100px;
}

footer .first-part form{
    display: flex;
    align-items: center;
}

footer .first-part form input{
    padding: 10px 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    width: 100%;
}

footer .first-part form {
    width: 50%;
}

footer .first-part form button{
    color: var(--light-white);
    background: var(--rose1);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
}

footer .first-part .text h3{
    color: var(--light-white);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

footer .first-part .text p{
    color: var(--bg2);
    margin-left: 10px;
}

/* ---------------------reseau sociaux--------------------- */
.second-part{
    width: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-box ul.social-el{
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.social-box ul.social-el li{
    background: var(--gris);
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: .2s ease-in;

    i{
        color: var(--light-white);
    }
}

.social-box ul.social-el li:hover{
    transform: translateY(-3px);
}

.social-box p{
    text-align: center;
    color: var(--gris);
    letter-spacing: 1px;
}

p.copyright{
    color: var(--gris);
    font-size: .8rem;
    letter-spacing: 1px;
}


/* ==========================================================================
   Media Queries (Responsive)
   ========================================================================== */

/* ----------------------|||||||||||||||||||||responsive NORMALE 1|||||||||||||||||||||---------------------- */

@media screen AND (max-width: 1330px) {
    .nav-bar .part1{
        padding: 20px 2%;
    }

    .acceuil{
        padding: 0px 3%;
    }

    .cart{
        width: 200px;
    }

    .cart img.cover{
        height: 200px;
    }

    .boutique{
        padding: 20px 5%;
    }
}


@media screen and (max-width: 1000px) {
    .nav-bar i.menu, .nav-bar .btn3 i.menu{
        display: inline-block;
        font-size: 2.3rem;
        color: var(--rose1);
    }

    .nav-bar i.menu:active{
        transform: scale(.8);
    }

    p.fl{
        display: block;
        margin-bottom: 5px;
    }

    p.fl i.ri-close-large-fill{
        position: absolute;
        color: var(--rose1);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        top: -20px;
        left: -30px;
        box-shadow: -2px 2px 2px rgba(0,0,0,0.12);
        background: var(--bg1);
        z-index: 2;
        animation: btn .5s linear;
        animation-delay: .7s;
        display: none;
    }

    @keyframes btn {
        0%{
            transform: scale(0);
            opacity: 0;
        }
        80%{
            transform: scale(1.1);
            opacity: 1;
        }
        100%{
            transform: scale(1);
        }
    }
    
    .nav-bar ul.menu{
        display: block;
        line-height: 50px;
        position: absolute;
        top: 0px;
        right: -100%;
        background: var(--bg2);
        padding: 20px;
        border-radius: 20px;
        width: 220px;
        z-index: 200;
        transition: 1s ease-in-out;
        opacity: 0;
    }

    .nav-bar ul.menu.active{
        right: 0px;
        opacity: 1;
    }
    
    .nav-bar ul.menu li a , .nav-bar ul.menu li{
        font-size: 20px;
        font-weight: 500;
    }
    
    .nav-bar ul.menu li a:hover , .nav-bar ul.menu li:hover{
        color: var(--rose1);
        transform: translateY(0px);
    }
    
    .nav-bar ul.btn{
        display: flex;
        gap: 20px;
        align-items: center;
    }
    
    .nav-bar ul.btn li a{
        font-size: 15px;
    }
    
    .nav-bar ul.menu li:nth-child(4):hover ul.drop, .nav-bar ul.menu li:nth-child(3):hover ul.drop{
        display: block;
        line-height: 25px;
        position: relative;
        margin-bottom: 10px;
    }

    .cart .vv ul.options li{
        transform: translateX(0px);
        opacity: 1;
    }


    
}

@media screen and (max-width: 900px) {

    .acceuil{
        padding: 0px 5%;
    }
    
    .acceuil .acceuil-cont{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 50px;
        min-height: 900px;
    }
    
    .acceuil .acceuil-cont .text p.first{
        font-size: 15px;
        color: var(--rose1);
        text-transform: capitalize;
        font-weight: 900;
        margin-left: 5px;
    }
    
    .acceuil .acceuil-cont .text h1.titre{
        font-size: 2rem;
    }
    
    .acceuil .acceuil-cont .text h5.next{
        width: 100%;
        font-size: 13px;
    }

    .nav-bar ul.btn{
        gap: 5px;
    }

    .cart{
        width: 200px;
    }

    .boutique .box-prod .cart{
        width: 100%;
    }
}

@media screen and (max-width: 750px){
    .acceuil .acceuil-cont{
        flex-direction: column-reverse;
        justify-content: center;
    }

    .acceuil .acceuil-cont img{
        width: 400px;
        margin-bottom: -15px;
    }

    .acceuil .acceuil-cont .text{
        width: 90%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .sec-bann{
        min-height: 200px;
    }

    .sec-bann h1{
        font-size: 2rem;
    }

    .box-prod{
        grid-template-columns: repeat(3, 1fr);
    }

    .cart a.chanel{
        width: 70%;
    }

    .cart .vv ul.options li{
        font-size: 1.1rem;
        font-weight: 200;
    }

    footer .first-part{
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    footer .first-part form{
        width: 90%;
    }

    footer .first-part .text{
        width: 80%;
        text-align: center;
    }
}

@media screen and (max-width: 570px){
    .acceuil .acceuil-cont img{
        width: 370px;
        margin-bottom: -15px;
        margin-top: 100px;
    }

    .nav-bar ul.btn li a{
        font-size: 12px;
    }

    .cart a.chanel{
        width: 70%;
    }

    .cart-box{
        width: 300px;
    }

    .cart-flex td {
        padding: 6px;
    }

    tbody .nom{
        color: var(--gris);
        font-size: 12px;
        letter-spacing: 1px;
        font-style: oblique;
    }

    tbody .qts{
        width: 25px;
        height: 25px;
        font-size: 15px;
    }

    tbody i.ri-delete-bin-6-line{
        font-size: 20px;
    }

}

@media screen and (max-width: 500px){
    .nav-bar ul.btn li a{
        font-size: 10px;
        padding: 10px;
    }

    .nav-bar i.menu{
        font-size: 1.5rem;
    }

    .cart img.cover{
        height: 150px;
    }

    .box-prod{
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 0px 10px;
    }

    .acceuil .acceuil-cont img{
        width: 330px;
        margin-bottom: -15px;
    }
}

@media screen and (max-width: 430px){
    .nav-bar ul.btn li a{
        padding: 5px;
    }

    .nav-bar img{
        width: 150px;
    }

    .recherche.active{
        width: 80%;
    }

    footer .first-part form input, footer .first-part form button{
        font-size: .7rem;
    }

    footer .first-part .text h3{
        font-size: 1rem;
    }
    footer .first-part .text p{
        font-size: .8rem;
    }

    
    p.copyright{
        font-size: .6rem;
    }

    .nav-bar .btn3 img{
        display: none;
    }
}

@media screen and (max-width: 365px){
    .ri-user-3-line{
        display: none;
    }

    .nav-bar ul.btn li a{
        font-size: 8px;
    }
}