/* ── Auth ── */
.auth-page { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-left {
  background: var(--navy-soft); padding: 60px;
  display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden;
}
[data-theme="dark"] .auth-left { background: #0A1020; }
.auth-left::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(184,132,42,0.12); pointer-events: none;
}
.auth-left-logo { height: 56px; width: auto; margin-bottom: 52px; filter: brightness(0) invert(1); opacity: 0.9; }
.auth-left-quote {
  font-family: var(--font-display); font-size: 34px; font-style: italic;
  color: #fff; line-height: 1.35; margin-bottom: 18px; position: relative; z-index: 1;
}
.auth-left-quote::before {
  content: '\201C'; font-size: 90px; color: var(--gold-light); opacity: 0.35;
  position: absolute; top: -36px; left: -12px;
  font-family: var(--font-display); line-height: 1;
}
.auth-left-caption { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 300; position: relative; z-index: 1; }
.auth-right { display: flex; align-items: center; justify-content: center; padding: 60px; background: var(--bg); }
.auth-form-wrapper { width: 100%; max-width: 400px; }
.auth-title { font-family: var(--font-display); font-size: 34px; color: var(--ink); margin-bottom: 8px; }
.auth-sub { font-size: 14px; color: var(--ink-muted); margin-bottom: 32px; }
.auth-divider { display: flex; align-items: center; gap: 14px; margin: 22px 0; }
.auth-divider span { font-size: 13px; color: var(--ink-faint); white-space: nowrap; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-social-btn {
  width: 100%; padding: 12px 20px; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); background: var(--surface); color: var(--ink);
  font-size: 14px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: var(--transition); margin-bottom: 12px; font-family: var(--font-body);
}
.auth-social-btn:hover { background: var(--bg2); box-shadow: var(--shadow-sm); }
.auth-switch { text-align: center; margin-top: 22px; font-size: 14px; color: var(--ink-muted); }
.auth-switch a { color: var(--gold); font-weight: 600; }
@media (max-width: 768px) { .auth-page { grid-template-columns: 1fr; } .auth-left { display: none; } .auth-right { padding: 40px 24px; } }

/* ── Track ── */
.track-page { padding: 64px 0 100px; }
.track-hero { text-align: center; margin-bottom: 52px; }
.track-hero h1 { font-size: clamp(36px,5vw,56px); margin-bottom: 12px; }
.track-hero p { font-size: 16px; color: var(--ink-muted); font-weight: 400; }
.track-search { display: flex; gap: 12px; max-width: 540px; margin: 28px auto 0; }
.track-search .input-field { flex: 1; font-family: monospace; font-size: 15px; letter-spacing: 0.07em; }
.track-result { max-width: 680px; margin: 44px auto 0; display: none; }
.track-result.visible { display: block; }
.track-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.track-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.track-id { font-size: 12px; color: var(--ink-faint); font-family: monospace; }
.status-badge { padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 700; font-family: var(--font-body); }
.status-badge.kargoda { background: var(--gold-pale); color: var(--gold); border: 1px solid var(--gold-border); }
.status-badge.teslim { background: #EAF6EE; color: #2D7A47; }
.status-badge.hazirlaniyor { background: #FFF8E7; color: #8A6A00; }
[data-theme="dark"] .status-badge.teslim { background: #0A2010; color: #5DC47A; }
[data-theme="dark"] .status-badge.hazirlaniyor { background: #1A1200; color: #C4A020; }
.timeline { display: flex; flex-direction: column; }
.tl-item { display: flex; gap: 16px; }
.tl-track { display: flex; flex-direction: column; align-items: center; width: 24px; flex-shrink: 0; }
.tl-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 4px; }
.tl-dot.done { background: #3DA05A; }
.tl-dot.pending { background: var(--border); border: 1.5px solid var(--ink-faint); }
.tl-line { width: 2px; flex: 1; background: var(--border); margin: 4px 0; min-height: 24px; }
.tl-content { padding-bottom: 22px; }
.tl-title { font-size: 14px; font-weight: 600; color: var(--ink); }
.tl-date { font-size: 12px; color: var(--ink-faint); margin-top: 2px; }

/* ── Profile ── */
.profile-page { padding: 44px 0 80px; }
.profile-grid { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.profile-sidebar { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; position: sticky; top: 88px; }
.profile-avatar-section { background: var(--gold-pale); border-bottom: 1px solid var(--gold-border); padding: 28px; text-align: center; }
.profile-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold); border: 3px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 28px; color: #fff;
  margin: 0 auto 12px; box-shadow: var(--shadow-sm);
}
.profile-name { font-family: var(--font-display); font-size: 20px; color: var(--ink); }
.profile-email { font-size: 13px; color: var(--ink-muted); margin-top: 3px; }
.profile-nav { padding: 10px 0; }
.profile-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px; font-size: 14px; color: var(--ink-muted);
  transition: var(--transition); font-weight: 500;
}
.profile-nav a:hover, .profile-nav a.active { color: var(--gold); background: var(--gold-pale); }
.profile-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }
.profile-content-area { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.order-history-item { display: flex; align-items: center; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--border-soft); }
.order-history-item:last-child { border-bottom: none; }
.order-thumb { width: 54px; height: 70px; border-radius: var(--radius-sm); background: var(--bg2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.order-info { flex: 1; }
.order-info-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.order-info-meta { font-size: 13px; color: var(--ink-muted); }
.order-price { font-family: var(--font-display); font-size: 22px; color: var(--gold); }
@media (max-width: 768px) { .profile-grid { grid-template-columns: 1fr; } .profile-sidebar { position: static; } }
@media (max-width: 700px) {
  .about-cta-grid { grid-template-columns: 1fr !important; }
}