.account {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.account-header {
  margin-bottom: 24px;
}

.account-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}

.account-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 20px 50px -30px rgba(0, 0, 0, 0.25);
  margin-bottom: 28px;
}

.account-profile__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--card-alt), 0 0 0 3px var(--gold-solid);
}

.account-profile__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--ink);
  font-weight: 600;
}

.account-profile__tier {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}

.account-profile__tier span {
  font-size: 11.5px;
  color: var(--gold-solid);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.account-menu {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: 20px;
  box-shadow: 0 20px 50px -30px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.account-menu__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--hairline);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  color: inherit;
}

.account-menu__item:last-child {
  border-bottom: none;
}

.account-menu__item:hover {
  background: var(--card-alt);
}

.account-menu__icon {
  color: var(--gold-solid);
  flex-shrink: 0;
}

.account-menu__body {
  flex: 1;
  min-width: 0;
}

.account-menu__title {
  font-size: 13.5px;
  color: var(--ink);
}

.account-menu__subtitle {
  font-size: 11.5px;
  color: var(--ink-muted);
  margin-top: 2px;
}

.account-menu__chevron {
  color: #a98a6f;
  flex-shrink: 0;
}

.account-menu__item--logout .account-menu__icon,
.account-menu__item--logout .account-menu__title {
  color: var(--terracotta);
}

.account-menu__item--logout .account-menu__icon {
  color: var(--terracotta);
}

/* ---- Toast ---- */

.account-toast {
  position: fixed;
  left: 50%;
  bottom: 96px;
  transform: translateX(-50%) translateY(12px);
  background: var(--ink);
  color: #FFFFFF;
  font-size: 12.5px;
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: 0 16px 32px -14px rgba(74, 46, 31, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  z-index: 30;
}

@media (min-width: 720px) {
  .account-toast { bottom: 32px; }
}

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