/* ظرف نگهدارنده اصلی برای ایجاد فضای حرکت */
.ra-sticky-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.related-articles-sidebar {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 350px;
    direction: rtl;
    box-sizing: border-box;
    border: 1px solid #eee;
}

/* وضعیت چسبان */
.related-articles-sidebar.is-sticky {
    position: fixed;
    /* زد-ایندکس باید از هدر کمتر باشد. هدر وودمارت معمولا 1000 است */
    z-index: 100; 
    transition: top 0.1s ease;
}

/* وضعیت توقف قبل از محصولات مرتبط */
.related-articles-sidebar.is-stopped {
    position: absolute;
    bottom: 30px; /* فاصله از بخش محصولات مرتبط */
    top: auto !important;
}

/* استایل داخلی آیتم‌ها برای زیبایی بیشتر */
.ra-item { display: flex; align-items: center; margin-bottom: 15px; text-decoration: none !important; color: inherit; }
.ra-content h4 { font-size: 14px; margin: 0; line-height: 1.4; color: #333; }
.ra-image img { width: 70px; height: 50px; border-radius: 5px; object-fit: cover; margin-right: 10px; }