/* Links do menu principal */
.header__nav .nav-item .nav-link {
    color: #fff !important;
    font-weight: 600;
}

.header__nav .nav-item .nav-link:hover {
    color: #c5ff15 !important;
}

/* Botão super ofertas */
.header__nav .nav-item .btn-offers {
    background: #7d00ff !important; /* roxo */
    color: #fff !important;
    font-weight: 700;
    border-radius: 6px;
    padding: 6px 14px;
    transition: all 0.3s ease;
}

.header__nav .nav-item .btn-offers:hover {
    background: #c5ff15 !important; /* verde-limão */
    color: #212121 !important;
}

/* ======================== */
/* DROPDOWN - CONTA CLIENTE */
/* ======================== */

/* Caixa do dropdown */
.header__user .dropdown-menu {
    background: #fff !important;
    border-radius: 8px !important;
    border: none !important;
    padding: 6px 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Links do dropdown */
.header__user .dropdown-menu a {
    color: #212121 !important;   /* texto preto */
    background: #fff !important; /* fundo branco */
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

/* Hover no dropdown */
.header__user .dropdown-menu a:hover {
    background: #c5ff15 !important; /* fundo verde-limão */
    color: #212121 !important;      /* texto continua preto */
}

/* Ícones no dropdown */
.header__user .dropdown-menu a i {
    color: #7d00ff !important; /* ícones roxos */
    font-size: 16px;
}

/* ======================== */
/* ÍCONES DO HEADER (Carrinho, Suporte etc.) */
/* ======================== */

.header__icons a {
    color: #fff !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header__icons a:hover {
    color: #c5ff15 !important;
}