/* ============================================================
   site-v28 — account/shop layer (login, signup, cart, checkout,
   my-account rebuilds). Paper cards, ink borders, mono labels.
   ============================================================ */

.acct-main { min-height: 60vh; padding: 56px 0 80px; }
.acct-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 48px; }
.acct-wrap--narrow { max-width: 560px; }
@media (max-width: 820px) { .acct-wrap { padding: 0 20px; } }

/* Page heading with tag bar (mirrors the marketing .tag) */
.acct-head { margin-bottom: 34px; }
.acct-head h1 {
  font-family: var(--f-display); font-weight: 800; text-transform: uppercase;
  line-height: 0.94; letter-spacing: -0.02em; font-size: clamp(30px, 4.6vw, 52px); color: var(--ink);
}
.acct-head p { margin-top: 12px; color: #3a352d; font-size: 16px; }

/* Card */
.acct-card {
  background: #f7f2e6; border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(21, 19, 16, 0.14); padding: 30px 28px;
}
.acct-card + .acct-card { margin-top: 22px; }

/* Fields */
.acct-field { margin-bottom: 18px; }
.acct-field label {
  display: block; font-family: var(--f-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #6f6759; margin-bottom: 7px;
}
.acct-field input[type="email"], .acct-field input[type="password"], .acct-field input[type="text"],
.acct-field input[type="tel"], .acct-field input[type="number"], .acct-field select, .acct-field textarea {
  width: 100%; padding: 12px 14px; font: 500 15px/1.4 var(--f-body); color: var(--ink);
  background: #efe9db; border: 2px solid rgba(21, 19, 16, 0.35); border-radius: 0;
}
.acct-field input:focus, .acct-field select:focus, .acct-field textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 3px 3px 0 rgba(0, 167, 225, 0.35);
}

/* Meta row (remember / forgot) */
.acct-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin: 4px 0 20px; font-size: 14px; }
.acct-meta label { display: flex; align-items: center; gap: 8px; cursor: pointer; color: #3a352d; }
.acct-meta input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--cyan); }
.acct-meta a { color: #007bb0; font-weight: 600; text-decoration: none; }
.acct-meta a:hover { color: var(--cyan); }

/* Primary button */
.acct-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  padding: 14px 22px; font: 700 15px/1 var(--f-display); text-transform: uppercase; letter-spacing: 0.04em;
  background: var(--cyan); color: var(--ink); border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink); cursor: pointer; transition: transform 0.15s, box-shadow 0.15s;
}
.acct-btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }
.acct-btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.acct-btn--ghost { background: transparent; box-shadow: none; }
.acct-btn--ghost:hover { box-shadow: 3px 3px 0 var(--ink); }

/* Notices */
.acct-notice { padding: 13px 16px; font-size: 14px; margin-bottom: 20px; border: 2px solid var(--ink); }
/* Tokenised 2026-09-18 — same six strays as .dtf-ai__msg in pages.css. */
.acct-notice--error { background: var(--danger-tint); border-color: var(--danger); color: var(--ink); }
.acct-notice--success { background: var(--success-tint); border-color: var(--success); color: var(--ink); }
.acct-notice a { color: inherit; font-weight: 700; }

/* Switch line under a card */
.acct-switch { margin-top: 18px; text-align: center; font-size: 14px; color: #6f6759; }
.acct-switch a { color: #007bb0; font-weight: 700; text-decoration: none; }
.acct-switch a:hover { color: var(--cyan); }

/* Material Symbols base class (was defined in the old main.css) */
.material-symbols-rounded {
  font-family: 'Material Symbols Rounded'; font-weight: normal; font-style: normal;
  font-size: 20px; line-height: 1; letter-spacing: normal; text-transform: none;
  display: inline-block; white-space: nowrap; word-wrap: normal; direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.icon-sm { font-size: 18px; } .icon-md { font-size: 24px; } .icon-lg { font-size: 32px; }
