 .product-card {
    transition: all 0.3s ease-in-out;
    border: none;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.filter-sidebar {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.filter-toggle {
    display: none;
}

.range-label {
    font-weight: 500;
    font-size: 14px;
}

@media (max-width: 768px) {
    .filter-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 80%;
        z-index: 9999;
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
    }

    .filter-sidebar.active {
        right: 0;
    }

    .filter-toggle {
        display: block;
    }
}