/* ============================================
   NAVBAR
   ============================================ */
.navbar-mayorista {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 50px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.navbar-mayorista .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
}

.navbar-mayorista .logo-icon {
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    position: relative;
}

.navbar-mayorista .logo-icon::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

.navbar-mayorista .logo-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
}

.navbar-mayorista .nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.navbar-mayorista .nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 20px;
    transition: background 0.3s;
}

.navbar-mayorista .nav-links a.active {
    background: #000;
    color: #fff;
    border-radius: 30px;
}

.navbar-mayorista .nav-icons {
    display: flex;
    align-items: center;
    gap: 22px;
}

.navbar-mayorista .nav-icons a {
    color: #000;
    text-decoration: none;
    font-size: 20px;
    transition: opacity 0.3s;
}

.navbar-mayorista .nav-icons a:hover {
    opacity: 0.6;
}