a, button, .btn, .btn--primary, .btn--outline { 
    text-decoration: none !important; 
    cursor: pointer !important; 
    outline: none; 
    box-shadow: none !important;
    border: none !important;
    transition: none !important;
}

.btn:hover, .btn--primary:hover {
    transform: none !important;
    filter: none !important;
    background-color: var(--gold-strong) !important;
}

:root {
    --inbox-sidebar-w: 280px;
    --inbox-context-w: 300px;
    --glass-bg: rgba(22, 13, 36, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    --gold-glow: none;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --surface-soft: #1d1330;
    --text-muted: #9b89b0;
}

/* ================================================
   LAYOUT PRINCIPAL — Grid de 3 colunas
   ================================================ */

.inbox-app {
    display: grid;
    grid-template-columns: var(--inbox-sidebar-w) 1fr var(--inbox-context-w);
    height: calc(100vh - 72px);
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    background: #0d0614;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Scroll generico */
.inbox-scroll {
    overflow-y: auto;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.2) transparent;
}

.inbox-scroll::-webkit-scrollbar {
    width: 5px;
}

.inbox-scroll::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.2);
    border-radius: 10px;
}

/* ================================================
   COLUNA 1 — Sidebar (lista de threads/solicitacoes)
   ================================================ */

.inbox-threads {
    background: #0f071a;
    display: flex;
    flex-direction: column;
    border-right: none;
    overflow: hidden;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.inbox-threads__head {
    padding: 24px 20px 0;
    flex-shrink: 0;
}

.inbox-threads__head h1 {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #fff;
}

.inbox-threads__head .counter {
    display: block;
    margin-top: 2px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 18px;
}

/* Search dentro da sidebar */
.inbox-threads .search-field {
    margin-top: 14px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    height: 40px;
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: center;
    padding: 0 14px;
}

.inbox-threads .search-field .material-symbols-rounded {
    font-size: 1.1rem;
    color: var(--text-muted);
    justify-self: center;
}

.inbox-threads .search-field input {
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-size: 0.9rem;
    padding-left: 0;
}

/* Filtros / pills dentro da sidebar */
.inbox-threads .inbox-filters,
.inbox-threads .toolbar-filters {
    margin: 12px 0 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pill, select.pill {
    background: rgba(255, 255, 255, 0.05);
    border: none !important;
    color: #fff;
    padding: 8px 32px 8px 16px;
    border-radius: 99px;
    font-size: 0.8rem;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' 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 14px center;
    font-weight: 700;
}

.thread__avatar {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

select.pill:hover { background-color: rgba(255, 255, 255, 0.08); border-color: var(--gold); }

select.pill option {
    background: #1a0f2e !important;
    color: #fff !important;
    padding: 12px !important;
}

/* Lista de threads com scroll */
.inbox-threads .thread-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.15) transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2px;
}

.inbox-threads .thread-list::-webkit-scrollbar {
    width: 4px;
}

.inbox-threads .thread-list::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.15);
    border-radius: 10px;
}

/* ================================================
   THREAD ITEM — Compativel com chat e solicitacoes
   ================================================ */

.inbox-app .thread {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    position: relative;
    flex-shrink: 0;
    min-height: 80px;
}

.inbox-app .thread:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
}

.inbox-app .thread--active {
    background: rgba(138, 5, 190, 0.12);
    border-color: rgba(138, 5, 190, 0.3);
}

.inbox-app .thread--active::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 14px;
    bottom: 14px;
    width: 4px;
    border-radius: 4px;
    background: var(--gold);
}

/* Avatar do thread */
.inbox-app .thread img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

/* Info do thread */
.inbox-app .thread__info {
    flex: 1;
    min-width: 0;
}

