.account-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.account-summary-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 7px 24px #17211b0a;
  display: grid;
  gap: 8px;
  transition: transform .15s ease, border-color .15s ease;
}
.account-summary-card:hover { transform: translateY(-2px); border-color: var(--green); }
.account-summary-card span { font-weight: 900; font-size: 1.15rem; }
.account-summary-card strong { font-size: 1.85rem; }
.archive-button { background: #f59e0b; color: #17211b; }
.archive-button:hover { background: #dc7f08; color: white; }
.account-total { background: var(--ink); color: white; border-radius: 15px; padding: 16px 22px; }
.account-total span { display: block; color: #bfc9c2; }
.account-total strong { font-size: 1.8rem; }
.account-order { border-bottom: 1px solid var(--line); padding: 13px 0; }
.account-order summary { display: flex; justify-content: space-between; gap: 15px; cursor: pointer; }
.account-order .row { padding: 6px 12px; }
.payment { padding: 10px 0; border-bottom: 1px solid var(--line); }
