.heart{
    font-size: 20px;
    cursor: pointer;
    color: red;
}
.card:hover {
    transform: translateY(-15px);
}
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.active1{
    color: #FFFEFE;
    text-shadow:0.5px 0.5px 0.5px #ddd;
}
#slider-range {
    background: #ddd; /* کل اسلایدر خاکستری */
    height: 6px;
    border-radius: 5px;
    margin-top: 10px;
    position: relative;
}
.ui-slider-range {
    background: #ef4444 !important; /* فقط بخش بین دو هندل نارنجی بشه */
}
.ui-slider-handle {
    width: 20px;
    height: 20px;
    background: #ef4444 !important;
    border-radius: 50%;
    border: 2px solid #ef4444 !important;
    margin-top: -2px;
    position: absolute;
    outline: none !important;
    box-shadow: none !important; 
    animation-duration: 300ms;
}

/* Dropdown Menu Styles */
.hover-trigger {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.95);
    transform-origin: top;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 50;
}

.hover-trigger:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.dropdown-menu:hover {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    transition: all 0.15s ease;
}

.dropdown-menu a:hover {
    background-color: #1f2937;
    color: #ef4444;
}