/* ── Área de cuenta y perfiles premium ── */

.profile-realm-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.profile-realm-tabs--inline {
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.profile-realm-tab {
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.profile-realm-tab:hover {
  color: var(--gold-light);
  border-color: rgba(201, 162, 39, 0.35);
}

.profile-realm-tab.active {
  color: var(--gold-light);
  border-color: rgba(201, 162, 39, 0.5);
  background: rgba(201, 162, 39, 0.1);
}

.account-realm-scp .profile-realm-tab.active {
  color: var(--scp-white, #f4f7fa);
  border-color: rgba(46, 196, 232, 0.5);
  background: rgba(46, 196, 232, 0.1);
}

.account-realm-scp .profile-realm-tab:hover {
  color: #2ec4e8;
  border-color: rgba(46, 196, 232, 0.35);
}

.account-realm-scp .profile-section-title,
.account-realm-scp .profile-preview-label {
  color: #2ec4e8;
}

.account-realm-scp .profile-completeness-fill {
  background: linear-gradient(90deg, #1a8aaa, #2ec4e8);
}

.account-realm-completeness {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .account-realm-completeness {
    grid-template-columns: 1fr 1fr;
  }
}

.member-profile-realm-tag {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  z-index: 1;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gold-light);
}

.member-profile--scp .member-profile-realm-tag {
  color: #2ec4e8;
  border-color: rgba(46, 196, 232, 0.35);
}

/* ── Perfil: proporción del banner (860×160 en perfil público) ── */
:root {
  --profile-banner-aspect: 860 / 160;
}

.account-nav a[target="_blank"] {
  font-size: 0.82rem;
  color: var(--gold);
  border-top: 1px solid var(--border-subtle);
  margin-top: 0.35rem;
  padding-top: 0.75rem;
}

.account-nav-logout {
  color: var(--text-muted) !important;
  font-size: 0.82rem;
  margin-top: 0.25rem;
}

.account-nav-logout:hover {
  color: #e63956 !important;
  background: rgba(230, 57, 86, 0.08) !important;
}

.account-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--bg-elevated);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--gold-light);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  max-width: min(90vw, 360px);
}

.account-toast--visible {
  opacity: 1;
  transform: translateY(0);
}

.account-toast--error {
  border-color: rgba(230, 57, 86, 0.5);
  color: #f08090;
}

.account-toast--info {
  border-color: rgba(201, 162, 39, 0.25);
  color: var(--text-muted);
}

.profile-completeness {
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.profile-completeness-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.profile-completeness-head strong {
  color: var(--gold-light);
  font-family: var(--font-display);
}

.profile-completeness-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.profile-completeness-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 3px;
  transition: width 0.4s ease;
}

.account-summary-head {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.account-summary-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 162, 39, 0.45);
  flex-shrink: 0;
}

/* ── Editor de perfil ── */
.profile-editor-layout {
  display: grid;
  grid-template-columns: 1fr min(340px, 38%);
  gap: 1.5rem;
  align-items: start;
}

.profile-editor-head h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin: 0 0 0.35rem;
}

.profile-editor-head p {
  margin: 0 0 1.25rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.profile-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.profile-section:last-of-type {
  border-bottom: none;
}

.profile-section-title {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.profile-visual-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

.upload-zone {
  cursor: pointer;
  position: relative;
}

.upload-zone.dragover .upload-zone-preview {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.25);
}

.upload-zone-hint {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  text-align: center;
}

.upload-zone-preview--banner {
  width: 100%;
  aspect-ratio: var(--profile-banner-aspect);
  height: auto;
  border-radius: var(--radius-sm);
  background-color: rgba(0, 0, 0, 0.35);
  border: 1px dashed rgba(201, 162, 39, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.upload-zone-preview--banner.has-banner .upload-zone-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.35rem;
  background: rgba(0, 0, 0, 0.55);
  font-size: 0.68rem;
}

.upload-zone-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.upload-zone--banner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.banner-adjust-btn {
  align-self: flex-start;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
}

.member-profile-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* ── Editor de encuadre de banner ── */
.banner-editor-open { overflow: hidden; }

.banner-editor-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(4px);
}

.banner-editor-modal {
  width: min(560px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.35rem 1.35rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.banner-editor-head h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
}

.banner-editor-head p {
  margin: 0 0 1rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.banner-editor-previews {
  margin-bottom: 1rem;
}

.banner-editor-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--radius-sm);
  background: #0a0a0c;
  cursor: grab;
  touch-action: none;
}

.banner-editor-frame.is-dragging { cursor: grabbing; }

.banner-editor-frame--profile {
  width: 100%;
  aspect-ratio: var(--profile-banner-aspect);
  height: auto;
}

.banner-editor-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.banner-editor-frame-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 30%, rgba(14, 14, 18, 0.95) 100%);
}

