/* ========================================
   استایل بخش پیشرفت شخصی
   ======================================== */

.progress-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition-bounce);
  border: 2px solid rgba(244, 167, 185, 0.2);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--mauve);
  font-weight: 500;
}

.progress-chart {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-light);
  border: 2px solid rgba(244, 167, 185, 0.2);
}

.progress-chart h3 {
  font-family: 'Vazirmatn', sans-serif;
  font-size: 1.1rem;
  color: var(--mauve);
  margin-bottom: 1.5rem;
  text-align: center;
}

.chart-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 250px;
  gap: 0.5rem;
  padding: 1rem 0;
  border-bottom: 2px solid rgba(244, 167, 185, 0.2);
}

.chart-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.bar {
  width: 100%;
  max-width: 60px;
  background: var(--gradient-primary);
  border-radius: 10px 10px 0 0;
  transition: all 0.3s ease;
  position: relative;
  min-height: 10px;
}

.bar:hover {
  opacity: 0.8;
  transform: scaleY(1.05);
}

.bar-label {
  font-size: 0.75rem;
  color: var(--mauve);
  font-weight: 500;
  text-align: center;
}

.bar-value {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rose);
  white-space: nowrap;
}

.mood-history {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.mood-day {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(244, 167, 185, 0.1), rgba(233, 30, 99, 0.05));
  border-radius: 15px;
  transition: var(--transition-bounce);
}

.mood-day:hover {
  transform: translateX(-5px);
  box-shadow: var(--shadow-light);
}

.mood-day-date {
  font-size: 0.9rem;
  color: var(--mauve);
  font-weight: 500;
}

.mood-day-emoji {
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mood-day-name {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--mauve);
  font-size: 0.95rem;
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}
