/* ═══════════════════════════════════════════════════════════════
   PROFILE
   ═══════════════════════════════════════════════════════════════ */

.profile-header {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.profile-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-warm);
  flex-shrink: 0;
}
.profile-avatar-placeholder {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--bg-elevated); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; flex-shrink: 0;
}
.profile-header-info h2 { margin: 0 0 0.25rem; font-size: 1.25rem; }
.profile-bio { font-size: 0.875rem; color: var(--text-muted); margin: 0.25rem 0; }
.profile-meta { font-size: 0.8rem; color: var(--text-muted); margin: 0.25rem 0 0.5rem; }
.profile-social { display: flex; align-items: center; gap: 1rem; font-size: 0.875rem; flex-wrap: wrap; }
.profile-social span { color: var(--text-muted); }
.profile-tier-badge {
  font-size: 0.7rem; font-weight: 600; color: var(--accent);
  background: var(--accent-glow); border: 1px solid rgba(232,145,10,0.3);
  border-radius: var(--radius-pill); padding: 0.15rem 0.55rem; vertical-align: middle;
}
.profile-me-hint { font-size: 0.8rem; color: var(--text-muted); font-style: italic; }

.profile-stats-bar {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.profile-stat {
  flex: 1; min-width: 80px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.75rem 1rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
}
.profile-stat-val { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.profile-stat-lbl { font-size: 0.75rem; color: var(--text-muted); text-align: center; }

.profile-section-title { font-size: 1rem; margin: 0 0 0.75rem; }

.profile-tasting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}
.profile-tasting-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.85rem 1rem;
}
.ptc-name    { font-weight: 600; font-size: 0.875rem; margin-bottom: 0.15rem; }
.ptc-brewery { font-size: 0.775rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.ptc-stars   { color: var(--accent); font-size: 0.85rem; margin-bottom: 0.3rem; letter-spacing: 1px; }
.ptc-notes   { font-size: 0.775rem; color: var(--text-muted); line-height: 1.4; }

@media (max-width: 600px) {
  .profile-header { flex-direction: column; align-items: center; text-align: center; }
  .profile-social { justify-content: center; }
  .profile-stats-bar { gap: 0.5rem; }
  .profile-stat { min-width: 70px; padding: 0.6rem 0.5rem; }
}
