/* Analiz CSS - NaturalGlow */

.analiz-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.analiz-container {
  max-width: 1000px;
  margin: 0 auto;
  min-height: 400px;
}

/* --- ADIM BARKODU / PROGRESS STEP BAR --- */
.analiz-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
}

.analiz-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-border);
  z-index: 1;
  transform: translateY(-50%);
}

.analiz-step {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--color-bg-card);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--color-text-muted);
  z-index: 2;
  transition: var(--transition-normal);
}

.analiz-step.active {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 0 12px rgba(45, 106, 79, 0.3);
}

.analiz-step.completed {
  border-color: var(--color-success);
  background-color: var(--color-success);
  color: #FFFFFF;
}

/* --- ADIM PANALLERİ --- */
.analiz-panel {
  display: none;
  animation: fadeIn 0.4s ease-out forwards;
}

.analiz-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- ADIM 1: GİRİŞ EKRANI --- */
.intro-card {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-secondary) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.intro-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background-color: rgba(82, 183, 136, 0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.intro-icon-wrapper i {
  width: 40px;
  height: 40px;
}

.intro-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
  text-align: left;
}

.intro-feature-item {
  background-color: var(--color-bg-card);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: var(--transition-normal);
}

.intro-feature-item:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

.intro-feature-icon {
  color: var(--color-primary);
  margin-bottom: 12px;
}

.intro-feature-title {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.intro-feature-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* --- ADIM 2: TARAMA EKRANI --- */
.scan-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.scan-window-wrapper {
  position: relative;
  background-color: #0c1a12;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scan-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1); /* Ayna görüntüsü */
}

.scan-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

/* Tarama Kılavuzu / Scanner Overlay */
.scan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Yüz Şablonu Çizgisi */
.face-guide-svg {
  width: 70%;
  height: 70%;
  color: rgba(82, 183, 136, 0.4);
  transition: var(--transition-normal);
}

.scan-active .face-guide-svg {
  color: var(--color-primary);
  filter: drop-shadow(0 0 8px var(--color-primary));
}

/* Lazer Tarama Çizgisi */
.scan-laser-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to bottom, rgba(82, 183, 136, 0), var(--color-primary) 50%, rgba(82, 183, 136, 0));
  box-shadow: 0 0 15px var(--color-primary);
  opacity: 0;
  z-index: 6;
}

.scan-active .scan-laser-line {
  opacity: 1;
  animation: laserScan 3s linear infinite;
}

@keyframes laserScan {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

/* Yanıp Sönen Tarama Noktaları */
.scan-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 7;
}

.scan-active .scan-dots {
  opacity: 1;
}

.scan-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--color-success);
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px var(--color-success);
  animation: pulseDot 1.5s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.6); opacity: 1; }
}

/* Tarama Kontrolleri */
.scan-controls {
  background-color: var(--color-bg-card);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.scan-status-box {
  background-color: var(--color-secondary);
  border-radius: var(--radius-md);
  padding: 16px;
  border-left: 4px solid var(--color-primary);
}

.scan-status-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.scan-status-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  height: 40px;
}

/* İlerleme Çubuğu */
.scan-progress-container {
  width: 100%;
  height: 8px;
  background-color: var(--color-border);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 12px;
  display: none;
}

.scan-progress-bar {
  height: 100%;
  width: 0%;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
  transition: width 0.1s linear;
}

/* Dosya Yükleme / Alternatif Yöntem */
.upload-zone {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
  background-color: var(--color-bg-card);
}

.upload-zone:hover {
  border-color: var(--color-primary);
  background-color: var(--color-secondary);
}

.upload-zone i {
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.upload-zone p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.upload-zone input {
  display: none;
}

/* --- ADIM 3: SONUÇLAR EKRANI --- */
.result-header-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}

.result-badge-container {
  text-align: center;
  padding: 24px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.result-badge-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.result-skin-type-badge {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.result-badge-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.result-description-container h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--color-text);
}

