/* ===== HOME.CSS ===== */

.user-greeting {
  display: flex;
  align-items: center;
  gap: 10px;
}

.greeting-text {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.username-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.home-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===== STATS GRID ===== */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0.4;
}

.stat-icon {
  font-size: 22px;
  margin-bottom: 2px;
}

.stat-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== LOTTIE CONTAINER ===== */
.lottie-container {
  display: flex;
  justify-content: center;
}

.lottie-anim {
  width: 180px;
  height: 180px;
}

/* ===== ILLUSTRATION ===== */
.illustration-wrap {
  display: flex;
  justify-content: center;
}

.undraw-illustration {
  width: 160px;
  height: auto;
  opacity: 0.7;
}

/* ===== QUICK ACTIONS ===== */
.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quick-action-btn {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
}

.quick-action-btn i { font-size: 24px; }
.quick-action-btn:active { transform: scale(0.95); background: var(--card2); }

/* ===== PROGRESS CARD ===== */
.progress-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
