/* Product Card Styles */
    .product-card {
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    }
    
    .product-image-container {
        overflow: hidden;
        background: #f8f9fa;
    }
    
    .product-image-container img {
        transition: transform 0.5s ease;
    }
    
    .product-card:hover .product-image-container img {
        transform: scale(1.05);
    }
    
    .product-actions {
        bottom: -50px;
        transition: all 0.3s ease;
        opacity: 0;
    }
    
    .product-card:hover .product-actions {
        bottom: 15px;
        opacity: 1;
    }
    
    .quick-view-btn {
        transform: translateY(10px);
        transition: all 0.3s ease;
    }
    
    .product-card:hover .quick-view-btn {
        transform: translateY(0);
    }
    
    /* Filter Row Styles */
    .filter-row .card {
        border-radius: 8px;
    }
    
    /* Dropdown Styles */
    .dropdown-toggle::after {
        margin-left: 0.5em;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .filter-row .col-md-8, 
        .filter-row .col-md-4 {
            margin-bottom: 15px;
        }
    }
     /* Add this to your CSS */
    .dropdown-menu {
        z-index: 1050 !important; /* Higher than product cards */
    }
    
    /* Ensure product cards have proper z-index */
    .product-card {
        position: relative;
        z-index: 1;
    }

    /* Fix dropdown visibility */
    .dropdown-menu {
        z-index: 1050 !important; /* Higher than product cards */
        position: absolute; /* Ensure proper positioning */
    }
    
    /* Product card z-index adjustment */
    .product-card {
        position: relative;
        z-index: 1; /* Normal stacking position */
    }
    
    /* Ensure modal backdrop doesn't interfere */
    .modal-backdrop {
        z-index: 1040 !important;
    }