/* دکمه استیکی با ظاهر U چرخیده به چپ و دارای متن */
.dms-sticky-filter-btn {
    position: fixed;
    left: 0;
    bottom: 120px;
    height: 45px;
    background-color: #052c65; /* رنگ تیره درخواستی شما */
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* فاصله یکپارچه بین آیکون و متن */
    z-index: 1050;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(5, 44, 101, 0.3); /* سایه همرنگ دکمه */

    /* تنظیم ظاهر U شکل متناسب با متن */
    border-radius: 0 30px 30px 0;
    padding: 0 16px 0 12px; /* تنظیم فضای داخلی به جای عرض ثابت */
    transition: all 0.3s ease;
}

.dms-sticky-filter-btn .dms-filter-text {
    font-size: 14px;
    font-family: inherit; /* ارث‌بری فونت سایت */
}

.dms-sticky-filter-btn:active {
    padding-right: 20px; /* افکت کشیدگی نرم به جای بزرگ شدن کل دکمه */
}

/* تنظیم ارتفاع Offcanvas به 45vh */
#dmsMobileOffcanvas.offcanvas-bottom {
    height: 65vh !important;
    max-height: 65vh;
    border-top-left-radius: 1.2rem;
    border-top-right-radius: 1.2rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
}

#dmsMobileOffcanvas .offcanvas-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

/* مخفی کردن سایدبار اصلی در موبایل */
@media (max-width: 1199.98px) {
    #shop-sidebar > .dms-sidebar {
        display: none !important;
    }
}

#dmsMobileFilterTrigger svg{
    width: 20px;
    height: 20px;
}