/* ============================================================
   Widget Ordenação Produtos
   ============================================================ */

.ordenacao-produtos-container {
    width: 100%;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: flex-end;
}

.ordenacao-produtos {
    display: inline-block;
}

.ordenacao-produtos__field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ordenacao-produtos__field:focus-within {
    border-color: var(--e-global-color-petroleo, #0d5c63);
    box-shadow: 0 0 0 3px rgba(13, 92, 99, 0.1);
}

.ordenacao-produtos__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4b5563;
    user-select: none;
    margin: 0;
    padding: 0;
}

.ordenacao-produtos__select {
    border: none;
    background: transparent;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    outline: none;
    padding: 0.25rem 1.5rem 0.25rem 0.25rem;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    min-width: 180px;
}

.ordenacao-produtos__select:focus {
    outline: none;
}