/* Basic popup styles */
.popupcustom-overlay{
  position: fixed;
  left:0;right:0;top:0;bottom:0;
  background: rgba(0,0,0,0.6);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.popupcustom-inner{
  background:#fff;
  max-width:900px;
  width:90%;
  border-radius:12px;
  overflow:hidden;
  display:flex;
  gap:20px;
  align-items:stretch;
}
.popupcustom-media img{max-width:380px;width:100%;height:auto;display:block; background-color:red;}
.popupcustom-content{padding:20px;flex:1;}
.popupcustom-btn{padding:10px 18px;border:none;border-radius:8px;cursor:pointer;}
@media (max-width:720px){
  .popupcustom-inner{flex-direction:column;}
  .popupcustom-media img{max-width:100%;}
}