.btn-gradient-orange {
  background: linear-gradient(to right, #e85c0d, #faba1d);
  color: white;
  border: none;

}


/* Structure de base */
.mobile-menu-wrapper {
    position: relative;
    z-index: 1050;
}

.mobile-offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1050;
    overflow-y: auto;
}

.mobile-offcanvas.show {
    transform: translateX(0);
}

/* Boutons et en-tête */
.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile_currency {
    display: flex;
    gap: 10px;
    padding: 15px;
}

.menu-icons {
    display: flex;
    justify-content: space-around;
    padding: 10px;
}

.menu-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e85c0d;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menu principal */
.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile_dropdown {
    position: relative;
    border-bottom: 1px solid #eee;
}

.menu-item-button {
    width: 100%;
    text-align: left;
    padding: 12px 15px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.submenu-container {
    overflow: hidden;
    transition: all 0.3s ease;
    max-height: 0;
    opacity: 0;
}

.inner_menu {
    padding-left: 20px;
    list-style: none;
    margin: 0;
}

/* Onglets */
.tab-buttons {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.tab-buttons button {
    flex: 1;
    padding: 10px;
    border: none;
    background: none;
    cursor: pointer;
}

.tab-buttons button.active {
    border-bottom: 2px solid #e85c0d;
    font-weight: bold;
}

/* Animation des icônes */
.fa-angle-down, .fa-angle-up {
    transition: transform 0.3s ease;
}

.mobile_submenu_open .fa-angle-down {
    transform: rotate(180deg);
}

/* Bouton Hamburger */
.hamburger-button {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1060;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

.hamburger-icon.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-icon.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Overlay et animations */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.visible {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1050;
    overflow-y: auto;
}

.mobile-menu-wrapper.open {
    transform: translateX(0);
}

.product_item .price {
    font-weight: bolder;
    font-size: 20px;
}