.banner-editor-controls {
  margin-bottom: 1rem;
}

.banner-editor-zoom {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.banner-editor-zoom input[type="range"] {
  flex: 1;
  accent-color: var(--gold);
}

.banner-editor-zoom output {
  min-width: 3rem;
  text-align: right;
  color: var(--gold-light);
  font-weight: 600;
}

.banner-editor-hint {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.banner-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.account-realm-scp .banner-editor-modal {
  border-color: rgba(46, 196, 232, 0.35);
}

.upload-zone-preview--banner .upload-zone-hint {
  margin: 0;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-sm);
}

.upload-zone--avatar {
  width: 96px;
}

.upload-zone-preview--avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201, 162, 39, 0.45);
  background: rgba(0, 0, 0, 0.35);
}

.upload-zone-preview--avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accent-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.accent-swatch {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.accent-swatch:hover { transform: scale(1.08); }

.accent-swatch.active {
  border-color: var(--white);
  box-shadow: 0 0 0 2px var(--profile-accent, var(--gold));
}

.accent-picker-native {
  width: 2.5rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.house-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.5rem;
}

.house-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0.5rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  text-align: center;
}

.house-card input { position: absolute; opacity: 0; pointer-events: none; }

.house-card.selected {
  border-color: var(--house-color, var(--gold));
  background: color-mix(in srgb, var(--house-color, var(--gold)) 12%, transparent);
}

.house-card-sigil {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  background: var(--house-color, #333);
}

.house-card--none .house-card-sigil {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.house-card-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.house-card.selected .house-card-name { color: var(--white); }

.field-counter {
  float: right;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.field-hint {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
}

.toggle-row input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--gold);
}

.profile-editor-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}

.profile-editor-preview {
  position: sticky;
  top: 88px;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.profile-preview-label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Perfil público premium ── */
.member-profile {
  --profile-accent: #c9a227;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-elevated);
}

.member-profile--compact {
  font-size: 0.92em;
}

.member-profile--compact .member-profile-banner-fade {
  background: linear-gradient(180deg, transparent 55%, rgba(14, 14, 18, 0.55) 100%);
}

.member-profile--compact .member-profile-body {
  padding-top: 0.85rem;
}

.member-profile--compact .member-profile-avatar {
  width: 64px;
  height: 64px;
}

.member-profile-banner {
  position: relative;
  width: 100%;
  aspect-ratio: var(--profile-banner-aspect);
  height: auto;
  overflow: hidden;
  background-color: var(--bg-elevated);
}

.member-profile-banner:not(:has(.member-profile-banner-img)) {
  background-image: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(0, 0, 0, 0.6));
}

.member-profile-banner-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(14, 14, 18, 0.55) 100%);
}

.member-profile-body {
  padding: 1rem 1.35rem 1.5rem;
  position: relative;
}

.member-profile-head {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.member-profile-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.member-profile-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--profile-accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  background: var(--bg-elevated);
}

.member-house-badge {
  position: absolute;
  bottom: -4px;
  right: -8px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.45rem;
  border-radius: var(--radius-sm);
  background: var(--house-color);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.member-profile-name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--white);
  margin: 0 0 0.5rem;
}

.member-profile-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.member-chip {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

.member-chip--link {
  color: var(--gold);
  text-decoration: none;
}

.member-chip--link:hover { color: var(--gold-light); }

.member-profile-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.member-profile-stats strong { color: var(--gold-light); }

.member-rank-pill {
  color: var(--profile-accent) !important;
  font-weight: 600;
}

.panel-parchment {
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.35)),
    url('../assets/ui/forums/hero-parchment.png') center / cover no-repeat;
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-sm);
}

.panel-parchment p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #c8c8ce;
}

