/* ─── Profile View ─────────────────────────────────────────────────────────── */
.profile-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 16px;
}
.profile-loading, .profile-error {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 15px;
}
.profile-error { color: #dc2626; }

/* Header */
.profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.profile-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.profile-email {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.profile-member-since {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* Stats */
.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.profile-stat {
  text-align: center;
  padding: 16px 8px;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.ps-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--teal);
}
.ps-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Tabs */
.profile-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
  overflow-x: auto;
}
.profile-tab {
  padding: 10px 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.15s;
}
.profile-tab:hover { color: var(--text); }
.profile-tab.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}
.profile-tab i { margin-right: 6px; }

/* ── Follows tab ───────────────────────────────────────────────────────────── */
.profile-follows-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.profile-follow-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s;
}
.profile-follow-card:hover { box-shadow: var(--shadow-md); }
.pfc-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.pfc-area {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.pfc-unfollow {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.pfc-unfollow:hover { background: rgba(220, 38, 38, 0.18); }

/* Empty state */
.profile-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
}
.profile-empty i { font-size: 32px; margin-bottom: 12px; display: block; color: var(--muted); }
.profile-empty p { margin: 4px 0; color: var(--muted); }
.profile-empty-hint { font-size: 13px; opacity: 0.7; }

/* ── Goals tab ─────────────────────────────────────────────────────────────── */
.profile-goals-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.profile-goals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.profile-goal-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--card-bg);
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: all 0.15s;
  box-shadow: var(--shadow-sm);
}
.profile-goal-chip:hover { box-shadow: var(--shadow-md); }
.profile-goal-chip.selected {
  border-color: var(--teal);
  background: rgba(26, 138, 125, 0.06);
}
.profile-goal-chip input { display: none; }
.pgc-icon { font-size: 18px; }
.pgc-label { font-size: 13px; color: var(--text); font-weight: 500; flex: 1; }
.pgc-arrow {
  font-size: 10px;
  color: var(--muted);
  transition: transform 0.2s;
}
.profile-goal-chip.selected .pgc-arrow {
  transform: rotate(180deg);
  color: var(--teal);
}

/* Goal trainers panel */
.goal-trainers-panel {
  margin-bottom: 16px;
}
.gtp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 8px;
}
.gtp-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.gtp-count {
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
}
.gtp-empty {
  text-align: center;
  padding: 16px;
  color: var(--muted);
  font-size: 13px;
}
.gtp-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gtp-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--card-bg);
  border-radius: 10px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s;
}
.gtp-card:hover { box-shadow: var(--shadow-md); }
.gtp-thumb {
  width: 48px; height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.gtp-thumb-placeholder {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.gtp-card-body {
  flex: 1;
  min-width: 0;
}
.gtp-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.gtp-desc {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gtp-vids {
  display: inline-block;
  font-size: 11px;
  color: var(--teal);
  margin-top: 4px;
}
.gtp-vids i { margin-right: 3px; }
.gtp-card-right { flex-shrink: 0; }
.gtp-follow-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--card-bg);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.15s;
}
.gtp-follow-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.gtp-follow-btn.following {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.gtp-follow-btn.following:hover {
  background: #dc2626;
  border-color: #dc2626;
  color: #fff;
}

/* ── Preferences tab ───────────────────────────────────────────────────────── */
.profile-prefs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ppr-section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  padding: 8px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ppr-section-title i {
  font-size: 13px;
  color: var(--teal);
}
.profile-pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.ppr-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: block;
}
.ppr-desc {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.4;
}
.ppr-toggle { position: relative; cursor: pointer; flex-shrink: 0; }
.ppr-toggle input { display: none; }
.ppr-switch {
  display: block;
  width: 44px; height: 24px;
  background: var(--border);
  border-radius: 12px;
  position: relative;
  transition: background 0.2s;
}
.ppr-switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}
.ppr-toggle input:checked + .ppr-switch { background: var(--teal); }
.ppr-toggle input:checked + .ppr-switch::after { transform: translateX(20px); }

.profile-billing-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.profile-billing-field span {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}
.profile-billing-field input,
.profile-billing-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--card-bg);
  color: var(--text);
  font: inherit;
  font-size: 14px;
}
.profile-billing-field textarea {
  min-height: 76px;
  resize: vertical;
}
.profile-billing-field input:focus,
.profile-billing-field textarea:focus {
  outline: none;
  border-color: var(--teal);
}

