
    .container {
        display: flex;
        transition: padding-left 0.3s ease;
        width: 100%;
        justify-content: center;
    }
    
    .menu-container-button{
        display: flex;
    flex-direction: column;
    align-items: stretch;
    }

    .sidebar {
        background: #3E3833;
        color: white;
        /*padding: 10px 0;*/
        transition: width 0.1s ease-in-out;
        /*height: 100vh;*/
        overflow: hidden;
        /*width: 60px;*/
        position: fixed;
        top: 0;
        /*left: 0;*/
        z-index: 1000;
        left: -250px;
        width: 250px;
        height: 100%;
        background-color: #3E3833;
        /*padding-top: 60px;*/
    }

    .sidebar .toggle-btn {
        background: transparent;
        color: white;
        border: none;
        cursor: pointer;
        font-size: 20px;
        /*padding: 15px;*/
        /*width: 100%;*/
        text-align: left;
        margin-left: 7px;
        position: fixed;
        top: 10%;
        left: -15px;
        z-index: 1100;
        background-color: #3E3833;
        padding: 5px 17px;
        border-radius: 10px;
        /*width: 51px;*/
        box-shadow: 2px 0px 15px rgb(119, 112, 105);
    }
    
    .sidebar-content{
        overflow-y: auto;
        height: 100%;
    }
    
    .menu-toggle {
        position: fixed;
        top: 60px;
        /*left: 10px;*/
        background-color: #3E3833;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 0 20px 20px 0;
        cursor: pointer;
        font-size: 18px;
        z-index: 1200;
        /*box-shadow: 2px 0px 15px rgba(0,0,0,0.3);*/
        transition: left 0.1s ease-in-out;
    }

    .sidebar.open {
        width: 220px;
        left: 0;
    }

    /*.sidebar.closed {*/
    /*  width: 60px;*/
    /*  min-width: 60px;*/
    /*}*/

    /*.sidebar.closed .menu-list span,*/
    /*.sidebar.closed .menu-list img,*/
    /*.sidebar.closed .expand_menu {*/
    /*  display: none;*/
    /*}*/

    /*.container.sidebar-closed .main-content {*/
    /*  margin-left: 0;*/
    /*}*/

    .menu-list {
        list-style: none;
        padding: 0;
        /*padding-top: 20px;*/
        margin: 0;
    }

    .menu-list li {
        margin: 15px 0;
        position: relative;
    }

    .menu-list a {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        color: white;
        text-decoration: none;
        transition: background 0.2s ease;
    }

    .menu-list li a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .menu-list img{
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

    .menu-list .name {
        margin-left: 12px;
        white-space: normal;
        /*word-break: break-word;*/
        opacity: 0;
        transition: opacity 0.2s ease;
        max-width: 160px;
        display: block;
        line-height: 1.3;
    }

    /*.menu-list span{*/
    /*    padding-left: 10px;*/
    /*    transition: all .25s ease-in-out;*/
    /*    -webkit-transition: all .25s ease-in-out;*/
    /*    color: #ffffff;*/
    /*    margin-right: 10px;*/
    /*}*/

    .sidebar.open .menu-list .name {
        opacity: 1;
    }

    .main-content {
        transition: margin-left 0.3s ease;
        margin-left: 60px;
        padding: 60px 20px 30px 20px;
        max-width: 1200px;
        width: 100%;
    }

    .sidebar.open ~ .main-content {
        margin-left: 220px;
    }

    .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }

    .card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .card:hover {
        transform: translateY(-5px);
    }

    .card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .card p {
        padding: 10px;
        font-weight: bold;
    }
    
    .card-body {
    background-color: #332f2c;
    color: white !important;
    }
    
    .title-card{
        padding: 15px 0 0 0;
        font-weight: bold;
        height: 4em;
    }
    
    .product-image-slide{
        width: 100%;
        height: 800px;
        object-fit: cover;
        display: block;
        border-radius: 8px;
    }

    ul.breadcrumb {
        background-color: #ceced0;
        width: 100%;
        padding: 0.5rem 1rem;
        border-radius: 0;

    }

    ul.breadcrumb li {
        display: inline-block;
        text-transform: capitalize;
        font-size: 13px;
        margin-right: 3px;
        padding-right: 13px;
        position: relative;
        line-height: 1.5;
    }

    ul.breadcrumb li:before {
        position: absolute;
        content: "/";
        right: 0;
        top: 50%;
        transform: translatey(-50%);
    }

    ul.breadcrumb li a {
        color: #721c45;
        text-decoration: none;
    }

    .main-content h1{
        display: block;
        width: 100%;
        color: #24211d;
        text-align: center;
        font-size: 25px;
        font-weight: bold;
        margin-top: 20px; 
        margin-bottom: 20px;
        z-index: 20;
        padding: 0 15px;
        line-height: 1.5;
        font-family: 'barlow';
        text-transform: uppercase;
    }

    .page-header {
        position: relative;
        top: 0;
        z-index: 900;
        background: rgba(243, 243, 243, 0.5);
        width: 100%;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .header-inner {
        max-width: 1140px;
        margin: 0 auto;
    }

    .header-inner .logo{
        text-align: center;
    }

    .header-inner .logo img{
        max-height: 50px;
        margin: 0 auto;
        border-radius: 10px;
        /*padding: 0 10px;*/
        background: #3b3939;
    }

    .content-wrapper {
        transition: margin-left 0.3s ease;
        /*margin-left: 60px;*/
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sidebar.open ~ .content-wrapper {
        margin-left: 220px; 
    }
    
    .header-buttons {
        position: absolute;
        top: 50%;
        left: 6%;
        transform: translateY(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }
    
    .header-btn {
        background-color: #3E3833; 
        color: white;
        border: none;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        font-size: 12px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        transition: background 0.2s ease;
    }
    
    .header-btn:hover {
        background-color: #ED8A1D;
    }
    
        .product_detail {
        margin: 0 auto;
        overflow: hidden;
    }
    .no-blur {
    filter: blur(0);
    transition: filter .5s .5s ease-in;
    max-width: 100%;
}
.blur {
    /*filter: blur(25px);*/
    animation-name: example;
    animation-duration: .5s;
    animation-delay: .5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}
.box-shadow {
    box-shadow: 0px 0px 15px rgb(119, 112, 105);
}
.product_detail .detail {
    text-align: center;
    margin: 20px 0;
    color: #332525;
}
.product_detail .detail .bordered_area {
    border-top: 3px solid #3E3833;
    border-bottom: 3px solid #3E3833;
    display: inline-block;
    padding: 10px 30px 7px;
    position: relative;
    margin-bottom: 20px;
}
.product_detail .detail .bordered_area:before{
    content: "";
    position: absolute;
    top: -21px;
    left: calc(50% - 10px);
    border: solid transparent;
    border-color: rgba(0, 0, 0, 0);
    border-bottom-color: #3E3833;
    border-width: 10px;
    height: 0;
    width: 0;
    pointer-events: none;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}
.product_detail .detail span.product_name {
    text-transform: uppercase;
    margin: 0 auto;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}
.product_detail .detail span.product_price {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

.product_detail .detail .bordered_area:after {
    content: "";
    position: absolute;
    bottom: -21px;
    left: calc(50% - 10px);
    border: solid transparent;
    border-color: rgba(0, 0, 0, 0);
    border-top-color: #3E3833;
    border-width: 10px;
    height: 0;
    width: 0;
    pointer-events: none;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}
.product_detail .detail span.product_description {
    display: block;
    text-align: justify;
    padding: 0 10px;
    line-height: 1.5;
}
.produit-title{
    font-weight: bold;
    font-size: 20px;
    color: #332525;
    text-transform: uppercase;
    margin: 20px 0;
    text-align: center;
}
.produit-element{
    width: 800px;
    max-width: 100%;
}

.related-swiper-container {
  padding: 20px 10px;
}
.swiper-slide .card {
  /*padding: 10px;*/
  background: #332f2c;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
  color: white;
  border: none;
}
.swiper-slide img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
}

.custom-lang-dropdown{
    padding: 0px !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 8px !important;
    min-width: 80px !important;
}

.dropdown-item{
    background-color: #3E3833 !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    width: 30px !important;
    height: 30px !important;
    font-size: 12px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    transition: background 0.2s ease !important;
    margin: 5px 0;
}
.dropdown-item:hover{
    background-color: #ED8A1D !important;
}

#scrollspy-nav .nav-link.active {
    background-color: #ED8A1D !important;
    color: white !important;
}

#scrollspy-nav{
    position: sticky;
    top: 10px;
    z-index: 99;
    padding: 10px 0;
    margin-bottom: 20px;
    background: transparent;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

#scrollspy-nav .nav-link{
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 20px;
    background-color: rgb(241, 241, 241);
    color: rgb(0, 0, 0);
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.section-title-style{
    font-weight:300;
    font-size:30px;
}

.tag-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px; /* reduce horizontal and vertical spacing */
}

.tag-card {
    background-color: #3e383300;
    border-radius: 10px;
    padding: 0 0 12px 0;
    width: 230px; /* slightly increased */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease;
    border: 2px solid #ed8a1d;
}

.tag-card:hover {
    transform: translateY(-3px);
}

.tag-card strong {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    color: #ed8a1d;
    border: 1px solid #3E3833;
    background-color: #3E3833;
    padding: 10px;
    border-radius: 5px 5px 0 0;
}

.tag-card p {
    font-size: 14px;
    color: #3E3833;
    margin: 0;
    font-weight: 600;
    padding: 0 16px;
}

@media (max-width: 767.98px) {
/*    .content-wrapper {*/
/*    margin-left: 60px !important;*/
/*}*/
.main-content {
    margin-left: unset;
}
.header-inner .logo {
    text-align: right;
    padding-right: 20px;
}
 .sidebar {
        width: 60px;
        transition: left 0.3s ease;
    }

    .sidebar.open {
        left: 0;
    }

    .overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 999;
    }

    .sidebar.open + .overlay {
        display: block;
    }
    
    .sidebar.open ~ .content-wrapper {
    margin-left: unset;
}

.product-image-slide {
    height: auto;
}

.title-section-mobile{
    text-align: center;
    font-size: 25px !important;
}

.card img {
        height: 150px;
    }
    
    #scrollspy-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        /*padding: 10px;*/
        -webkit-overflow-scrolling: touch;
    }
    
    #scrollspy-nav::-webkit-scrollbar {
        display: none;
    }
    
    .card-title {
        font-size: 14px;
        text-transform: uppercase !important;
    }
    
    .swiper-slide img {
        height: 200px;
    }
    
    .title-card{
        height: unset;
    }
    
    .section-title-style{
        font-size: 25px;
        text-align: center;
    }
    
    .tag-card {
        width: calc(50% - 10px);
    }

}

@media screen and (min-width: 600px) and (max-width: 1024px) {
/*        .content-wrapper {*/
/*    margin-left: 60px !important;*/
/*}*/
.main-content {
    margin-left: unset;
}

.tag-card {
        width: calc(33.333% - 12px);
    }
}