/* Masaüstünde göster, mobil/tablette gizle */
@media (max-width: 1199.98px) {
    #sticky-right-ad { display: none !important; }
}

/* Varsayılan: sağ üstten sabit dursun */
.sticky-right-ad{
    position: fixed;
    top: 80px;              /* header yüksekliğine göre ayarla */
    right: 16px;            /* basit mod: ekranın sağından 16px */
    z-index: 9999;
    width: 160px;           /* görsel genişliği */
    line-height: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;       /* görselden taşma olursa hoş dursun */
}

/* Kapatma düğmesi */
.sticky-right-ad .sticky-close{
    position: absolute;
    top: 6px;
    left: 6px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background: rgba(0,0,0,.6);
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    cursor: pointer;
}

.sticky-right-ad img{
    display: block;
    width: 160px;
    height: auto;
}