.inbox-app .thread__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.inbox-app .thread__head strong {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.inbox-app .thread__head span {
    font-size: 0.72rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.inbox-app .thread__info p {
    margin-top: 4px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.inbox-app .thread__info small {
    display: block;
    margin-top: 3px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Badge de nao lida */
.inbox-app .thread em {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    color: #140d05;
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

/* Thread vazio */
.inbox-app .thread-empty {
    border: none;
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.inbox-app .thread-empty .material-symbols-rounded {
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.4);
}

.inbox-app .thread-empty p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ================================================
   COLUNA 2 — Area principal (chat / detalhes)
   ================================================ */

.inbox-chat {
    display: flex;
    flex-direction: column;
    background: #0d0614;
    overflow: hidden;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

/* Negotiation Panel (header da area central) */
.negotiation-panel {
    padding: 16px 24px;
    background: rgba(22, 13, 36, 0.95);
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-shrink: 0;
    min-height: 72px;
}

.proposal-summary {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.proposal-summary__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.08));
    border: none;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.proposal-summary__icon .material-symbols-rounded {
    font-size: 1.3rem;
    line-height: 1;
}

.proposal-info {
    min-width: 0;
}

.proposal-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.proposal-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.proposal-price {
    text-align: right;
    flex-shrink: 0;
}

.proposal-price span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.proposal-price strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
    margin-top: 2px;
}

/* Chat Body - Espaçamento e agrupamento */
.inbox-chat .chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.15) transparent;
}

/* Agrupamento de mensagens */
.bubble-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bubble-group.bubble-group--in {
    align-items: flex-start;
}

.bubble-group.bubble-group--out {
    align-items: flex-end;
}

/* Mensagens consecutivas do mesmo usuário */
.bubble--consecutive {
    margin-top: 2px;
}

.bubble--consecutive:hover {
    transform: none;
    box-shadow: none;
}

/* Espaço entre grupos de usuários diferentes */
.bubble-group + .bubble-group {
    margin-top: 12px;
}

.bubble-group.bubble-group--in + .bubble-group.bubble-group--out,
.bubble-group.bubble-group--out + .bubble-group.bubble-group--in {
    margin-top: 16px;
}

/* Timestamp mais discreto */
.bubble span {
    font-size: 0.6rem;
    color: rgba(155, 137, 176, 0.45);
    justify-self: end;
    opacity: 0.6;
    margin-top: 2px;
    letter-spacing: 0.02em;
}

/* Mostrar timestamp apenas no último bubble do grupo */
.bubble-group .bubble:not(:last-child) span {
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

.inbox-chat .chat-body::-webkit-scrollbar {
    width: 4px;
}

.inbox-chat .chat-body::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.15);
    border-radius: 10px;
}

/* Bolhas de mensagem - Refinadas */
.bubble {
    max-width: min(520px, 80%);
    padding: 14px 18px;
    border-radius: 16px;
    display: grid;
    gap: 6px;
    position: relative;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.bubble:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.bubble p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.bubble span {
    font-size: 0.65rem;
    color: rgba(155, 137, 176, 0.5);
    justify-self: end;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.bubble--in {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom-left-radius: 4px;
}

.bubble--out {
    align-self: flex-end;
    background: linear-gradient(135deg, rgba(138, 5, 190, 0.22), rgba(111, 11, 156, 0.18));
    border: 1px solid rgba(138, 5, 190, 0.35);
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 8px rgba(138, 5, 190, 0.15);
}

/* Mensagens de Sistema / Notificacoes no fluxo */
.bubble--system {
    align-self: center;
    max-width: min(620px, 92%);
    width: auto;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 12px 16px;
    color: #f5f0ff;
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1.45;
    display: block;
    text-align: center;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.bubble--system::before {
    display: none;
}

.bubble--system p {
    margin: 0;
}

.bubble--system p + br + p,
.bubble--system p + p {
    margin-top: 10px;
}

.bubble--system strong {
    color: #fff;
    font-weight: 850;
}

.bubble--system a {
    color: var(--gold);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bubble--system .material-symbols-rounded {
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
    font-variation-settings: 'FILL' 1, 'wght' 700;
}

/* Card de Proposta (Workana Style) */
.bubble--offer {
    align-self: flex-start;
    max-width: 100%;
    width: 100%;
    background: #1a1325;
    border: 1px solid rgba(138, 5, 190, 0.3);
    border-left: 5px solid var(--accent);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 10px 0;
}

.bubble--offer__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.bubble--offer__title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.bubble--offer__price {
    text-align: right;
}

.bubble--offer__price strong {
    display: block;
    font-size: 1.2rem;
    color: var(--gold);
}

.bubble--offer__price span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.bubble--offer__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.bubble--offer .btn-accept {
    align-self: flex-start;
    height: 38px;
    padding: 0 24px;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.bubble--offer .btn-accept:hover {
    transform: scale(1.02);
    background: #9d06d8;
}

.bubble__image {
    max-width: 100%;
    max-height: 280px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

/* Chat vazio */
.chat-empty {
    border: none;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    margin: auto;
}

.chat-empty .material-symbols-rounded {
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.3);
}

.chat-empty p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Empty state (solicitacoes) */
.empty-state {
    border: none;
    border-radius: 14px;
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.empty-state .material-symbols-rounded {
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.3);
}

/* Composer (chat) */
.inbox-chat .composer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-subtle);
    background: rgba(22, 13, 36, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.inbox-chat .composer .composer-action--audio {
    position: relative;
}

/* Overlay de gravação - posicionado acima do composer */
.audio-recorder-overlay {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 12px;
    background: rgba(22, 13, 36, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 260px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    z-index: 100;
    white-space: nowrap;
}

.audio-recorder-overlay.active {
    display: flex;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.audio-recorder-overlay .recording-timer {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
}

.audio-recorder-overlay.recording .recording-timer {
    color: #ef4444;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.audio-recorder-overlay .recording-status {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.audio-recorder-overlay .recording-actions {
    display: flex;
    gap: 16px;
    margin-top: 4px;
}

.audio-recorder-overlay .audio-action-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
}

.audio-recorder-overlay .audio-action-btn--cancel {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.audio-recorder-overlay .audio-action-btn--cancel:hover {
    background: rgba(239, 68, 68, 0.22);
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.25);
}

.audio-recorder-overlay .audio-action-btn--send {
    background: var(--gold);
    color: #140d05;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.audio-recorder-overlay .audio-action-btn--send:hover:not(:disabled) {
    background: var(--gold-strong);
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.audio-recorder-overlay .audio-action-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

/* Preview do áudio - aparece entre input e botões */
.audio-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 12px;
    max-width: 100%;
    animation: previewIn 0.3s ease-out;
}

@keyframes previewIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.audio-preview .material-symbols-rounded {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.audio-preview audio {
    flex: 1;
    height: 32px;
    max-width: 200px;
    min-width: 120px;
}

.audio-preview .audio-duration {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

.audio-preview .audio-remove-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    padding: 0;
}

.audio-preview .audio-remove-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: scale(1.1);
}

.audio-preview .audio-remove-btn .material-symbols-rounded {
    font-size: 1rem;
}


.inbox-chat .composer .composer-action .material-symbols-rounded,
.inbox-chat .composer > button[type="button"] .material-symbols-rounded {
    font-size: 1.15rem;
    line-height: 1;
}

.inbox-chat .composer input[type="text"] {
    flex: 1;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.2s ease;
    box-shadow: 0 0 0 2px transparent;
}

.inbox-chat .composer input[type="text"]:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.inbox-chat .composer input[type="text"]::placeholder {
    color: rgba(155, 137, 176, 0.55);
    font-weight: 400;
}

.inbox-chat .composer .send-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gold);
    color: #140d05;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.25);
}

.inbox-chat .composer .send-btn:hover {
    background: var(--gold-strong);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

.inbox-chat .composer .send-btn:active {
    transform: translateY(0) scale(0.96);
    box-shadow: 0 1px 3px rgba(212, 175, 55, 0.2);
}

.inbox-chat .composer .send-btn .material-symbols-rounded {
    font-size: 1.2rem;
    line-height: 1;
    color: #140d05;
}

/* ================================================
   COLUNA 3 — Painel de contexto (direita)
   ================================================ */

.inbox-context {
    background: #0f071a;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
    border: none;
    box-shadow: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.15) transparent;
}

.inbox-context::-webkit-scrollbar {
    width: 4px;
}

.inbox-context::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.15);
    border-radius: 10px;
}

/* Profile Card */
.profile-card {
    text-align: center;
}

.profile-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    padding: 3px;
    background: #0f071a;
    margin: 0 auto 14px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-card__rank {
    display: none !important;
}

.profile-card__rank.rank--platinum {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.profile-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.profile-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--gold);
}

.profile-rating .material-symbols-rounded {
    font-size: 1rem;
    line-height: 1;
    color: var(--gold);
}

/* Stats */
.profile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 12px;
    border-radius: 14px;
    text-align: center;
    transition: border-color 0.2s;
}

.stat-item:hover {
    border-color: rgba(212, 175, 55, 0.25);
}

.stat-item strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.stat-item span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Context details */
.context-details h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    font-weight: 700;
}

