/*
 * Moda Merkez Topluluk Soru-Cevap — qa.css
 * Aşama 2: layout, kart, kategori chip, profil, listing, detay, bottom nav
 * Renk dili: mor gradient (#4F46E5 → #7C3AED), beyaz/slate metin
 */

:root {
  --qa-bg: #fafbff;
  --qa-fg: #0f172a;
  --qa-muted: #475569;
  --qa-muted-2: #64748b;
  --qa-border: #e5e7eb;
  --qa-card: #ffffff;
  --qa-primary: #4F46E5;
  --qa-primary-2: #7C3AED;
  --qa-best: #f59e0b;
  --qa-success: #10b981;
  --qa-radius: 12px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
.qa-body {
  background: var(--qa-bg);
  color: var(--qa-fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 90px; /* bottom nav alanı */
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============ Header ============ */
.qa-header {
  position: sticky; top: 0; z-index: 30;
  background: #fff;
  border-bottom: 1px solid var(--qa-border);
}
.qa-header-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px;
}
.qa-logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 16px;
  color: var(--qa-primary);
  background: linear-gradient(135deg, var(--qa-primary), var(--qa-primary-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.qa-logo svg { stroke: var(--qa-primary); }
.qa-search {
  flex: 1; max-width: 460px; margin: 0 auto;
  background: #f1f5f9; border-radius: 999px;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
}
.qa-search svg { color: var(--qa-muted); flex-shrink: 0; }
.qa-search input {
  background: transparent; border: 0; outline: 0;
  width: 100%; font-size: 14px; color: var(--qa-fg);
}
.qa-header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.qa-header-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: 8px;
  color: var(--qa-muted); font-size: 13px;
}
.qa-header-link:hover { background: #f1f5f9; color: var(--qa-fg); text-decoration: none; }
.qa-header-cta {
  background: linear-gradient(135deg, var(--qa-primary), var(--qa-primary-2));
  color: #fff !important; padding: 8px 14px; border-radius: 999px;
  font-weight: 600; font-size: 13px;
}
.qa-header-cta:hover { text-decoration: none; opacity: .95; }

/* Kategori chip strip */
.qa-cat-strip {
  display: flex; gap: 8px; overflow-x: auto;
  padding: 8px 16px 10px;
  scrollbar-width: none;
  border-top: 1px solid var(--qa-border);
}
.qa-cat-strip::-webkit-scrollbar { display: none; }
.qa-chip {
  --chip-accent: #94a3b8;
  flex-shrink: 0;
  background: #f1f5f9; color: var(--qa-fg);
  padding: 7px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background .15s, border-color .15s;
}
.qa-chip:hover { background: #e2e8f0; text-decoration: none; }
.qa-chip-active {
  background: var(--chip-accent, var(--qa-primary));
  color: #fff;
}
.qa-chip-active:hover { background: var(--chip-accent, var(--qa-primary)); opacity: .9; }

/* ============ Main ============ */
.qa-main { min-height: 50vh; }
.qa-container { max-width: 1100px; margin: 0 auto; padding: 16px; }

/* ============ Hero ============ */
.qa-hero {
  background: linear-gradient(135deg, var(--qa-primary) 0%, var(--qa-primary-2) 100%);
  color: #fff;
  padding: 32px 16px 36px;
  text-align: center;
}
.qa-hero h1 {
  margin: 0 0 8px;
  font-size: 24px; font-weight: 700;
}
.qa-hero p {
  margin: 0 auto 18px;
  font-size: 14px; opacity: .94; max-width: 520px;
}
.qa-hero-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: var(--qa-primary) !important;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
}
.qa-hero-cta:hover { text-decoration: none; transform: translateY(-1px); }

/* ============ Block (section) ============ */
.qa-block { margin: 24px 0; }
.qa-block-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.qa-block-head h2 {
  margin: 0; font-size: 17px; font-weight: 700;
}
.qa-block-more { font-size: 13px; color: var(--qa-primary); }
.qa-block-more:hover { text-decoration: underline; }

/* ============ Card Grid ============ */
.qa-card-grid {
  display: grid; gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .qa-card-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .qa-card-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.qa-card {
  background: var(--qa-card);
  border: 1px solid var(--qa-border);
  border-radius: var(--qa-radius);
  overflow: hidden;
  transition: transform .15s, box-shadow .15s;
}
.qa-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, .06);
}
.qa-card-link { display: block; padding: 14px; color: inherit; }
.qa-card-link:hover { text-decoration: none; }
.qa-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; margin-bottom: 8px;
  font-size: 12px;
}
.qa-card-cat {
  --cat: var(--qa-primary);
  color: var(--cat);
  background: color-mix(in srgb, var(--cat) 12%, white);
  padding: 3px 8px; border-radius: 999px;
  font-weight: 600;
}
.qa-card-cat a { color: inherit; }
.qa-card-time { color: var(--qa-muted-2); }
.qa-card-title {
  margin: 0 0 6px; font-size: 15px; line-height: 1.35; font-weight: 600;
}
.qa-card-excerpt {
  margin: 0 0 12px; font-size: 13px; color: var(--qa-muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.qa-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--qa-muted-2);
  border-top: 1px solid var(--qa-border); padding-top: 10px;
}
.qa-card-author { font-weight: 600; color: var(--qa-fg); }
.qa-card-stats { display: flex; gap: 12px; }
.qa-card-stats span { display: inline-flex; align-items: center; gap: 3px; }

/* ============ Empty ============ */
.qa-empty {
  text-align: center; padding: 40px 20px;
  color: var(--qa-muted);
  background: #fff; border: 1px dashed var(--qa-border); border-radius: var(--qa-radius);
}
.qa-empty svg { color: var(--qa-muted-2); margin-bottom: 8px; }
.qa-empty p { margin: 0; font-size: 14px; }

/* ============ Active Users ============ */
.qa-active-users {
  display: flex; gap: 12px; overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.qa-active-users::-webkit-scrollbar { display: none; }
.qa-active-user {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  width: 64px; text-align: center;
  font-size: 11px; color: var(--qa-fg);
}
.qa-active-user:hover { text-decoration: none; color: var(--qa-primary); }
.qa-active-name {
  max-width: 64px; overflow: hidden;
  white-space: nowrap; text-overflow: ellipsis;
}

/* ============ Avatar ============ */
.qa-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--qa-primary), var(--qa-primary-2));
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  overflow: hidden;
}
.qa-avatar img { width: 100%; height: 100%; object-fit: cover; }
.qa-avatar-sm { width: 28px; height: 28px; font-size: 12px; }
.qa-avatar-lg { width: 84px; height: 84px; font-size: 30px; border: 3px solid #fff; }

/* ============ Listing head ============ */
.qa-listing-head { margin: 8px 0 16px; }
.qa-listing-head h1 { margin: 0 0 4px; font-size: 22px; font-weight: 700; }
.qa-listing-sub { margin: 0; color: var(--qa-muted); font-size: 13px; }

/* ============ Pager ============ */
.qa-pager {
  display: flex; gap: 6px; justify-content: center; margin: 24px 0 12px;
  flex-wrap: wrap;
}
.qa-pager-link {
  padding: 8px 12px; border-radius: 8px;
  background: #fff; border: 1px solid var(--qa-border);
  color: var(--qa-fg); font-size: 13px;
}
.qa-pager-link:hover { background: #f1f5f9; text-decoration: none; }
.qa-pager-active {
  background: var(--qa-primary); color: #fff; border-color: var(--qa-primary);
}

/* ============ Question detail ============ */
.qa-question {
  background: #fff; border: 1px solid var(--qa-border); border-radius: var(--qa-radius);
  padding: 20px;
}
.qa-question-head { margin-bottom: 12px; }
.qa-question-title {
  margin: 8px 0; font-size: 20px; font-weight: 700; line-height: 1.3;
}
.qa-question-author {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--qa-muted);
}
.qa-question-body {
  font-size: 15px; color: var(--qa-fg);
  margin: 14px 0;
}
.qa-question-images {
  display: grid; gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  margin: 12px 0;
}
.qa-question-images img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: 8px; border: 1px solid var(--qa-border);
}
.qa-question-footer {
  display: flex; gap: 16px; font-size: 13px; color: var(--qa-muted);
  border-top: 1px solid var(--qa-border); padding-top: 12px; margin-top: 12px;
}

