.mbe-header-53aee125 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: transparent;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Montserrat', 'Poppins', sans-serif;
    padding: 20px 0;
}

.mbe-header-53aee125.mbe-sticky-53aee125 {
    position: fixed;
    background-color: rgba(34, 34, 34, 0.95);
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mbe-header-container-53aee125 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mbe-logo-53aee125 img {
    height: 50px;
    width: auto;
    display: block;
}

.mbe-nav-53aee125 {
    display: flex;
    align-items: center;
}

.mbe-menu-53aee125 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 25px;
}

.mbe-menu-53aee125 a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.mbe-menu-53aee125 a:hover {
    color: #40e0d0;
}

.mbe-btn-tienda-53aee125 {
    background-color: #ff8c42;
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: background-color 0.3s ease !important;
}

.mbe-btn-tienda-53aee125:hover {
    background-color: #40e0d0;
}

.mbe-mobile-toggle-53aee125 {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mbe-mobile-toggle-53aee125 span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: 0.3s;
}

@media (max-width: 991px) {
    .mbe-header-container-53aee125 {
        position: relative;
        justify-content: center;
    }
    
    .mbe-logo-53aee125 {
        margin: 0 auto;
    }
    
    .mbe-mobile-toggle-53aee125 {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .mbe-nav-53aee125 {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #222222;
        display: none;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .mbe-nav-53aee125.mbe-nav-active-53aee125 {
        display: flex;
    }

    .mbe-menu-53aee125 {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .mbe-menu-53aee125 li {
        width: 100%;
        text-align: center;
    }
    
    .mbe-menu-53aee125 a {
        display: block;
        padding: 10px;
    }
    
    .mbe-menu-tienda-53aee125 {
        margin-top: 10px;
    }
}