/* ================================
   BIG STORE'S — CONTA (Olá, Nome)
   Shortcode: [cb_header_account]
   ================================ */

.be-account-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.10);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color:#fff !important;
  text-decoration:none !important;
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-weight:800;
  line-height:1;
  white-space:nowrap;
  transition:.2s ease;
  box-shadow:0 6px 18px rgba(0,0,0,.18);
}

.be-account-chip:hover{
  background:rgba(255,255,255,.18);
  border-color:rgba(255,255,255,.55);
  transform:translateY(-1px);
}

/* Logado = 2 linhas */
.be-account-chip.is-logged{
  align-items:flex-start;
  padding:10px 16px;
}

/* Texto */
.be-account-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}

.be-account-chip .t1{
  font-size:12px;
  opacity:.85;
  font-weight:700;
}

.be-account-chip .t2{
  font-size:14px;
  font-weight:900;
  letter-spacing:.2px;
}

/* Visitante = 1 linha */
.be-account-chip.is-guest .be-account-text{
  flex-direction:row;
  align-items:center;
}

.be-account-chip.is-guest .t2{
  font-size:13px;
}

/* Ícone (bonequinho) */
.be-account-ico{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  opacity:.95;
}

.be-account-ico svg{
  width:22px;
  height:22px;
}

/* Mobile */
@media (max-width: 768px){
  .be-account-chip{ padding:8px 12px; box-shadow:0 4px 12px rgba(0,0,0,.16); }
  .be-account-chip .t1{ font-size:11px; }
  .be-account-chip .t2{ font-size:13px; }
}
