/* styles.css */
:root {
    --bg-dark: #0D1126;
    /* Azul profundo baseado no logo */
    --bg-sidebar: #151B3D;
    /* Azul secundÃ¡rio da marca */
    --accent: #F58220;
    /* Laranja vibrante do "seu" no logo */
    --blue-logo: #2E3192;
    /* Azul do "vendedor" no logo */
    --gold: #FFB347;
    /* Laranja mais claro para contrastes */
    --text-main: #F8FAFC;
    /* Branco limpo */
    --text-dim: #94A3B8;
    /* Cinza azulado para textos secundÃ¡rios */
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --hover-bg: rgba(245, 130, 32, 0.1);
    /* Hover baseado no laranja */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    
    min-height: 100vh;
}

/* Partículas de Fundo */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.app-container {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styling */
.sidebar {
    width: 320px;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-header h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.filter-group label {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-weight: 500;
}

.filter-group select {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 0.6rem;
    border-radius: 6px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.filter-group select:focus {
    border-color: var(--accent);
}

/* Estilo para Custom Multi-SeleÃ§Ã£o (Lista Suspensa) */
.custom-select {
    position: relative;
    user-select: none;
}

.select-header {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 0.7rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.select-header:hover {
    border-color: var(--accent);
}

.select-header .status-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
}

.select-header .arrow {
    font-size: 0.6rem;
    transition: transform 0.3s;
    color: var(--text-dim);
}

.custom-select.active .arrow {
    transform: rotate(180deg);
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1A1F37; /* Cor sÃ³lida para nÃ£o ser transparente */
    border: 1px solid var(--border);
    border-radius: 0 0 8px 8px;
    margin-top: 4px;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    z-index: 2500; /* Aumentei para garantir que fique por cima de tudo */
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    padding: 0;
}

.custom-select.active .select-options {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
    color: var(--text-main);
    justify-content: flex-start;
}

.option-item:hover {
    background: var(--hover-bg);
}

.option-item.loading-item {
    opacity: 0.4;
    cursor: pointer;
}

.checkbox-box {
    width: 14px;
    height: 14px;
    border: 1px solid var(--border);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.option-item.selected {
    background: rgba(245, 130, 32, 0.15);
    color: var(--accent);
    font-weight: 600;
}

.option-item.selected .checkbox-box {
    background: var(--accent);
    border-color: var(--accent);
}

.option-item.selected .checkbox-box::after {
    content: '\2713';
    color: var(--bg-dark);
    font-size: 10px;
    font-weight: bold;
}

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

.btn-secondary {
    margin-top: 1rem;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--hover-bg);
}

/* Main Content Styling */
.main-content {
    flex: 1;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    overflow-y: auto;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.8rem;
    position: relative;
}

.top-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--accent);
}

.header-info h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

/* Logo do Header com Efeito 3D Circular (Destaque) */
.header-logo-container {
    background: #fff;
    width: 65px; /* Aumentei para melhorar a legibilidade */
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    
    /* Efeito de Profundidade 3D */
    box-shadow: 
        inset 0 2px 5px rgba(255,255,255,0.8),
        0 8px 15px rgba(0,0,0,0.4),
        0 0 10px rgba(245, 130, 32, 0.2);
    
    border: 2px solid var(--bg-dark);
    transition: all 0.3s ease;
    cursor: pointer;
}

.header-logo-container:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 25px rgba(0,0,0,0.5);
}

.header-logo {
    width: 100%;
    height: auto;
    display: block;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.metric-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

/* Cards Principais — Faturamento e Volume (destaque visual) */
#card-faturamento,
#card-volume {
    background: linear-gradient(135deg, rgba(245, 130, 32, 0.1) 0%, rgba(255, 179, 71, 0.03) 100%);
    border: 1px solid rgba(245, 130, 32, 0.3);
    box-shadow: 0 0 15px rgba(245, 130, 32, 0.08), inset 0 1px 0 rgba(245, 130, 32, 0.1);
}

#card-faturamento:hover,
#card-volume:hover {
    box-shadow: 0 0 25px rgba(245, 130, 32, 0.2);
}

#card-faturamento.active,
#card-volume.active {
    background: linear-gradient(135deg, var(--accent) 0%, #e07010 100%);
    box-shadow: 0 0 25px rgba(245, 130, 32, 0.35);
}

.card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(245, 130, 32, 0.15); /* var(--accent) com opacidade */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.card-icon {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.metric-card.active .icon-circle {
    background: rgba(255, 255, 255, 0.2);
}

.metric-card.active .card-icon {
    color: var(--bg-dark);
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px -15px var(--accent);
}

.metric-card.active {
    background: var(--accent);
    color: var(--bg-dark);
}

.metric-card.active .metric-label,
.metric-card.active .metric-value {
    color: var(--bg-dark);
}

.metric-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    align-self: flex-start;
    margin-top: 5px;
}

