.navegacion-productos {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.navegacion-productos .nav-link {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 15px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.navegacion-productos .nav-link:hover {
    background-color: #e0e0e0;
}