/* Category Filter Dropdown with Cool Animation */
.category-filter {
    padding: 10px 15px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%) !important;
    font-size: 14px !important;
    min-width: 180px !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    font-weight: 500 !important;
    color: #333 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    background-size: 18px !important;
    padding-right: 35px !important;
}

.category-filter:hover {
    border-color: #d4af37 !important;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%) !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2) !important;
    transform: translateY(-2px) !important;
    animation: pulse 0.6s ease-in-out !important;
}

.category-filter:focus {
    outline: none !important;
    border-color: #d4af37 !important;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3) !important;
    transform: translateY(-2px) scale(1.02) !important;
}

.category-filter:active {
    transform: translateY(0) scale(0.98) !important;
}

@keyframes pulse {

    0%,
    100% {
        transform: translateY(-2px) scale(1);
    }

    50% {
        transform: translateY(-2px) scale(1.03);
    }
}

.category-filter option {
    padding: 10px;
    background: #fff;
    color: #333;
    font-weight: 500;
}