/**
 * UserFooter 底部用户信息组件样式
 */
.user-footer {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 0;

  /* 用户/店铺信息块 */
  &__user,
  &__store {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1;
    max-width: 50%;
  }

  /* 头像 */
  &__avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  /* 信息区域 */
  &__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
  }

  /* 名称 */
  &__name {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* 操作链接 */
  &__action {
    font-size: 13px;
    font-weight: 400;
    color: #F04A28;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;

    &:hover {
      color: #d63d1f;
      text-decoration: underline;
    }
  }
}