.toph-popup-overlay{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background:rgba(12,18,28,.35);
  backdrop-filter:blur(8px);
  z-index:999999;
  padding:12px;
}

.toph-popup-overlay.is-visible{display:flex}

html.toph-popup-open,
body.toph-popup-open{overflow:hidden}

/* 🔥 صغرنا البوب ككل */
.toph-popup-card{
  position:relative;
  width:min(520px,92vw); /* كان 680 */
  max-height:88vh;
  overflow:auto;
  border-radius:26px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(255,255,255,.6);
  box-shadow:0 15px 40px rgba(0,0,0,.2);
}

/* زر الإغلاق */
.toph-popup-close{
  position:absolute;
  top:10px;
  left:10px;
  width:42px;
  height:42px;
  border:0;
  border-radius:12px;
  background:#1d678f;
  color:#fff;
  font-size:22px;
  cursor:pointer;
  z-index:5;
}
[dir="ltr"] .toph-popup-close{left:auto;right:10px}

/* البادج */
.toph-popup-adbadge{
  position:absolute;
  top:50px;
  left:10px;
  z-index:5;
  background:#fff;
  padding:5px 10px;
  border-radius:999px;
  font-size:12px;
}
[dir="ltr"] .toph-popup-adbadge{left:auto;right:10px}

/* 🔥 أهم تعديل: التحكم بالصورة */
.toph-popup-hero-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f4f7fb;
  padding:10px;
}

.toph-popup-hero{
  max-width:100%;
  max-height:220px; /* 🔥 يمنع التضخم */
  width:auto;
  height:auto;
  object-fit:contain;
}

/* النصوص */
.toph-popup-body{
  padding:12px 14px 16px;
  text-align:center;
}

.toph-popup-title{
  font-size:22px;
  margin-bottom:4px;
  font-weight:800;
  color:#0ca54c;
}

.toph-popup-subtitle{
  font-size:15px;
  margin-bottom:10px;
  font-weight:700;
  color:#2d8fd2;
}

.toph-popup-promo-row{
  display:flex;
  flex-direction:column;
  gap:6px;
  background:#fff;
  border-radius:16px;
  padding:8px;
  margin-bottom:10px;
}

.toph-popup-promo-label{
  font-size:13px;
}

.toph-popup-promo-code{
  font-size:18px;
  font-weight:800;
  padding:6px 10px;
  border-radius:10px;
  background:#f5f7fb;
}

/* الوصف */
.toph-popup-desc{
  font-size:13px;
  line-height:1.5;
  margin-bottom:10px;
}

/* أزرار المتاجر */
.toph-popup-store-row{
  display:flex;
  justify-content:center;
  gap:8px;
}

.toph-popup-store-link img{
  width:110px;
  height:auto;
}

/* الفوتر */
.toph-popup-footer-note{
  font-size:11px;
  margin-top:6px;
  color:#777;
}
@media (max-width:640px){

  .toph-popup-overlay{
    padding:0 !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .toph-popup-card{
    width:82vw !important;
    max-width:320px !important;
    max-height:78vh !important;
    border-radius:18px !important;
    overflow:auto !important;
  }

  .toph-popup-hero-wrap{
    height:auto !important;
    max-height:160px !important;
    padding:6px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .toph-popup-hero{
    width:auto !important;
    max-width:100% !important;
    height:auto !important;
    max-height:150px !important;
    object-fit:contain !important;
  }

  .toph-popup-body{
    padding:8px 10px 10px !important;
  }

  .toph-popup-title{
    font-size:18px !important;
    line-height:1.2 !important;
    margin-bottom:3px !important;
  }

  .toph-popup-subtitle{
    font-size:13px !important;
    line-height:1.25 !important;
    margin-bottom:6px !important;
  }

  .toph-popup-promo-row{
    padding:6px !important;
    gap:4px !important;
    margin-bottom:6px !important;
    border-radius:12px !important;
  }

  .toph-popup-promo-label{
    font-size:12px !important;
  }

  .toph-popup-promo-code{
    font-size:16px !important;
    padding:5px 10px !important;
    min-width:auto !important;
    border-radius:10px !important;
  }

  .toph-popup-desc{
    font-size:12px !important;
    line-height:1.35 !important;
    margin-bottom:7px !important;
  }

  .toph-popup-store-row{
    gap:6px !important;
    margin-bottom:4px !important;
  }

  .toph-popup-store-link img{
    width:92px !important;
    max-width:38vw !important;
  }

  .toph-popup-footer-note{
    font-size:10px !important;
  }

  .toph-popup-close{
    width:34px !important;
    height:34px !important;
    top:7px !important;
    left:7px !important;
    font-size:20px !important;
    border-radius:10px !important;
  }

  [dir="ltr"] .toph-popup-close{
    left:auto !important;
    right:7px !important;
  }

  .toph-popup-adbadge{
    display:none !important;
  }
}