/* ============================================
   v2/css/ads.css
   استایل تبلیغات
   سایت اخبار استقلال — نسخه ۲
   ============================================ */

/* ============================================
   Wrapper عمومی
   ============================================ */
.ad-wrapper {
  position: relative;
  margin: 12px 0;
  background: linear-gradient(145deg, #f8fafc, #f0f2f5);
  border: 1px dashed #d0d8e8;
  border-radius: 12px;
  padding: 20px 10px 10px;
  overflow: hidden;
  min-height: 70px;
  direction: rtl;
}

/* ============================================
   دکمه بستن (×) — می‌ره صفحه فروشگاه
   ============================================ */
.ad-close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, .45);
  color: #fff;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  text-decoration: none;
  transition: background .2s, transform .2s;
  touch-action: manipulation;
  cursor: pointer;
}

.ad-close:hover,
.ad-close:active {
  background: rgba(231, 76, 60, .9);
  transform: scale(1.15);
}

/* ============================================
   برچسب «تبلیغ»
   ============================================ */
.ad-label {
  position: absolute;
  top: 5px;
  left: 5px;
  background: linear-gradient(145deg, #f5c842, #e0b02e);
  color: #1560bd;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: .55rem;
  font-weight: 800;
  z-index: 10;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ============================================
   محتوای تبلیغ
   ============================================ */
.ad-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  width: 100%;
  overflow: hidden;
}

.ad-content img,
.ad-content iframe,
.ad-content video {
  max-width: 100%;
  display: block;
}

.ad-content > * {
  max-width: 100%;
}

/* ============================================
   حالت لودینگ
   ============================================ */
.ad-loading {
  text-align: center;
  padding: 20px 10px;
  color: #aab8c8;
  font-size: .75rem;
}

.ad-loading::before {
  content: '⏳ ';
}

/* ============================================
   حالت خالی (اگه کد تبلیغ نبود)
   ============================================ */
.ad-empty {
  text-align: center;
  padding: 16px 10px;
  color: #aab8c8;
  font-size: .72rem;
  font-style: italic;
}

/* ============================================
   گپ — چسبیده بالا (sticky)
   ============================================ */
.chat-page .ad-wrapper.ad-sticky,
.ad-wrapper.ad-sticky {
  position: sticky;
  top: 0;
  z-index: 15;
  margin: 0 0 8px 0;
  border-radius: 0 0 12px 12px;
  background: #fff;
  border: none;
  border-bottom: 2px solid #f0f2f5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

/* توی گپ، padding کمتر */
.chat-page-messages .ad-wrapper {
  margin: 8px 0 12px;
}

/* ============================================
   Placeholder توی حالت ادمین (بدون تبلیغ)
   ============================================ */
.ad-wrapper.ad-placeholder {
  background: repeating-linear-gradient(
    45deg,
    #f8fafc,
    #f8fafc 10px,
    #f0f2f5 10px,
    #f0f2f5 20px
  );
  border: 1px dashed #b0b8c8;
}

.ad-wrapper.ad-placeholder .ad-content {
  color: #7a8a9a;
  font-size: .75rem;
  font-weight: 600;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 380px) {
  .ad-wrapper {
    padding: 18px 8px 8px;
    margin: 10px 0;
  }
  .ad-close {
    width: 18px;
    height: 18px;
    font-size: .65rem;
  }
  .ad-label {
    font-size: .5rem;
    padding: 1px 6px;
  }
  .ad-content {
    min-height: 40px;
  }
}