body { 
    font-family: 'Vazirmatn', sans-serif; 
    background-color: #fdfbf7; 
}

/* استایل اسلایدر قیمت سفارشی */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #10b981;
    cursor: pointer;
    border: 0;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    background: #f1f1f1;
    border-radius: 3px;
}

/* انیمیشن و ظاهر کارت محصولات */
.product-card { 
    transition: all 0.4s ease; 
    border-radius: 2.5rem; 
}

.product-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.04); 
}
/* مخفی کردن اسکرول‌بار در لیست افقی موبایل */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}