.result-description-container p {
  color: var(--color-text-muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

/* Parametre Barları */
.parameters-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.parameters-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 24px;
  color: var(--color-text);
}

.param-row {
  margin-bottom: 20px;
}

.param-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.param-name {
  color: var(--color-text);
}

.param-value-text {
  color: var(--color-primary);
}

.param-bar-bg {
  height: 10px;
  background-color: var(--color-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.param-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 1.2s cubic-bezier(0.1, 0.8, 0.3, 1);
  width: 0; /* JS ile doldurulacak */
}

/* İnteraktif Yüz Haritası Alanı */
.face-map-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 32px;
}

.face-map-visual {
  background-color: var(--color-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.face-map-svg {
  width: 70%;
  height: 70%;
  color: var(--color-text-muted);
  opacity: 0.35;
}

[data-theme="dark"] .face-map-svg {
  opacity: 0.2;
}

/* İnteraktif Noktalar */
.map-marker {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background-color: rgba(82, 183, 136, 0.2);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  z-index: 10;
}

.map-marker::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-full);
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-normal);
}

.map-marker:hover,
.map-marker.active {
  background-color: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 0 12px var(--color-primary);
  transform: scale(1.1);
}

.map-marker:hover::after,
.map-marker.active::after {
  opacity: 1;
  transform: scale(1);
  animation: pulseMarkerBorder 1.5s infinite linear;
}

@keyframes pulseMarkerBorder {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Noktaların Konumları */
.marker-forehead { top: 22%; left: 50%; transform: translateX(-50%); }
.marker-nose { top: 48%; left: 50%; transform: translateX(-50%); }
.marker-left-cheek { top: 52%; left: 32%; }
.marker-right-cheek { top: 52%; right: 32%; }
.marker-chin { top: 78%; left: 50%; transform: translateX(-50%); }

/* Bölgesel Detay Kartı */
.region-detail-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.region-detail-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.region-detail-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- BİTKİSEL ÇÖZÜMLER (HERBAL REMEDIES) --- */
.remedies-section-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  text-align: center;
  margin-top: 48px;
  margin-bottom: 32px;
  color: var(--color-text);
}

.remedy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.remedy-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: var(--transition-normal);
}

.remedy-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.remedy-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.remedy-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(82, 183, 136, 0.12);
  color: var(--color-primary);
}

.remedy-type-tag {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary-light);
  letter-spacing: 0.03em;
}

.remedy-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 2px;
}

.remedy-ingredients {
  font-size: 0.88rem;
  background-color: var(--color-secondary);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-primary-light);
  color: var(--color-text);
}

.remedy-instruction {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Sorumluluk Reddi / Uyarı Kutusu */
.remedy-alert {
  background-color: rgba(231, 111, 81, 0.06);
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.remedy-alert i {
  color: var(--color-danger);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Aksiyon Butonları */
.results-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 20px;
}

}

/* --- KREM KARIŞIM LABORATUVARI --- */
.cream-mixing-section {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-top: 32px;
  margin-bottom: 32px;
}

.cream-mixing-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}

.mixing-ingredients-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mixing-ingredients-panel h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 8px;
}

.formula-ingredients-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.formula-ingredients-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 8px 12px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition-normal);
}

.formula-ingredients-list li.added {
  border-color: var(--color-success);
  background-color: rgba(82, 183, 136, 0.08);
  transform: translateX(4px);
}

.formula-ingredients-list li.added::after {
  content: '✓';
  color: var(--color-success);
  font-weight: bold;
  margin-left: auto;
}

.ingredient-emoji {
  font-size: 1.2rem;
}

