.wc-select-sorting {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.wc-select-sorting-label {
    margin-right: 10px;
    font-weight: 600;
}

.wc-select-sorting-select {
    min-width: 200px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' 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");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 35px;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wc-select-sorting-select:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .wc-select-sorting {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .wc-select-sorting-label {
        margin-bottom: 8px;
    }
    
    .wc-select-sorting-select {
        min-width: 100%;
    }
}