/* Biografía SCP — dossier técnico (distinto del pergamino Hogwarts) */
.panel-scp-dossier {
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
  background:
    linear-gradient(135deg, rgba(6, 16, 24, 0.94), rgba(8, 12, 18, 0.9)),
    repeating-linear-gradient(
      90deg,
      rgba(46, 196, 232, 0.05) 0,
      rgba(46, 196, 232, 0.05) 1px,
      transparent 1px,
      transparent 14px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(46, 196, 232, 0.025) 0,
      rgba(46, 196, 232, 0.025) 1px,
      transparent 1px,
      transparent 10px
    ),
    url('../assets/ui/forums/scp/thread-page-bg-scp.png') center / cover no-repeat;
  border: 1px solid rgba(46, 196, 232, 0.28);
  border-left: 3px solid rgba(46, 196, 232, 0.65);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 0 28px rgba(46, 196, 232, 0.05);
}

.panel-scp-dossier p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #b8c9d8;
}

.member-profile-signature {
  padding: 0.75rem 0;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border-subtle);
}

.member-profile-signature-body {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.member-profile-signature-body .bb-quote {
  margin: 0.35rem 0;
  padding: 0.35rem 0.65rem;
  border-left: 2px solid rgba(255, 255, 255, 0.12);
}

.member-profile-signature-body .bb-code {
  display: inline-block;
  padding: 0.1rem 0.35rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 3px;
  font-family: monospace;
}

.member-profile-signature-body .bb-center {
  display: block;
  text-align: center;
}

.member-profile-signature-body a {
  color: var(--gold);
}

.member-profile-signature-body .bb-img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 160px;
  margin-top: 0.35rem;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

/* ── Editor de firma (BBCode) ── */
.bb-format-toolbar,
.sig-format-toolbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.4rem;
  padding: 0.35rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.bb-format-btn,
.sig-format-btn {
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.bb-format-btn:hover,
.sig-format-btn:hover {
  background: rgba(201, 162, 39, 0.12);
  border-color: rgba(201, 162, 39, 0.35);
  color: var(--gold-light);
}

.bb-image-menu,
.sig-image-menu {
  z-index: 20;
  min-width: 10.5rem;
  padding: 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.bb-image-menu-title,
.sig-image-menu-title {
  margin: 0 0 0.4rem;
  padding: 0 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
}

.bb-image-menu-btn,
.sig-image-menu-btn {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.45rem 0.65rem;
  text-align: left;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.bb-image-menu-btn:hover,
.sig-image-menu-btn:hover {
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-light);
}

.account-realm-scp .bb-format-btn:hover,
.account-realm-scp .sig-format-btn:hover {
  background: rgba(46, 196, 232, 0.12);
  border-color: rgba(46, 196, 232, 0.35);
  color: #5dd4f4;
}

.account-realm-scp .bb-image-menu,
.account-realm-scp .sig-image-menu {
  border-color: rgba(46, 196, 232, 0.35);
}

.account-realm-scp .bb-image-menu-title,
.account-realm-scp .sig-image-menu-title {
  color: #2ec4e8;
}

.account-realm-scp .bb-image-menu-btn:hover,
.account-realm-scp .sig-image-menu-btn:hover {
  background: rgba(46, 196, 232, 0.12);
  color: #5dd4f4;
}

.account-realm-scp .member-profile-signature-body a {
  color: #2ec4e8;
}

.bb-editor-field,
.sig-editor-field {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.member-card .member-card-banner {
  height: 48px;
  margin: -1.25rem -1.25rem 0.75rem;
  background: center / cover no-repeat;
  border-bottom: 1px solid var(--border-subtle);
}

.member-card-house {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0.35rem;
  color: var(--house-color, var(--gold));
}

/* Header cuenta con avatar */
.header-account-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem !important;
  white-space: nowrap;
}

.header-account-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(201, 162, 39, 0.45);
}

@media (max-width: 1024px) {
  .profile-editor-layout {
    grid-template-columns: 1fr;
  }

  .profile-editor-preview {
    position: static;
    order: -1;
  }

  .profile-visual-grid {
    grid-template-columns: 1fr;
  }

  .upload-zone--avatar {
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .account-summary-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-account-btn span {
    display: none;
  }
}
