

/* Navbar */
.navbar_section{
    width: 100%;
    height: 50px;
}

.navbar_fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002; /* Au-dessus du sidebar */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}



.navbar_section_container{
    display: flex; justify-content:space-between; background-color: white; border-bottom: 1px solid rgb(230, 230, 230);
}
.logo_navbar{
    height: 50px; width: 150px;
}

.navbar_links {
    display: flex;
}


.navbar_item {
    font-weight: 600;
    border-top: 3px solid transparent ;
    padding: 10px;
    cursor: pointer;
}

.navbar_item a {
    text-decoration: none;
    color: black;
}

.navbar_item.active {
    font-weight: 600;
    border-top: 3px solid orange;
}

.sidebar_toggle_btn {
    border-radius: 2px;
    background-color: rgb(26, 26, 26);
    height: 50px;
    width: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.burger_icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 30px;
    width: 30px;
}

.burger_icon .line {
    background-color: white;
    height: 3px;
    width: 100%;
    margin-top: 3px;
}

.sidebar_content {
    padding: 30px;
}

.sidebar_text {
    margin: 10px 0;
}











/* Sidebar r********************************************************************************  */
/* Style pour l'overlay */
#sidebarOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7); /* Overlay semi-transparent */
    z-index: 1000; /* Pour s'assurer que ça passe au-dessus des autres éléments */
    display: none; /* Caché par défaut */
}


/* Style pour le sideba*/
#sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background-color: #111;
    color: white;
    z-index: 1001; /* Au-dessus de l'overlay */
    transition: transform 0.3s ease; /* Animation fluide */
    transform: translateX(-100%); /* Hors de l'écran par défaut */
}
/* Lorsque le sidebar est ouvert */
#sidebar.open {
    transform: translateX(0); /* Le sidebar est visible */
}
/* Style du bouton de fermeture du sidebar */
#closeSidebar {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    cursor: pointer;
}
/* Cacher la barre de navigation sur mobile */
@media only screen and (max-width: 768px) {
    .navbar_links {
        display: none;
    }

    /* Le sidebar sera affiché pour les petits écrans */
    #sidebar {
        display: block;
    }
}






/* Home ******************************************************************* */





/* homestart */


#sliderContainer {
    visibility: hidden;
    background-color: #595959;
}
#sliderContainerBrand{
    visibility: hidden;
}


.homestart_section{
    min-height: 500px;;
    width: 100%; margin-top: 3px; padding: 10%;
    flex-wrap: wrap;
    justify-content: center;

}
.homestart_section_container{
    width: 100%; border-bottom: 1px orange;
    justify-content: center;
}


/* #laitiers, #electromenager, #computer, #assessory_home, #cuisine, #meubles {
    display: none;
} */

.homestart_section_container_title{
    position: relative; border-bottom: 1px rgb(204, 204, 204);display: flex; flex-direction: column; justify-content: end
}

.homestart_section_container_relative{
    position: relative;
}
.homestart_container{
    width:70%;display: flex;flex-direction: row;align-items: center; position: absolute;top: 10%;right: 10%;
}

.homestart_container_rounded_btn{
    border-radius: 50%;background: rgb(227, 204, 0);height: 40px;width: 40px;display: flex; justify-content: center; align-content: center;
    cursor: pointer;
}

.homestart_img{
    width: 100%;height: 300px;
}



.home_item_product_text_active{
    width: 22%; padding-bottom: 10px; margin: 5px; border-bottom: 2px solid orange; padding: 8px;
}


.home_item_product_text{
    width: 22%; padding-bottom: 10px; margin: 5px; border-bottom: 2px solid rgb(248, 248, 248); padding: 8px;
}



