/* ============================================================
   DOSYA SORUMLULUGU — features-14-weight-journey-card.css
   ------------------------------------------------------------
   NE YAPAR   : Ana ekran kilo yolculugu karti, mini trend cubuklari, bugunun durumu satiri.
   KAYNAK     : v3.12.0'da bolundu — kurallar birebir tasindi,
                hicbir kural yeniden yazilmadi veya siralanmadi.
   SIRA       : index.html'deki <link> sirasi kaskadi belirler.
                Bu dosyanin sirasini DEGISTIRME.
   ------------------------------------------------------------
   Tam dosya listesi ve sira: BAGIMLILIK-HARITASI.md
   ============================================================ */

/* ============================================================
   WEIGHT JOURNEY CARD (home)
   ============================================================ */
.wj-card {
  margin: 0 14px 12px;
  background: var(--bg2);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 18px 18px 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.wj-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.wj-left {
  flex: 0 0 auto;
}
.wj-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--text3);
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}
.wj-current {
  font-size: 48px;
  font-weight: 900;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -3px;
  color: var(--text);
  line-height: 1;
}
.wj-unit {
  font-size: 11px;
  color: var(--text3);
  margin-top: 2px;
  font-weight: 500;
}
.wj-right {
  flex: 1;
  padding-top: 4px;
}
.wj-stat-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.wj-stat { text-align: center; }
.wj-stat-val {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text);
}
.wj-green { color: var(--success); }
.wj-stat-lbl {
  font-size: 9px;
  color: var(--text3);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-top: 1px;
}
.wj-arrow {
  font-size: 14px;
  color: var(--text3);
  flex-shrink: 0;
}
.wj-diff-row {
  background: var(--orange-light);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-xs);
  padding: 6px 10px;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.wj-diff-val {
  font-size: 16px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.5px;
}
.wj-diff-lbl {
  font-size: 11px;
  color: var(--orange);
  font-weight: 600;
}
.wj-prog-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.wj-prog-track {
  flex: 1;
  height: 8px;
  background: var(--bg3);
  border-radius: 99px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.wj-prog-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange2), var(--orange));
  border-radius: 99px;
  width: 0%;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}
.wj-prog-pct {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  min-width: 32px;
  text-align: right;
}
/* Mini trend bars */
.wj-trend {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
  margin-bottom: 14px;
}
.wj-trend-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--bg3);
  border: 1px solid var(--border);
  transition: background 0.2s;
  min-height: 4px;
}
.wj-trend-bar.latest {
  background: var(--orange);
  border-color: var(--orange);
}
.wj-trend-empty {
  font-size: 11px;
  color: var(--text3);
  width: 100%;
  text-align: center;
  padding: 8px 0;
}
.wj-btn {
  width: 100%;
  height: 44px;
  background: linear-gradient(135deg, var(--orange2), var(--orange));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  letter-spacing: -0.2px;
  transition: opacity 0.15s, transform 0.12s, box-shadow 0.12s;
  box-shadow: 0 4px 14px rgba(232,93,0,0.28);
}
.wj-btn:active { opacity: 0.9; transform: scale(0.97); box-shadow: none; }
/* Today status row */
.wj-today-row {
  margin: 0 14px 12px;
  display: flex;
  gap: 8px;
}
.wj-chip {
  flex: 1;
  background: var(--bg2);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm);
  padding: 11px 8px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.wj-chip:active { transform: scale(0.96); }
.wj-chip.done {
  background: var(--orange-light);
  border-color: var(--orange-border);
}
.wj-chip-icon { font-size: 20px; line-height: 1; margin-bottom: 4px; }
.wj-chip-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--text3);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.wj-chip.done .wj-chip-label { color: var(--orange); }
.wj-chip-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-top: 2px;
  font-family: 'JetBrains Mono', monospace;
}