/* Save buttons */
.btn-save-goals, .btn-save-prefs {
  width: 100%;
  padding: 12px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  margin-top: 8px;
  box-shadow: var(--shadow-sm);
}
.btn-save-goals:hover, .btn-save-prefs:hover { opacity: 0.9; }

/* ── Progress Tab ──────────────────────────────────────────────────────────── */
.progress-section { display: flex; flex-direction: column; gap: 24px; }
.progress-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

/* Streak */
.progress-streak {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.ps-fire { font-size: 32px; }
.ps-streak-num { font-size: 36px; font-weight: 800; color: var(--teal); }
.ps-streak-label { font-size: 14px; color: var(--muted); }

/* Heatmap */
.progress-heatmap {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.ph-cell {
  width: 100%; aspect-ratio: 1;
  border-radius: 3px;
  max-width: 24px;
}
.ph-level-0 { background: var(--border); }
.ph-level-1 { background: rgba(26, 138, 125, 0.3); }
.ph-level-2 { background: rgba(26, 138, 125, 0.6); }
.ph-level-3 { background: var(--teal); }
.progress-heatmap-legend {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--muted);
}
.progress-heatmap-legend .ph-cell {
  width: 12px; height: 12px;
  aspect-ratio: auto;
}

/* Category progress */
.pc-row { margin-bottom: 12px; }
.pc-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.pc-icon { font-size: 16px; }
.pc-name { font-size: 13px; font-weight: 600; color: var(--text); flex: 1; }
.pc-nums { font-size: 12px; color: var(--muted); }
.pc-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.pc-bar-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 3px;
  transition: width 0.3s;
}

/* Recommended */
.progress-reco-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.pr-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--card-bg);
  border-radius: 10px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s;
}
.pr-card:hover { box-shadow: var(--shadow-md); }
.pr-thumb {
  width: 44px; height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.pr-thumb-placeholder {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.pr-name { display: block; font-size: 13px; font-weight: 600; color: var(--text); }
.pr-cat { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── Notes Tab ─────────────────────────────────────────────────────────────── */
.notes-list { display: flex; flex-direction: column; gap: 16px; }
.ng-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.ng-header i { color: var(--teal); }
.ng-count {
  margin-left: auto;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}
.note-card {
  padding: 12px 16px;
  background: var(--card-bg);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 8px;
}
.nc-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  white-space: pre-wrap;
}
.nc-meta {
  margin-top: 8px;
  font-size: 11px;
  color: var(--muted);
}
.nc-date i { margin-right: 4px; }

/* Responsive */
@media (max-width: 480px) {
  .profile-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .profile-goals-grid { grid-template-columns: 1fr; }
  .ps-value { font-size: 20px; }
  .profile-tab { padding: 8px 12px; font-size: 12px; }
  .gtp-desc { display: none; }
  .progress-reco-grid { grid-template-columns: 1fr; }
}

/* ── Push Notifications section ───────────────────────────────────────────── */
.push-master-row {
  padding: 4px 0;
}
.push-master-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--card-bg);
  border-radius: 10px;
  font-size: 13px;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}