/* Ürün kartı */
.qa-product-card {
  background: #f8fafc; border: 1px solid var(--qa-border); border-radius: 10px;
  margin: 12px 0;
}
.qa-product-link {
  display: flex; gap: 12px; padding: 10px; color: inherit;
}
.qa-product-link:hover { text-decoration: none; }
.qa-product-link img {
  width: 72px; height: 72px; object-fit: cover; border-radius: 8px; flex-shrink: 0;
}
.qa-product-info { flex: 1; min-width: 0; }
.qa-product-name { margin: 0 0 4px; font-size: 14px; font-weight: 600; }
.qa-product-price { margin: 0 0 4px; color: var(--qa-primary); font-weight: 700; }
.qa-product-cta { font-size: 12px; color: var(--qa-muted); }

/* ============ Cevap formu (kilitli placeholder) ============ */
.qa-answer-locked {
  margin: 16px 0; padding: 12px 16px;
  background: #f8fafc; border: 1px dashed var(--qa-border); border-radius: var(--qa-radius);
  text-align: center; color: var(--qa-muted); font-size: 14px;
}
.qa-answer-locked a { color: var(--qa-primary); font-weight: 600; }

/* ============ Cevaplar ============ */
.qa-answers { margin-top: 18px; }
.qa-answers h2 { margin: 0 0 12px; font-size: 16px; font-weight: 700; }
.qa-answer {
  background: #fff; border: 1px solid var(--qa-border); border-radius: var(--qa-radius);
  padding: 14px; margin-bottom: 10px;
}
.qa-answer header { display: flex; justify-content: space-between; gap: 8px; font-size: 12px; color: var(--qa-muted-2); margin-bottom: 8px; }
.qa-answer-body { font-size: 14px; }
.qa-answer footer {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--qa-border);
  font-size: 13px;
}
.qa-answer-author { display: inline-flex; align-items: center; gap: 6px; }
.qa-answer-best { border-left: 3px solid var(--qa-best); background: #fffbeb; }
.qa-best-badge {
  background: var(--qa-best); color: #fff; padding: 3px 8px; border-radius: 999px; font-size: 11px; font-weight: 700;
}
.qa-ai-tag {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff; padding: 2px 6px; border-radius: 999px; font-size: 10px; font-weight: 700; margin-left: 4px;
}

/* ============ Profil ============ */
.qa-profile {
  background: #fff; border: 1px solid var(--qa-border); border-radius: var(--qa-radius);
  overflow: hidden; margin-bottom: 16px;
}
.qa-profile-cover {
  height: 120px;
  background: linear-gradient(135deg, var(--qa-primary), var(--qa-primary-2));
  background-size: cover; background-position: center;
}
.qa-profile-head {
  display: flex; gap: 14px; padding: 0 20px 16px;
  margin-top: -42px;
}
.qa-profile-meta { padding-top: 48px; flex: 1; min-width: 0; }
.qa-profile-meta h1 { margin: 0 0 4px; font-size: 20px; font-weight: 700; }
.qa-profile-bio { margin: 0 0 4px; font-size: 14px; color: var(--qa-muted); }
.qa-profile-joined { margin: 0; font-size: 12px; color: var(--qa-muted-2); }
.qa-profile-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  padding: 0 20px 16px;
}
.qa-stat {
  text-align: center; padding: 10px 6px;
  background: #f8fafc; border-radius: 10px;
}
.qa-stat-num { display: block; font-size: 18px; font-weight: 700; color: var(--qa-fg); }
.qa-stat-label { display: block; font-size: 11px; color: var(--qa-muted); margin-top: 2px; }
.qa-profile-badges {
  display: flex; flex-wrap: wrap; gap: 6px; padding: 0 20px 16px;
}
.qa-badge {
  --badge-color: var(--qa-primary);
  background: color-mix(in srgb, var(--badge-color) 12%, white);
  color: var(--badge-color);
  padding: 5px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
}
.qa-profile-section { margin-top: 24px; }
.qa-profile-section h2 { margin: 0 0 12px; font-size: 16px; font-weight: 700; }

