I'm not sure where your problem may be but for a pop up box I like to use the follow:
#element{
position:fixed;
min-width:30%;
max-width:40%;
min-height:30%;
max-height:40%;
top:35%;
left:30%;
border:15px solid #333333;
background:#FFFFFF;
z-index:1000;//on the 1000th layer
-webkit-border-radius:10px;
-moz-border-radius:10px;
-o-border-radius:10px;
border-radius:10px;
}
It would be handy to see some code so I could give you more details as to where it's going wrong etc. As it's a facebook plugin I'm guessing it's using facebook's CSS. So you may want to think about applying your custom styles using an alternative method like using javascript.
But saying that you may have layered your products box on the same layer as the plugin. Change the layer of the product box to say (current-1).