.mixing-animation-stage {
  position: relative;
  height: 320px;
  background-color: var(--color-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Damlalık */
.analiz-dropper {
  position: absolute;
  top: -150px; /* Başlangıçta ekran dışında */
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 110px;
  z-index: 10;
  transition: all 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  opacity: 0;
}

.analiz-dropper.active {
  top: 15px;
  opacity: 1;
}

.analiz-dropper .dropper-cap {
  width: 20px;
  height: 24px;
  background-color: #2d3436;
  border-radius: 6px 6px 0 0;
}

.analiz-dropper .dropper-glass {
  width: 12px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  border-radius: 0 0 6px 6px;
  position: relative;
  overflow: hidden;
}

.analiz-dropper .dropper-liquid-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #52b788;
  transition: background-color 0.4s ease;
}

.analiz-dropper .dropper-drip {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 8px;
  height: 8px;
  background-color: #52b788;
  border-radius: 50%;
  z-index: 11;
  transition: background-color 0.4s ease;
}

.analiz-dropper.dripping .dropper-drip {
  animation: dripDrop 1.2s forwards cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

@keyframes dripDrop {
  0% { 
    transform: translateX(-50%) scale(0); 
    bottom: -6px; 
    opacity: 1;
    border-radius: 50% 50% 50% 50%;
  }
  20% { 
    transform: translateX(-50%) scale(1.2) scaleY(1.6);
    bottom: -6px; 
    opacity: 1;
    border-radius: 50% 50% 35% 35%;
  }
  75% { 
    transform: translateX(-50%) scale(0.9) scaleY(1.3); 
    bottom: -130px; 
    opacity: 1;
    border-radius: 50% 50% 35% 35%;
  }
  90% { 
    transform: translateX(-50%) scale(1.3) scaleY(0.5);
    bottom: -140px; 
    opacity: 0.8;
  }
  100% { 
    transform: translateX(-50%) scale(1.8) scaleY(0.1);
    bottom: -141px; 
    opacity: 0;
  }
}

/* Spatula */
.analiz-spatula {
  position: absolute;
  top: 60px;
  left: 52%;
  width: 6px;
  height: 120px;
  background: linear-gradient(to bottom, #d2b48c 80%, #b2bec3 20%);
  border-radius: 3px;
  z-index: 12;
  opacity: 0;
  transform: rotate(20deg) translateY(-40px);
  transform-origin: top center;
  transition: all 0.5s ease;
}

.analiz-spatula.active {
  opacity: 1;
  transform: rotate(15deg) translateY(65px);
}

.analiz-spatula.mixing {
  animation: stirEffect 1.8s infinite linear;
}

@keyframes stirEffect {
  0% { transform: rotate(15deg) translate(0, 65px); }
  25% { transform: rotate(20deg) translate(-8px, 68px); }
  50% { transform: rotate(25deg) translate(0, 71px); }
  75% { transform: rotate(20deg) translate(8px, 68px); }
  100% { transform: rotate(15deg) translate(0, 65px); }
}

/* Krem Kavanozu */
.analiz-cream-jar {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 90px;
  z-index: 2;
}

.analiz-cream-jar .jar-rim {
  width: 100px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  margin: 0 auto;
}

.analiz-cream-jar .jar-body {
  width: 120px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 0 0 16px 16px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .analiz-cream-jar .jar-body {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.analiz-cream-jar .jar-cream-base {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%; /* Krem tabanı */
  background-color: #ffffff;
  transition: all 0.8s ease;
}

.analiz-cream-jar .jar-cream-surface {
  position: absolute;
  bottom: 18%;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #f2f2f2;
  border-radius: 50%;
  transition: all 0.8s ease;
}

/* Karışım Sonrası Parlama Efekti */
.jar-glowing-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.analiz-cream-jar.glow .jar-glowing-effect {
  opacity: 1;
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.8; }
}

/* Başarı Etiketi */
.mixing-success-label {
  position: absolute;
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 20;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  pointer-events: none;
}

.mixing-success-label.active {
  opacity: 1;
  transform: translateY(0);
}

.formula-effect-box {
  background-color: rgba(82, 183, 136, 0.08);
  border: 1px solid var(--color-success);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-top: 16px;
  animation: fadeIn 0.5s ease forwards;
}

[data-theme="dark"] .formula-effect-box {
  background-color: rgba(82, 183, 136, 0.04);
}

/* Canlı Tarama Telemetri Ekranı */
.scan-telemetry {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background-color: rgba(20, 30, 24, 0.85);
  border: 1px solid rgba(82, 183, 136, 0.4);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-family: monospace, Courier, monospace;
  font-size: 0.72rem;
  color: #52B788;
  text-align: left;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.scan-active .scan-telemetry {
  opacity: 1;
}

.scan-telemetry div {
  text-shadow: 0 0 2px rgba(82, 183, 136, 0.5);
  letter-spacing: 0.02em;
}

/* --- MEDYA SORGULARI / RESPONSIVE --- */
@media (max-width: 900px) {
  .scan-grid {
    grid-template-columns: 1fr;
  }
  
  .result-header-card {
    grid-template-columns: 1fr;
  }
  
  .face-map-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .face-map-visual {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .remedy-grid {
    grid-template-columns: 1fr;
  }
  
  .intro-features {
    grid-template-columns: 1fr;
  }
}
