/* ═══════════════════════════════════════════════════════════════
   hp-myaccount — My Account Dashboard
   ═══════════════════════════════════════════════════════════════ */

.hp-myaccount {
  margin-top: 95px;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 6vw, 80px)
    clamp(64px, 10vw, 120px);
  min-height: 60vh;
}

/* ── Greeting ─────────────────────────────────────────────── */
.hp-myaccount__greeting {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 1.94vw, 1.75rem);
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111111;
  margin: 0 0 clamp(32px, 5vw, 48px);
}

/* ── Layout: sidebar + content ────────────────────────────── */
.hp-myaccount__layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

/* ── Sidebar nav ──────────────────────────────────────────── */
.hp-myaccount__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hp-myaccount__nav-link {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0;
  display: block;
  color: #6d6a6a;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.hp-myaccount__nav-link:hover {
  color: #000000;
}

.hp-myaccount__nav-link.is-active {
  color: #000000;
  font-weight: 500;
  text-decoration: underline;
}

.hp-myaccount__nav-link--logout {
  margin-top: 8px;
  color: #888;
  /* font-size: clamp(0.72rem, 0.9vw, 0.82rem); */
}

.hp-myaccount__nav-link--logout:hover {
  color: #9d2235;
}

/* ── Profile content ──────────────────────────────────────── */
.hp-myaccount__profile {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hp-myaccount__profile-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  /* padding-bottom: clamp(16px, 2.5vw, 24px); */
  margin-bottom: clamp(16px, 2.5vw, 24px);
}

.hp-myaccount__profile-label {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111111;
}

.hp-myaccount__profile-value {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0;
  color: #111111;
}

/* ── Edit profile link ────────────────────────────────────── */
.hp-myaccount__edit-link {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.286;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  color: #9d2235;
  text-decoration: none;
  margin-top: 8px;
  transition: opacity 0.2s ease;
}

.hp-myaccount__edit-link:hover {
  opacity: 0.7;
}

/* ── WC default content override ─────────────────────────── */
.hp-myaccount__content .woocommerce-MyAccount-content {
  padding: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .hp-myaccount__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hp-myaccount__nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #d8d3cc;
  }

  .hp-myaccount__nav-link--logout {
    margin-top: 0;
  }
}