.push-master-status i { font-size: 16px; }
.push-unavailable i { color: #f59e0b; }

/* ── Dedicated Subscription View ─────────────────────────────────────────── */
.sub-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 16px 72px;
  color: var(--text);
}
.sub-loading {
  max-width: 720px;
  margin: 44px auto;
  padding: 28px 18px;
  color: var(--muted);
  text-align: center;
}
.sub-loading i { margin-right: 8px; color: var(--teal); }
.sub-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.sub-kicker, .sub-label {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sub-hero h1 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1.05;
}
.sub-hero p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.sub-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: var(--r-full);
  border: 1px solid rgba(245, 240, 232, .08);
  color: var(--muted);
  white-space: nowrap;
}
.sub-status.active {
  border-color: rgba(52, 211, 153, .28);
  background: rgba(52, 211, 153, .09);
  color: #34D399;
}
.sub-status.inactive {
  border-color: rgba(245, 158, 11, .25);
  background: rgba(245, 158, 11, .08);
  color: #F59E0B;
}
.sub-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .9fr);
  gap: 16px;
  margin-bottom: 16px;
}
.sub-panel {
  background: rgba(245, 240, 232, .035);
  border: 1px solid rgba(245, 240, 232, .08);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
}
.sub-panel-main {
  background: linear-gradient(145deg, rgba(52, 211, 153, .08), rgba(245, 240, 232, .035));
}
.sub-panel h2 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 22px;
}
.sub-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}
.sub-badge, .sub-mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: var(--r-full);
  background: rgba(52, 211, 153, .12);
  border: 1px solid rgba(52, 211, 153, .22);
  color: #34D399;
  font-size: 12px;
  font-weight: 800;
}
.sub-muted, .sub-note {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.sub-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(245, 158, 11, .08);
  border: 1px solid rgba(245, 158, 11, .2);
}
.sub-facts, .sub-billing-list {
  display: grid;
  gap: 10px;
}
.sub-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.sub-facts div, .sub-billing-list div {
  padding: 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, .14);
  border: 1px solid rgba(245, 240, 232, .06);
}
.sub-facts span, .sub-billing-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}
.sub-facts strong, .sub-billing-list strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
}
.sub-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.sub-primary, .sub-secondary, .sub-plan-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}
.sub-primary {
  background: var(--teal);
  color: white;
}
.sub-secondary, .sub-plan-row button {
  background: rgba(245, 240, 232, .06);
  border: 1px solid rgba(245, 240, 232, .1);
  color: var(--text);
}
.sub-feature-list {
  display: grid;
  gap: 10px;
}
.sub-feature-list div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.45;
}
.sub-feature-list i {
  color: var(--teal);
  margin-top: 3px;
}
.sub-plan-list {
  display: grid;
  gap: 10px;
}
.sub-plan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, .14);
  border: 1px solid rgba(245, 240, 232, .06);
}
.sub-plan-row strong, .sub-plan-row span {
  display: block;
}
.sub-plan-row span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}
.sub-empty {
  padding: 36px 18px;
  border: 1px solid rgba(245, 240, 232, .08);
  border-radius: 8px;
  text-align: center;
  background: rgba(245, 240, 232, .035);
}
.sub-empty i {
  color: #F59E0B;
  font-size: 26px;
  margin-bottom: 12px;
}
.sub-empty h2 {
  margin: 0 0 8px;
}
.sub-empty p {
  margin: 0;
  color: var(--muted);
}
@media (max-width: 760px) {
  .sub-hero {
    align-items: flex-start;
    flex-direction: column;
  }
  .sub-grid, .sub-facts {
    grid-template-columns: 1fr;
  }
  .sub-panel {
    padding: 18px;
  }
  .sub-hero h1 {
    font-size: 30px;
  }
}
.push-denied i { color: #dc2626; }

.push-master-active {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.push-active-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
}
.push-active-badge i { font-size: 16px; }

.push-enable-btn {
  width: 100%;
  padding: 14px;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: opacity 0.15s;
}
.push-enable-btn:hover { opacity: 0.9; }
.push-enable-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.push-disable-btn {
  padding: 8px 14px;
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
  font-size: 12px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s;
}
.push-disable-btn:hover { background: rgba(220, 38, 38, 0.18); }

.push-toggles {
  margin-top: 4px;
}

/* ── Avatar ── */
.profile-avatar-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.profile-avatar-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary, #6c63ff);
}
.profile-avatar-edit {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background: var(--primary, #6c63ff);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}
.profile-avatar-edit:hover { background: #5a52d5; }
.profile-avatar-remove {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 11px;
}
.profile-bio-wrap { margin-top: 8px; width: 100%; }
.profile-bio-input {
  width: 100%;
  min-height: 48px;
  max-height: 80px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  resize: vertical;
  font-family: inherit;
}
.profile-bio-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}
.profile-bio-count { font-size: 12px; color: #999; }
.profile-bio-save {
  font-size: 13px;
  padding: 4px 16px;
  background: var(--teal, #2dd4bf);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.security-form { max-width: 400px; }
.security-form .form-group { margin-bottom: 16px; }
.security-form .form-group label {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
}
.security-form .form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
}
.security-form .btn-primary {
  background: var(--teal, #2dd4bf);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}
.security-form .btn-primary:hover { opacity: 0.9; }
.security-form .btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.security-error {
  color: #e74c3c;
  font-size: 14px;
  margin-bottom: 12px;
  padding: 8px 12px;
  background: #ffeaea;
  border-radius: 6px;
}
.hidden { display: none !important; }
