/* public/assets/css/header-seller.css */
/* Estilos SOLO para el header de acciones del seller (no afecta buyer/admin) */

.nav-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight:800;
  line-height:1;
  white-space:nowrap;
}

.nav-pill:hover{
  filter:brightness(1.07);
  text-decoration:none;
}

.nav-primary{
  background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(124,58,237,.65));
  border-color: rgba(124,58,237,.35);
}

.nav-ghost{
  opacity:.85;
}

/* En móviles: que los botones del header “quiebren” bonito y queden en la franja marcada */
@media (max-width: 720px){
  .topbar{
    flex-wrap:wrap;
    gap:12px;
    align-items:flex-start;
  }
  .nav{
    width:100%;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:6px;
  }
  .nav a{
    margin-left:0 !important;
  }
  .nav-pill{
    flex: 1 1 auto;
  }
  .nav-primary{
    flex: 1 1 100%;
  }
}