.metric-comparisons {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: left;
    margin-top: auto;
    line-height: 1.4;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.comp-label {
    color: var(--text-dim);
}

.metric-card.active .comp-label {
    color: rgba(13, 17, 38, 0.6); /* --bg-dark atenuado para ficar legível em fundo laranja */
}

/* Informational Split Card (Positivação e Mix) */
.info-card-split {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    backdrop-filter: blur(10px);
    cursor: default; /* Não clicável */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card-split:hover {
    border-color: rgba(255, 255, 255, 0.2); /* Hover mais discreto que o accent */
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.5);
}

.info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.2rem 1rem;
    flex: 1;
}

.info-divider {
    width: 1px;
    background: var(--border);
    margin: 1rem 0;
}

/* --- DESCONGELAMENTO TOTAL: NADA PRESO NO TOPO --- */
.table-container {
    width: 100%;
    overflow-x: auto;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 2rem;
}

table {
    width: auto;
    min-width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    table-layout: auto;
}

/* Header principal (Meses) - SOLTO */
thead th {
    background-color: #151B3D !important;
    color: var(--accent);
    text-align: center;
    font-weight: 700;
    position: relative; /* SOLTO TOTALMENTE */
    top: auto;
    padding: 12px 15px;
    border-bottom: 1px solid var(--border);
}

/* Header secundÃ¡rio (Medidas) - SOLTO */
thead tr:nth-child(2) th {
    top: auto;
    background-color: #1a1f37 !important;
    font-size: 0.65rem;
    color: var(--text-dim);
    border-bottom: 2px solid var(--border);
}

/* Nome Fantasia e todas as cÃ©lulas - COMPLETAMENTE SOLTAS */
th, td {
    padding: 10px 8px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
    background-color: transparent;
    position: relative;
    left: auto !important;
    width: auto;
}

/* Coluna Nome Fantasia — EXPANDE para ocupar espaço */
td:first-child, .fixed-column-header {
    width: 100%;
    min-width: 130px;
    white-space: nowrap;
    background-color: #0D1126 !important;
    border-right: 1px solid var(--border);
    padding-right: 15px !important;
}

/* Colunas de dados — ENCOLHEM ao tamanho do conteúdo */
td:not(:first-child), thead tr:nth-child(2) th:not(.fixed-column-header) {
    width: 1%;
    white-space: nowrap;
    text-align: right;
}

@media (max-width: 768px) {
    table {
        width: auto !important;
        border-collapse: collapse;
        font-size: 0.7rem;
        min-width: 100%;
    }
    th, td {
        padding: 8px 4px !important;
    }
    td:first-child, .fixed-column-header { 
        min-width: 90px; 
        white-space: normal !important;
        word-wrap: break-word;
        padding-right: 4px !important;
    }
}

/* Shake animation para erro */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    50% { transform: translateX(8px); }
    75% { transform: translateX(-8px); }
}

.shake { animation: shake 0.4s ease-in-out; }


tbody tr:hover {
    background: rgba(245, 130, 32, 0.08);
}

tbody tr:last-child {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 700;
}

tbody tr:last-child td {
    color: var(--gold);
}

/* EstilizaÃ§Ã£o das Barras de Rolagem (Mais Claras e VisÃ­veis) */
::-webkit-scrollbar { 
    width: 10px; 
    height: 10px; 
}

::-webkit-scrollbar-track { 
    background: rgba(0, 0, 0, 0.2); 
    border-radius: 10px;
}

::-webkit-scrollbar-thumb { 
    background: rgba(255, 255, 255, 0.2); /* Cinza claro e nÃ­tido */
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover { 
    background: rgba(255, 255, 255, 0.4); /* Mais brilhante no hover */
}

/* BotÃ£o Mobile */
.mobile-only-btn {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 999;
}

/* Responsividade */
@media (max-width: 992px) {
    .sidebar {
        position: fixed;
        left: -320px;
        top: 0;
        bottom: 0;
        z-index: 1000;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    .sidebar.active { left: 0; }
    .mobile-only-btn { display: block; }
    .overlay.active { display: block; }
    .main-content { padding: 1rem; }
    .metrics-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
}

@media (max-width: 480px) {
    /* Main Content: Aproveita melhor as bordas da tela do celular */
    .main-content { 
        padding: 1rem 0.6rem; 
        gap: 1.2rem; 
    }
    
    /* Header: Joga a logo pra cima no canto, e espreme o título pra não chocar */
    .top-header {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 5px;
    }
    .header-info h1 {
        font-size: 1.15rem;
        max-width: 82%;
    }
    .header-logo-container {
        position: absolute;
        top: 0px;
        right: 0px;
        width: 45px;
        height: 45px;
        padding: 6px;
    }

    /* Cards de Métrica: Grid 2x2 super prático, reduz margens fofas e foca nos NÚMEROS */
    .metrics-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 0.5rem; 
    }
    .metric-card {
        padding: 0.8rem 0.4rem;
        gap: 0.4rem;
        border-radius: 8px;
    }
    .metric-label {
        font-size: 0.55rem;
    }
    .metric-value {
        font-size: 0.95rem; /* Menor mas perfeitamente legivel de perto */
    }
    .metric-card .metric-comparisons {
        font-size: 0.55rem !important; /* Mini-textos de comparação */
        margin-top: 2px !important;
    }
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    display: none !important; /* Remove totalmente da tela */
    pointer-events: none; /* Garante que nÃ£o bloqueie nenhum clique */
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid var(--border);
    border-top: 5px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1.5rem;
}

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.loading-overlay p {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Login Page Styles */
.login-body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-dark);
}

