/* ============================================ */
/* YÜZ ANALİZİ SONUÇ EKRANI */
/* ai/photo/face-results.css */
/* ============================================ */

/* Ana Container */
.face-results-container {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

/* Header - Genel Puan */
.face-results-header {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(0,242,255,0.05));
  border-radius: 20px;
  margin-bottom: 24px;
}

.face-score-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  position: relative;
}

.face-score-circle svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.face-score-circle .score-bg {
  fill: none;
  stroke: rgba(255,255,255,0.1);
  stroke-width: 8;
}

.face-score-circle .score-fill {
  fill: none;
  stroke: url(#scoreGradient);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  transition: stroke-dashoffset 1.5s ease;
}

.face-score-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.face-score-value .score-num {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  display: block;
}

.face-score-value .score-max {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.face-results-title {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.face-strongest-point {
  font-size: 15px;
  color: var(--accent, #00f2ff);
  font-weight: 500;
}

/* AI Düşünce Süreci - İlk İzlenim */
.ai-thought-process {
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
}

.thought-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.thought-header i {
  font-size: 20px;
  color: #8b5cf6;
}

.thought-header span {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.thought-content {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
}

.thought-content p {
  margin-bottom: 12px;
}

.thought-content p:last-child {
  margin-bottom: 0;
}

.thought-label {
  color: #8b5cf6;
  font-weight: 600;
  margin-right: 8px;
}

/* Kategori Kartları */
.face-category-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.face-category-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.face-category-card:hover {
  border-color: rgba(255,255,255,0.15);
}

.face-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255,255,255,0.02);
  cursor: pointer;
}

.face-category-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.face-category-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
}

.face-category-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.face-category-score {
  display: flex;
  align-items: center;
  gap: 8px;
}

.face-category-score .score-bar {
  width: 60px;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.face-category-score .score-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.8s ease;
}

.face-category-score .score-num {
  font-size: 18px;
  font-weight: 700;
  min-width: 35px;
  text-align: right;
}

.score-high { color: #22c55e; }
.score-high .score-fill { background: linear-gradient(90deg, #22c55e, #4ade80); }

.score-medium { color: #f59e0b; }
.score-medium .score-fill { background: linear-gradient(90deg, #f59e0b, #fbbf24); }

.score-low { color: #ef4444; }
.score-low .score-fill { background: linear-gradient(90deg, #ef4444, #f87171); }

/* Kategori İçeriği - AI Düşüncesi */
.face-category-body {
  padding: 0 20px 20px;
}

.ai-thinking-box {
  background: rgba(139,92,246,0.08);
  border-left: 3px solid #8b5cf6;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 0 8px 8px 0;
}

.ai-thinking-box p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  font-style: italic;
}

.category-detail {
  margin-bottom: 12px;
}

.category-detail-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.category-detail-value {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

/* Olumlu / Öneriler Listesi */
.category-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

@media (max-width: 500px) {
  .category-lists {
    grid-template-columns: 1fr;
  }
}

.category-list {
  padding: 12px;
  border-radius: 10px;
}

.category-list.positives {
  background: rgba(34, 197, 94, 0.1);
}

.category-list.suggestions {
  background: rgba(245, 158, 11, 0.1);
}

.category-list h5 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.category-list.positives h5 {
  color: #22c55e;
}

.category-list.suggestions h5 {
  color: #f59e0b;
}

.category-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  padding: 4px 0;
  padding-left: 14px;
  position: relative;
}

.category-list li::before {
  content: '•';
  position: absolute;
  left: 0;
}

.category-list.positives li::before {
  color: #22c55e;
}

.category-list.suggestions li::before {
  color: #f59e0b;
}

/* Alt Bölüm - Sonuç */
.face-results-footer {
  margin-top: 24px;
}

.priority-improvement {
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(245,158,11,0.05));
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
}

.priority-improvement .footer-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.priority-improvement .footer-header i {
  color: #f59e0b;
  font-size: 20px;
}

.priority-improvement .footer-header span {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}

.priority-improvement p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

.professional-tip {
  background: linear-gradient(135deg, rgba(0,242,255,0.1), rgba(139,92,246,0.1));
  border: 1px solid rgba(0,242,255,0.2);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
}

.professional-tip .footer-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.professional-tip .footer-header i {
  color: var(--accent, #00f2ff);
  font-size: 20px;
}

.professional-tip .footer-header span {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}

.professional-tip p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

.final-comment {
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.final-comment p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

/* Sonnet 4 Badge */
.sonnet4-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: white;
  margin-top: 12px;
}

.sonnet4-badge i {
  font-size: 12px;
}