/* Styles pour le carrousel */
.custom-carousel-container {
    position: relative;
    width: 70%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.custom-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.custom-carousel-inner {
    display: flex;
    flex-wrap: nowrap;
}

.custom-carousel-item {
    min-width: 100%;
    flex: 0 0 auto;
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.5s ease-in-out;
}

.custom-carousel-item.active {
    opacity: 1;
}

.brand-image {
    width: auto;
    height: 150px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 10px;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

/* Boutons de navigation */
.custom-carousel-control-prev,
.custom-carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
}

.custom-carousel-control-prev {
    position: absolute;
    left: 0;
}

.custom-carousel-control-next {
    position: absolute;
    right: 0;
}

.custom-carousel-control-prev:hover,
.custom-carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* Responsive Carousel Styles marques */
@media (min-width: 1024px) {
    .custom-carousel-container {
        width: 70%;
    }
    .custom-carousel-item {
        min-width: calc(100% / 3);
        opacity: 0.5;
    }
    .custom-carousel-item.active,
    .custom-carousel-item.active + .custom-carousel-item,
    .custom-carousel-item.active + .custom-carousel-item + .custom-carousel-item {
        opacity: 1;
    }
}

@media (max-width: 1023px) {
    .custom-carousel-container {
        width: 90%;
    }
    .custom-carousel-item {
        min-width: 100%;
    }
}






/* homeblog  */
.homeblog_section{

    width: 100%; padding: 4%;padding-top: 5%;margin-top: 100px;margin-bottom: 50px; display: flex; justify-content: center
}

.homeblog_btn_border{
    padding:10px 10px 10px 0px;border-bottom: 2px rgb(208, 208, 208) solid ;cursor: pointer;
}

.homeblog_btn_selected{
    padding:10px 10px 10px 0px;border-bottom: 4px rgb(224, 202, 0) solid ;cursor: pointer;
}

.homeblog_section_btn{
    width:70%;display: flex;flex-direction: row;align-items: center;
}



/* hometesttimonial */
.hometestimonial_section{
    max-height: 700px; width: 100%; position: relative; margin-top: 3px;
}
.homeblog_bg_color{
    max-height: 500px; width: 100%; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(255, 251, 0, 0.429); z-index: 60; display: flex; justify-content: center; align-items: center;
}
.homeblog_container{
    max-height: 500px; width: 50%; position: absolute; top: 0; left: 10%; bottom: 0; z-index: 60; display: flex; justify-content: center; align-items: center;
}


.homeblog_container_bg{
    text-align: start; justify-content: start; text-align: start
}
.homeblog_container_title{
    font-size: 35px;font-weight: 700;
}
.homeblog_customer{
    font-size: 10px;
}
.homeblog_customer_info{
    font-size: 12px; font-weight: 800;
}
.homeblog_img_bg{
    width: 50px;height: 50px; border-radius: 50%;
}




/* homeavantage */
.homeavantage_section{
background-color:rgb(222, 222, 222) ; width: 100%; margin-top: 0px; justify-content: center; padding: 10%;
}
.homeavantage_img{
    width: 50px;height: 50px;
}
.homeavantage_title{
    font-size: 14px;font-weight: 700;
}



.homeproduct_section{
    width: 100%; margin-top: 3px; justify-content: center; padding: 10%;
}


.homeproduct_title{
    margin-bottom : 100px;
}

.homeproudct_section_container{
    margin-left: -30px; justify-content: start; justify-content: space-between ;display: flex; flex-wrap: wrap;
}
.homeproduct_item{
    width: 300px;
}

.homeproduct_item_img{
    width: 300px;height: 350px;
}
.homeproduct_item_title{
    text-align: center;
}

.step-navigation {
    display: flex;
    align-items: center;
}

.step {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #ffc107;
    font-size: 15px;
    font-weight: bold;
    margin-right: 20px;
    cursor: pointer;
    background-color: white;
    color: black;
}

.step-navigation .step.active {
    background-color: #ffc107; /* Couleur pour l'état actif */
    color: #fff;
}

#step1 {
    background-color: #ffc107;
    color: white;
}

.next-arrow {
    width:100px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #ffc107;
    border-bottom-right-radius: 20px;
    font-size: 30px;
    cursor: pointer;
    background-color: white;
}








/* homeactue */
.homeactu_section{
    width: 100%; margin-top: 50px; justify-content: start; padding: 10%;
}
















/* product barner */
.product-banner {
    height: 220px;
    width: 100%;
    position: relative;
    margin-top: 3px;
    overflow: hidden;
    background-color: rgb(255, 225, 0);
}

.product-banner-image {
    width: 100%;
    height: 500px;
    background-size: contain;
    background-repeat: no-repeat;
}