/* ============ Bottom Nav ============ */
.qa-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--qa-border);
  display: flex; align-items: center; justify-content: space-around;
  padding: 6px 6px calc(6px + env(safe-area-inset-bottom));
  z-index: 40;
}
.qa-bn-item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 6px 4px;
  color: var(--qa-muted-2);
  font-size: 11px;
}
.qa-bn-item:hover { text-decoration: none; color: var(--qa-fg); }
.qa-bn-active { color: var(--qa-primary); }
.qa-bn-active svg { stroke-width: 2.5; }
.qa-bn-fab {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--qa-primary), var(--qa-primary-2));
  color: #fff !important;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(79, 70, 229, .35);
  margin-top: -28px;
}
.qa-bn-fab:hover { text-decoration: none; transform: translateY(-2px); }

/* ============ Footer ============ */
.qa-footer {
  text-align: center; color: var(--qa-muted); font-size: 12px;
  padding: 24px 16px 16px;
}
.qa-footer a { color: var(--qa-muted); }
.qa-footer a:hover { color: var(--qa-primary); }

/* ============ Edit Profile ============ */
.qa-edit-section {
  background: #fff; border: 1px solid var(--qa-border); border-radius: var(--qa-radius);
  padding: 18px; margin-bottom: 16px;
}
.qa-edit-section h2 {
  margin: 0 0 12px; font-size: 15px; font-weight: 700; color: var(--qa-fg);
}
.qa-edit-form { display: flex; flex-direction: column; gap: 14px; }
.qa-field { display: flex; flex-direction: column; gap: 6px; }
.qa-field > span { font-size: 13px; font-weight: 600; color: var(--qa-fg); }
.qa-field input[type="text"],
.qa-field input[type="email"],
.qa-field textarea {
  border: 1px solid var(--qa-border); border-radius: 8px;
  padding: 10px 12px; font-size: 14px; font-family: inherit; color: var(--qa-fg);
  background: #fafbff; transition: border-color .15s, background .15s;
}
.qa-field input:focus, .qa-field textarea:focus {
  outline: 0; border-color: var(--qa-primary); background: #fff;
}
.qa-field textarea { resize: vertical; min-height: 70px; }
.qa-field-check {
  flex-direction: row; align-items: center; gap: 8px;
  font-size: 13px;
}
.qa-field-check input { width: 16px; height: 16px; accent-color: var(--qa-primary); }
.qa-hint { font-size: 12px; color: var(--qa-muted); margin: 0; }

