/* افتراضي: مخفي */
.sticky-ads {
  display: none;
}

/* موبايل فقط */
@media (max-width: 768px) {

  .sticky-ads {
    position: fixed;

    /* يبدأ تحت الشاشة */
    bottom: -820px;

    /* توسيط أفقي */
    left: 50%;
    transform: translateX(-50%);

    /* المقاسات اللي طلبتيها */
    width: 390px;
    min-height: 700px;
    max-height: 760px;

    padding: 5px 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;

    z-index: 99999;

    /* حركة الطلوع */
    transition: bottom 0.4s ease;

    box-shadow: 0 -6px 18px 0 rgba(9,32,76,0);
  }

  /* لما يظهر */
  .sticky-ads.show {
    bottom: 50px; /* يطلع لفوق شوية */
  }

  /* محتوى الإعلان */
  .sticky-ads-content {
    width: 390px;
    height: 760px;
    max-height: 800px;
    overflow: hidden;
  }
}