.context-details p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Quick replies / atalhos */
.inbox-context .quick-replies {
    display: grid;
    gap: 8px;
}

.inbox-context .quick-replies h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.inbox-context .pill {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

/* ================================================
   SOLICITACOES — Estilos especificos
   ================================================ */

/* Status badges nas solicitacoes */
.request-status {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.request-status--accepted {
    background: rgba(33, 184, 123, 0.08);
    border-color: rgba(33, 184, 123, 0.3);
    color: #21b87b;
}

.request-status--rejected {
    background: rgba(201, 74, 74, 0.08);
    border-color: rgba(201, 74, 74, 0.3);
    color: #c94a4a;
}

/* Toast */
.toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: rgba(22, 13, 36, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: #fff;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 200;
    backdrop-filter: blur(10px);
}

/* Chat feedback */
.chat-feedback {
    position: fixed;
    left: 50%;
    bottom: calc(86px + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    z-index: 13000;
    width: min(420px, calc(100vw - 28px));
    min-height: 48px;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(20, 12, 32, 0.96);
    color: #f7f1ff;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.3;
    padding: 10px 14px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(14px);
    pointer-events: none;
    animation: chatFeedbackIn 160ms ease-out;
}

.chat-feedback--leaving {
    animation: chatFeedbackOut 180ms ease-in forwards;
}

.chat-feedback__icon {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.12);
    color: var(--chat-gold);
    font-size: 1rem !important;
    line-height: 1;
}

.chat-feedback__text {
    min-width: 0;
    overflow-wrap: anywhere;
}

@keyframes chatFeedbackIn {
    from { opacity: 0; transform: translate(-50%, 8px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes chatFeedbackOut {
    from { opacity: 1; transform: translate(-50%, 0); }
    to { opacity: 0; transform: translate(-50%, 8px); }
}

/* Back button (mobile) */
.chat-head__back {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.chat-head__back .material-symbols-rounded {
    font-size: 1.2rem;
    line-height: 1;
}

/* Context overlay (mobile) */
.context-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    z-index: 110;
    display: none;
}

/* ================================================
   RESPONSIVO — Mobile
   ================================================ */

@media (max-width: 1100px) {
    .inbox-app {
        grid-template-columns: 1fr;
        height: calc(100dvh - 72px);
        min-height: calc(100dvh - 72px);
    }

    /* Esconder contexto no mobile */
    .inbox-context {
        display: none !important;
    }

    /* Por padrao mostra a sidebar */
    .inbox-threads {
        display: flex;
        border-right: none;
    }

    .inbox-chat {
        display: none;
    }

    .inbox-empty-view {
        display: none;
        min-height: 100%;
        padding: 32px 24px;
    }

    .inbox-app--mobile-empty .inbox-threads,
    .inbox-app--mobile-empty .inbox-chat,
    .inbox-app--mobile-empty .inbox-context {
        display: none !important;
    }

    .inbox-app--mobile-empty .inbox-empty-view {
        display: flex;
    }

    .inbox-app--mobile-list .inbox-threads {
        display: flex;
    }

    .inbox-app--mobile-list .inbox-chat,
    .inbox-app--mobile-list .inbox-empty-view,
    .inbox-app--mobile-list .inbox-context {
        display: none !important;
    }

    /* Quando abre conversa/detalhe */
    .inbox-app--conversation .inbox-threads {
        display: none;
    }

    .inbox-app--conversation .inbox-chat {
        display: flex;
        height: 100%;
    }

    .inbox-app--conversation .chat-head__back {
        display: inline-flex;
    }

    .chat-head__back {
        display: flex !important;
        background: none;
        border: none;
        color: var(--text-soft);
        cursor: pointer;
        margin-right: 12px;
    }

    .chat-head__back .material-symbols-rounded {
        font-size: 1.8rem;
    }

    .inbox-threads__head {
        padding: 20px 16px 0;
    }

    .inbox-threads .thread-list {
        padding: 8px 12px 16px;
    }

    .inbox-app .thread {
        padding: 14px;
        min-height: 72px;
    }

    .negotiation-panel {
        padding: 14px 16px;
        min-height: auto;
    }

    .proposal-summary {
        gap: 12px;
    }

    .proposal-summary__icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .proposal-info h4 {
        white-space: normal;
        line-height: 1.25;
    }

    .proposal-info p {
        font-size: 0.78rem;
    }

    .inbox-chat .chat-body {
        padding: 18px;
    }

    /* Context panel como bottom sheet no mobile */
    body.context-open .context-overlay {
        display: block;
    }

    body.context-open .inbox-context {
        display: flex;
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 120;
        max-height: 70vh;
        border-radius: 18px;
        border: 1px solid rgba(212, 175, 55, 0.2);
        box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }

    /* Topbar actions escondidas */
    .topbar__actions {
        display: none;
    }

    body.has-mobile-nav .inbox-app {
        height: calc(100dvh - 72px - 72px - env(safe-area-inset-bottom));
        min-height: calc(100dvh - 72px - 72px - env(safe-area-inset-bottom));
    }

    body.has-mobile-nav .inbox-empty-view {
        min-height: calc(100dvh - 72px - 72px - env(safe-area-inset-bottom));
    }
}

/* Tablets */
@media (min-width: 1101px) and (max-width: 1400px) {
    :root {
        --inbox-sidebar-w: 300px;
        --inbox-context-w: 260px;
    }
}

/* Desktop largo */
@media (min-width: 1401px) {
    :root {
        --inbox-sidebar-w: 360px;
        --inbox-context-w: 320px;
    }
}

/* ================================================
   FIX: Icons alinhados (Material Symbols)
   ================================================ */

.inbox-app .material-symbols-rounded {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
    line-height: 1;
}

/* Pill padrao */
.inbox-app .pill {
    height: 32px;
    padding: 0 16px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    -webkit-appearance: none;
    appearance: none;
}

.inbox-app .pill:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.inbox-app .pill--active {
    background: var(--gold);
    color: #140d05;
}

.inbox-app .pill--active:hover {
    background: #b89322;
    border-color: #b89322;
}

.inbox-app .pill .material-symbols-rounded {
    font-size: 1.1rem;
}

/* Modal de Aceite Estilo Workana */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}
.modal-card {
    background: #fff;
    width: min(500px, 100%);
    border-radius: 24px;
    position: relative;
    color: #140d05;
    animation: modalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    overflow: hidden;
}
@keyframes modalIn {
    from { transform: translateY(20px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}
.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    background: #f5f5f5;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-body { padding: 40px; }
.modal-body h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 24px; color: #111; line-height: 1.2; }
.modal-user { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.modal-avatar { width: 56px; height: 56px; border-radius: 50%; }
.modal-user-info strong { display: block; font-size: 1.1rem; color: #111; }
.modal-rating { color: #ffd700; font-size: 0.9rem; margin-top: 2px; }
.modal-price {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #111;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f6ff;
    padding: 6px 12px;
    border-radius: 8px;
}
.modal-grid { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.modal-tip { display: flex; gap: 14px; align-items: center; }
.modal-tip .material-symbols-rounded { background: #f0e6ff; color: #8a05be; padding: 6px; border-radius: 6px; font-size: 1.1rem; }
.modal-tip p { font-size: 0.85rem; color: #444; line-height: 1.4; margin: 0; }
.btn-confirm { width: 100%; height: 54px; background: #8a05be; color: #fff; border: none; border-radius: 14px; font-size: 1.05rem; font-weight: 800; cursor: pointer; transition: 0.2s; }
.btn-confirm:hover { background: #71049c; transform: translateY(-2px); }

/* ================================================
   COLUNA 3 — Barra de Contexto (Direita)
   ================================================ */
.inbox-context {
    background: #0d0614;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    overflow-y: auto;
    justify-content: flex-start;
    align-items: stretch;
}

.profile-card {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 12px;
}

.profile-card__rank {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 4px;
}

.context-details h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px !important;
    font-size: 0.85rem;
}

.stat-item span { color: var(--text-soft); }
.stat-item strong { color: #fff; }

/* Botões Secos — Blocos Sólidos e Sem Efeitos */
.btn, .btn--primary, .btn--outline, a.btn, button {
    text-decoration: none !important;
    cursor: pointer !important;
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
    border-style: none !important;
    transition: none !important;
    filter: none !important;
    transform: none !important;
}

.btn:hover, .btn--primary:hover {
    background-color: var(--gold-strong) !important;
    filter: none !important;
    transform: none !important;
}

.btn--outline {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    border: 0 !important;
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.15) !important;
}



/* =============================================
   EMPTY STATE (Central)
   ============================================= */
.inbox-empty-view {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d0614;
    text-align: center;
    padding: 40px;
    grid-column: 1 / -1;
}

.empty-state-hero {
    max-width: 400px;
    animation: fadeIn 0.4s ease-out;
}

.empty-state-hero__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: rgba(212, 175, 55, 0.05);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.empty-state-hero__icon .material-symbols-rounded {
    font-size: 2.5rem;
}

.empty-state-hero h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.empty-state-hero p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.empty-state-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    min-height: 44px;
    padding: 0 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent, #8a05be), var(--accent-strong, #6f02b4));
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
}

.empty-state-hero__cta:hover {
    filter: brightness(1.1);
}

/* Botão de voltar ao marketplace */
.inbox-back-link {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px 0;
    color: var(--text-muted, #9b89b0);
    font-size: 0.88rem;
    font-weight: 700;
    background: #0d0614;
}

.inbox-back-link .material-symbols-rounded {
    font-size: 1.1rem;
}

.inbox-back-link:hover {
    color: var(--gold, #d4af37);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Chat specific body overrides */
body { padding-bottom: 0 !important; overflow-y: hidden !important; padding-top: 72px !important; }

/* ================================================
   MELHORIAS DE UI / UX - CHAT INTELIGENTE
   ================================================ */

.empty-state-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: #140d05 !important;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-action:hover {
    background: var(--gold-strong) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.btn-action--outline {
    background: rgba(255, 255, 255, 0.05);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.btn-action--outline:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.proposal-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.status-tag {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 6px;
    letter-spacing: 0.05em;
}

.status-tag--negotiating {
    background: rgba(106, 0, 255, 0.15);
    color: #b180ff;
    border: 1px solid rgba(106, 0, 255, 0.2);
}

.negotiation-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-quick-action {
    background: rgba(138, 5, 190, 0.15);
    color: #e0b0ff;
    border: 1px solid rgba(138, 5, 190, 0.2) !important;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-quick-action:hover {
    background: rgba(138, 5, 190, 0.25);
    color: #fff;
    border-color: rgba(138, 5, 190, 0.4) !important;
}

.btn-quick-action .material-symbols-rounded {
    font-size: 1.1rem;
}

.quick-replies {
    padding: 12px 24px 0;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.quick-replies::-webkit-scrollbar {
    display: none;
}

.quick-replies button {
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.2s;
}

.quick-replies button:hover {
    background: rgba(138, 5, 190, 0.2);
    color: #fff;
    border-color: rgba(138, 5, 190, 0.3) !important;
}

.composer-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.typing-indicator {
    position: absolute;
    right: 12px;
    font-size: 0.65rem;
    color: var(--gold);
    font-weight: 700;
    pointer-events: none;
    opacity: 0.8;
}

.bubble--sending {
    opacity: 0.6;
    background: rgba(255, 255, 255, 0.03) !important;
}

.bubble--sending::after {
    content: "Enviando...";
    font-size: 0.6rem;
    display: block;
    margin-top: 4px;
    text-align: right;
    color: var(--gold);
    animation: typingPulse 1.5s infinite;
}

@keyframes typingPulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* Prominence for unread badges */
.inbox-app .thread em {
    background: var(--chat-accent, #8a05be) !important;
    color: #fff !important;
    box-shadow: none;
    animation: none;
}

/* Status Tag for Finished */
.status-tag--finished {
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.2);
}

/* ================================================
   STEPPER — Linha do Tempo do Pedido
   ================================================ */
.stepper-container {
    padding: 24px;
    background: rgba(22, 13, 36, 0.4);
    border-bottom: 1px solid var(--border-subtle);
    flex-shrink: 0;
}

.stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.stepper::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.stepper-line-progress {
    position: absolute;
    top: 14px;
    left: 10%;
    height: 3px;
    background: var(--gold);
    z-index: 2;
    transition: width 0.4s ease;
    width: 0%;
}

.step {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1a0f2e;
    border: 3px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-icon .material-symbols-rounded {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.3);
}

.step-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    text-align: center;
}

/* Estados */
.step--active .step-icon {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.step--active .step-icon .material-symbols-rounded {
    color: var(--gold);
}

.step--active .step-label {
    color: #fff;
}

.step--completed .step-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.step--completed .step-icon .material-symbols-rounded {
    color: #140d05;
}

.step--completed .step-label {
    color: var(--gold);
}

/* ================================================
   FAVORITOS — Botões de Coração
   ================================================ */
.discovery-card__favorite,
.chat-head__favorite {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(7, 3, 13, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.chat-head__favorite {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    margin-left: 12px;
}

.discovery-card__favorite:hover,
.chat-head__favorite:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: scale(1.05);
}

.discovery-card__favorite.is-active,
.chat-head__favorite.is-active {
    color: #ff4d4d !important;
    background: #fff !important;
    border-color: #ff4d4d !important;
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.2);
}

.discovery-card__favorite.is-active .material-symbols-rounded,
.chat-head__favorite.is-active .material-symbols-rounded {
    font-variation-settings: 'FILL' 1;
}

/* Status Labels Adicionais */
.status-pill--in-progress {
    background: rgba(59, 130, 246, 0.15) !important;
    color: #3b82f6 !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
}

.status-pill--finished {
    background: rgba(52, 211, 153, 0.15) !important;
    color: #34d399 !important;
    border: 1px solid rgba(52, 211, 153, 0.3) !important;
}

/* Consolidando classes de status */
.status-pill--active, .status-pill--accepted, .status-tag--negotiating {
    background: rgba(212, 175, 55, 0.12) !important;
    color: var(--gold) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.orders-status--rejected, .status-pill--rejected, .status-tag--rejected {
    background: rgba(239, 68, 68, 0.12) !important;
    color: #ef4444 !important;
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
}

.status-tag--finished {
    background: rgba(52, 211, 153, 0.15) !important;
    color: #34d399 !important;
    border: 1px solid rgba(52, 211, 153, 0.3) !important;
}
