/* ============================================================
   account.css — login/register + profile dashboard
   ============================================================ */

/* ── LOGIN / REGISTER ─────────────────────────────────────── */
.nt-auth-grid { display: block; }
.nt-auth-grid--two .nt-auth-wrap + .nt-auth-wrap { margin-top: 32px; }
@media (min-width: 783px) {
  .nt-auth-grid--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    max-width: 900px;
    margin: 24px auto;
  }
  .nt-auth-grid--two .nt-auth-wrap { margin: 0; }
}
.nt-auth-wrap {
  max-width: 420px;
  margin: 24px auto;
  padding: 28px 24px;
  border-radius: var(--nt-radius-card);
}
.nt-auth-wrap h2 { font-family: var(--f-display); font-size: 22px; margin: 0 0 4px; }
.nt-auth-wrap p.nt-auth-sub { font-size: 13.5px; color: var(--nt-ink-soft); margin: 0 0 22px; }
.nt-auth-switch { text-align: center; margin-top: 18px; font-size: 13.5px; color: var(--nt-ink-soft); }
.nt-auth-switch a { color: var(--nt-purple-dark); font-weight: 700; }
.nt-auth-forgot { display: block; text-align: right; font-size: 12.5px; font-weight: 700; color: var(--nt-purple-dark); margin: -8px 0 18px; }

.woocommerce-form-login,
.woocommerce-form-register { border: none !important; padding: 0 !important; }
.woocommerce form .form-row label { display: block; font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 700; color: var(--nt-ink-faint); margin-bottom: 6px; }
.woocommerce form .form-row input.input-text {
  width: 100%; height: 50px; border-radius: var(--nt-radius-btn);
  border: 1.5px solid rgba(26, 21, 35, 0.08); padding: 0 16px; font-family: var(--f-body);
}
.woocommerce form .woocommerce-form-login__submit,
.woocommerce form .woocommerce-form-register__submit,
.woocommerce #customer_login .button {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; height: 56px; border-radius: var(--nt-radius-btn);
  background: var(--nt-gradient) !important; color: #fff !important;
  font-weight: 700; box-shadow: var(--nt-btn-shadow); border: none;
}

/* ── PROFILE DASHBOARD ────────────────────────────────────── */
.nt-profile-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.nt-profile-avatar {
  width: 56px; height: 56px; border-radius: 18px;
  background: var(--nt-gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 800; font-size: 18px;
}
.nt-profile-name { font-weight: 800; font-size: 16px; }
.nt-profile-email { font-size: 13px; color: var(--nt-ink-soft); }
.nt-profile-tier {
  display: inline-flex; margin-top: 4px;
}

.nt-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.nt-stat-card {
  padding: 14px;
  border-radius: 16px;
  background: var(--nt-white);
  box-shadow: var(--nt-card-shadow);
  text-align: center;
}
.nt-stat-card__value { font-family: var(--f-display); font-size: 20px; font-weight: 800; }
.nt-stat-card__label { font-size: 11px; color: var(--nt-ink-soft); margin-top: 2px; }

.nt-order-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26, 21, 35, 0.06);
}
.nt-order-row__id { font-weight: 700; font-size: 14px; }
.nt-order-row__meta { font-size: 12.5px; color: var(--nt-ink-soft); }
.nt-order-status {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--nt-radius-pill);
}
.nt-order-status--delivered { background: rgba(31, 170, 89, 0.1); color: #1FAA59; }
.nt-order-status--shipped { background: rgba(124, 58, 237, 0.1); color: var(--nt-purple-dark); }
.nt-order-status--processing { background: rgba(255, 176, 32, 0.15); color: #B37500; }
.nt-order-status--cancelled { background: rgba(220, 53, 69, 0.1); color: #DC3545; }

.nt-settings-list { list-style: none; margin: 0; padding: 0; }
.nt-settings-list li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26, 21, 35, 0.06);
  font-size: 14px; font-weight: 600;
}
.nt-settings-list li a.nt-settings-admin { color: var(--nt-purple-dark); font-weight: 700; }

/* Native WooCommerce account nav — restyled to match the settings list */
.woocommerce-MyAccount-navigation { margin-bottom: 24px; }
.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-MyAccount-navigation ul li { border-bottom: 1px solid rgba(26, 21, 35, 0.06); }
.woocommerce-MyAccount-navigation ul li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; font-size: 14px; font-weight: 600; color: var(--nt-ink);
}
.woocommerce-MyAccount-navigation ul li.is-active a { color: var(--nt-purple-dark); font-weight: 700; }
.woocommerce-MyAccount-navigation > a { display: block; padding: 14px 0; font-size: 14px; font-weight: 600; border-bottom: 1px solid rgba(26, 21, 35, 0.06); }
.woocommerce-MyAccount-navigation > a.nt-settings-admin { color: var(--nt-purple-dark); }