.qa-edit-actions { display: flex; gap: 10px; }
.qa-btn-primary {
  background: linear-gradient(135deg, var(--qa-primary), var(--qa-primary-2));
  color: #fff !important; border: 0; cursor: pointer;
  padding: 10px 18px; border-radius: 8px;
  font-weight: 600; font-size: 14px;
}
.qa-btn-primary:hover { opacity: .95; }
.qa-btn-ghost {
  background: #fff; color: var(--qa-fg); border: 1px solid var(--qa-border);
  padding: 10px 18px; border-radius: 8px; cursor: pointer;
  font-weight: 600; font-size: 14px;
}
.qa-btn-ghost:hover { background: #f1f5f9; text-decoration: none; }

.qa-edit-cover {
  height: 120px; border-radius: 10px;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; margin-bottom: 10px;
}
.qa-edit-avatar { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.qa-edit-form-row {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  margin-bottom: 8px;
}
.qa-edit-form-row input[type="file"] {
  flex: 1; min-width: 0;
  font-size: 13px; color: var(--qa-muted);
}

.qa-alert {
  padding: 10px 14px; border-radius: 8px; margin-bottom: 14px;
  font-size: 14px;
}
.qa-alert-success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.qa-alert-error   { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* Soru sor formu — select + ürün arama */
.qa-select {
  border: 1px solid var(--qa-border); border-radius: 8px;
  padding: 10px 12px; font-size: 14px; background: #fafbff;
}
.qa-select:focus { outline: 0; border-color: var(--qa-primary); background: #fff; }

.qa-product-search { display: flex; flex-direction: column; gap: 8px; }
.qa-product-search input[type="search"] {
  border: 1px solid var(--qa-border); border-radius: 8px;
  padding: 10px 12px; font-size: 14px; background: #fafbff;
}
.qa-prod-results {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}
.qa-prod-result {
  background: #fff; border: 1px solid var(--qa-border); border-radius: 8px;
  padding: 8px; display: flex; gap: 8px; align-items: center; cursor: pointer;
  font-size: 13px; text-align: left;
}
.qa-prod-result:hover { border-color: var(--qa-primary); background: #f8fafc; }
.qa-prod-result img { width: 32px; height: 32px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.qa-prod-selected:not(:empty) { margin-top: 6px; }
.qa-prod-card {
  display: flex; gap: 10px; align-items: center;
  background: #f1f5f9; border: 1px solid var(--qa-border); border-radius: 8px;
  padding: 8px;
}
.qa-prod-card img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; }
.qa-prod-card > div { flex: 1; min-width: 0; }
.qa-prod-card p { margin: 0; font-size: 14px; font-weight: 600; }
.qa-prod-card small { color: var(--qa-muted); }

/* Cevap formu */
.qa-answer-form-wrap {
  background: #fff; border: 1px solid var(--qa-border); border-radius: var(--qa-radius);
  padding: 18px; margin: 16px 0;
}
.qa-answer-form-wrap h2 { margin: 0 0 12px; font-size: 16px; font-weight: 700; }
.qa-answer-form textarea {
  width: 100%; border: 1px solid var(--qa-border); border-radius: 8px;
  padding: 10px 12px; font-size: 14px; font-family: inherit; background: #fafbff;
  resize: vertical; min-height: 90px;
}
.qa-answer-form textarea:focus { outline: 0; border-color: var(--qa-primary); background: #fff; }
.qa-answer-form-actions {
  display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap;
}

/* Like / Best / Follow butonları (Aşama 5) */
.qa-like-btn {
  display: inline-flex; align-items: center; gap: 4px;
  background: #fff; border: 1px solid var(--qa-border); color: var(--qa-muted);
  padding: 4px 10px; border-radius: 999px;
  font-size: 13px; cursor: pointer;
  transition: all .15s;
}
.qa-like-btn:hover { border-color: #ef4444; color: #ef4444; }
.qa-like-btn.qa-liked {
  background: #fef2f2; border-color: #ef4444; color: #ef4444;
}
.qa-like-icon { font-size: 14px; line-height: 1; }
.qa-like-count { font-weight: 600; }

.qa-answer-actions {
  display: flex; align-items: center; gap: 8px;
}
.qa-best-btn {
  background: #fffbeb; color: #b45309;
  border: 1px solid #fde68a;
  padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600; cursor: pointer;
}
.qa-best-btn:hover { background: #fef3c7; }
.qa-best-btn.qa-best-active {
  background: var(--qa-best); color: #fff; border-color: var(--qa-best);
}
.qa-inline-form { display: inline; }

.qa-profile-cta { padding-top: 48px; flex-shrink: 0; }
.qa-follow-btn {
  background: linear-gradient(135deg, var(--qa-primary), var(--qa-primary-2));
  color: #fff; border: 0; cursor: pointer;
  padding: 8px 18px; border-radius: 999px;
  font-weight: 600; font-size: 13px;
}
.qa-follow-btn:hover { opacity: .95; }
.qa-follow-btn.qa-following {
  background: #fff; color: var(--qa-primary);
  border: 1px solid var(--qa-primary);
}

/* Header bell badge */
.qa-bell { position: relative; }
.qa-bell-badge {
  position: absolute; top: -2px; right: -2px;
  background: #ef4444; color: #fff;
  font-size: 10px; font-weight: 700;
  min-width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 0 4px;
}

/* Şikayet butonu + modal */
.qa-report-btn {
  background: transparent; border: 0; cursor: pointer;
  color: var(--qa-muted-2); font-size: 14px;
  padding: 2px 6px; border-radius: 6px;
}
.qa-report-btn:hover { background: #fef2f2; color: #ef4444; }

.qa-modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15, 23, 42, 0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.qa-modal[hidden] { display: none; }
.qa-modal-card {
  background: #fff; border-radius: var(--qa-radius);
  padding: 20px; max-width: 420px; width: 100%;
}
.qa-modal-card h3 { margin: 0 0 8px; font-size: 16px; font-weight: 700; }
.qa-modal-card textarea {
  width: 100%; margin-top: 10px;
  border: 1px solid var(--qa-border); border-radius: 8px;
  padding: 10px 12px; font-size: 14px; font-family: inherit; resize: vertical;
}
.qa-modal-card textarea:focus { outline: 0; border-color: var(--qa-primary); }
.qa-modal-card select { width: 100%; margin-top: 8px; }
.qa-modal-actions {
  display: flex; gap: 8px; margin-top: 12px; justify-content: flex-end;
}

/* Bildirimler */
.qa-notif-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.qa-notif {
  background: #fff;
  border: 1px solid var(--qa-border); border-radius: var(--qa-radius);
  overflow: hidden;
}
.qa-notif:not(.qa-notif-read) {
  border-left: 3px solid var(--qa-primary);
}
.qa-notif-link {
  display: flex; gap: 10px; padding: 10px 14px;
  color: inherit; align-items: center;
}
.qa-notif-link:hover { background: #f8fafc; text-decoration: none; }
.qa-notif-body { flex: 1; min-width: 0; }
.qa-notif-body p { margin: 0 0 2px; font-size: 14px; color: var(--qa-fg); }
.qa-notif-body small { color: var(--qa-muted); font-size: 12px; display: block; }
.qa-notif-time { color: var(--qa-muted-2); margin-top: 4px; }

/* AI öneri paneli */
.qa-ai-pane {
  margin-top: 14px; padding: 14px;
  background: linear-gradient(135deg, #fef3c7 0%, #fffbeb 100%);
  border: 1px solid #fde68a; border-radius: var(--qa-radius);
}
.qa-ai-pane h3 { margin: 0 0 6px; font-size: 14px; font-weight: 700; color: #92400e; }
.qa-ai-text { white-space: pre-wrap; margin-top: 8px; font-size: 14px; color: #422006; }
.qa-ai-actions { margin-top: 10px; }

/* ============ Utility ============ */
.qa-hide-mobile { display: none; }
@media (min-width: 640px) {
  .qa-hide-mobile { display: inline; }
}
@media (max-width: 720px) {
  .qa-hero h1 { font-size: 20px; }
  .qa-hero p { font-size: 13px; }
}