.product-banner-overlay {
    height: 220px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 60;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-banner-content {
    height: 220px;
    width: 70%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-banner-text {
    color: white;
    text-align: start;
}

.product-announcement {
    margin-top: 50px;
    text-align: start;
}

.product-title {
    font-size: 30px;
    padding-bottom: 5px;
}

.search-bar {
    display: flex;
    justify-content: start;
    margin-top: 10px;
}

.search-input {
    padding: 10px;
    border: 2px solid white;
    background-color: white;
    border-radius: 10px;
    width: 220px;
    height: 50px;
}

.search-btn {
    margin-left: 10px;
    padding: 0 20px;
    border-radius: 10px;
}

.product-banner-decoration {
    height: 1800px;
    width: 800px;
    position: absolute;
    top: -100%;
    right: 10%;
    z-index: 100;
    background-color: rgb(255, 225, 0);
    transform: rotate(60deg);
}






/* products discount */
/* Container for the whole section */
.product-discount-section {
    width: 100%;
    margin-top: 150px;
    padding: 10%;
}

/* Left side text content */
.discount-info {
    display: flex;
    flex-direction: column;
    justify-content: start;
    justify-items: start;
}

.discount-title {
    font-size: 30px;
    font-weight: 700;
    text-align: start;
}

.discount-subtitle {
    margin-top: 20px;
    text-align: start;
}

.btn-discover {
    background: rgb(227, 204, 0);
    border: none;
    font-weight: 700;
    margin-top: 20px;
    text-align: start;
}

.btn-text {
    background: rgb(227, 204, 0);
    padding: 10px 20px 10px 20px;
    justify-content: center;
    display: flex;
    font-weight: 700;
}

/* Right side images */
.discount-image-container {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 300px;
}

.discount-image {
    height: 300px;
    width: 300px;
}

.discount-offer-container {
    align-items: center;
    display: flex;
    justify-content: center;
}

.discount-offer-box {
    background-color: black;
    height: 300px;
    width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.discount-icon-container {
    display: flex;
    justify-content: center;
    padding: 20px 25%;
}

.discount-icon {
    height: 100px;
    width: 100px;
}

.discount-text {
    color: white;
    font-size: 25px;
    transform: rotate(5deg);
    padding: 10px 0;
}

.discount-percentage {
    color: rgb(227, 204, 0);
    font-size: 80px;
    font-weight: 800;
}








/* Section container */
.product-list-section {
    width: 100%;
    margin-top: 50px;
    /* padding: 10%; */
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

/* Section header */
.section-header {
    margin-bottom: 20px;
    text-align: start;
}

.section-header h2 {
    font-size: 2em;
}

/* Product grid */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Individual product item */
.product-item {
    width: 300px;
    margin-bottom: 20px;
    width: 350px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}

.product-image {
    width: 290px;
    height: 340px;
    object-fit: cover;
}


.product-title {
    margin-top: 10px;
    font-size: 1.5em;
}


.product-image:hover {
    transition: 0.3s;
    width: 310px;
    height: 340px;
    object-fit: cover;
}


.product-title:hover {
    transition: 0.3s;
    margin-top: 10px;
    font-size: 1.5em;
}




.pourcentage_section{
    width: 100%; padding: 0px 15% 0 15%;
    transform: rotate(0deg);
    animation: pulse 5s infinite;
}

/* Définition de l'animation */
@keyframes pulse {
    0%, 100% {
        transform: rotate(1deg); /* État initial et final */
    }
}



.pourcentage {
    color: rgb(227, 204, 0);
    font-size: 80px;
    font-weight: 800;

}







.contact-container {
    width: 100%;
    margin-top: 0;
}

.iframe-container {
    width: 100%;
    height: 500px;
}

.contact-content {
    width: 100%;
    padding: 10%;
}

.contact-details h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-description {
    margin: 20px 0 0;
}

.contact-info .info-item {
    display: flex;
    text-align: start;
    justify-items: start;
    align-items: center;
    margin: 10px 0px 0px 0px;
}

.contact-info .info-item i {
    margin-right: 0px;
}

.info-link {
    text-decoration: none;
    color: grey;
    font-weight: 500;
    font-size: 12px;
}

.contact-form .form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
}

.btn-warning {
    background-color: #ffcc00;
    color: black;
    border: none;
}








/* 3D Image rendu */
.zoom-image {
    transition: transform 0.3s ease; /* Transition douce */
    cursor: pointer; /* Change le curseur pour indiquer l'interactivité */
}

.zoom-image:hover {
    transform: scale(1.2); /* Applique un zoom à 120% */
}