.login-container {
    width: 100%;
    max-width: 440px; /* Aumentei um pouco para caber o tÃ­tulo em uma linha */
    padding: 20px;
}
.login-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem 2rem; /* Compacto: reduzi de 2.5rem */
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.login-header { text-align: center; margin-bottom: 2rem; }
/* Logo com Efeito 3D e Sem Fundo VisÃ­vel */
.login-brand {
    background: transparent;
    padding: 0;
    margin: 0 auto 0; /* Margem ZERO para compactar totalmente */
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.login-logo {
    width: 220px;
    height: auto;
    display: block;
    
    /* Sombra de Alta DefiniÃ§Ã£o (Mais NÃ­tida) */
    filter: drop-shadow(4px 4px 0px rgba(0,0,0,0.9)) 
            drop-shadow(10px 10px 20px rgba(0,0,0,0.95))
            drop-shadow(0px 0px 5px rgba(245, 130, 32, 0.5));
    
    transform: rotateX(10deg) rotateY(-5deg); /* InclinaÃ§Ã£o Premium */
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0) rotateX(10deg) rotateY(-5deg); }
    50% { transform: translateY(-15px) rotateX(15deg) rotateY(0deg); }
}

.login-logo:hover {
    transform: scale(1.1) rotateX(0deg) rotateY(0deg);
    filter: drop-shadow(0px 10px 30px rgba(245, 130, 32, 0.6));
}

.login-header p {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap; /* Garante que fique em uma sÃ³ linha */
    margin-bottom: 2rem;
}

.input-group { margin-bottom: 0.8rem; } /* Eram 1.5rem */
.input-group label { display: block; font-size: 0.75rem; color: var(--text-dim); margin-bottom: 0.3rem; }
/* EstilizaÃ§Ã£o do Campo de Pesquisa Interna dos Filtros - AGORA SOLTO */
.select-search-container {
    background: #1A1F37;
    padding: 12px;
    border-bottom: 2px solid var(--border);
    position: relative; /* Mudado de sticky para soltar */
}

.select-search-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3); /* Fundo mais escuro para contraste */
    border: 1px solid var(--accent); /* Borda laranja discreta por padrÃ£o */
    border-radius: 6px;
    padding: 10px 12px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s;
}

.select-search-input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 2px rgba(245, 130, 32, 0.2);
}

.select-search-input::placeholder {
    color: var(--text-dim);
    opacity: 0.6;
}
.input-group input {
    width: 100%;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: #fff;
    font-size: 0.95rem; /* Voltei para o tamanho padrÃ£o anterior */
    outline: none;
    transition: all 0.3s;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-login:hover {
    background: #ff9d47;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 130, 32, 0.3);
}

.login-error {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    padding: 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 1rem;
}

.hidden { display: none !important; }

.btn-logout {
    margin-top: auto;
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
    padding: 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
}
/* Estilização da Tabela de Detalhamento por Produto */
.nested-table-row {
    background-color: rgba(0, 0, 0, 0.2) !important;
}

.nested-container-cell {
    padding: 0 !important;
    border: none !important;
}

.nested-wrapper {
    padding: 10px 0 20px 40px; /* Indentação para parecer aninhado */
    border-left: 4px solid var(--accent);
    margin: 5px 0;
}

.nested-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.product-item-row {
    background-color: rgba(0, 0, 0, 0.15) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.2s;
}

.product-item-row:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

.product-total-row {
    background-color: rgba(0, 0, 0, 0.25) !important;
    border-top: 1px solid var(--border);
}

.product-label {
    color: var(--text-dim);
    font-style: italic;
    padding-left: 30px !important;
}

.active-detail {
    background: rgba(245, 130, 32, 0.05) !important;
    border-left: 4px solid var(--accent) !important;
}

.client-label {
    font-weight: 500;
    color: var(--text);
    min-width: 130px;
}

.sortable-header {
    transition: background 0.2s;
}

.sortable-header:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--accent) !important;
}

/* Reset da primeira coluna para o modal, evitando conflito com a tabela principal */
#unpurchased-modal td:first-child {
    min-width: 0 !important;
    width: auto !important;
    padding-right: 4px !important;
    background-color: transparent !important;
    border-right: none !important;
}

.btn-modal-filter {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-dim);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-modal-filter:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-dim);
}

.btn-modal-filter.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-dark);
}
