/* ========================================
   استایل بخش روتین
   ======================================== */

.routine-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.routine-item {
  background: white;
  border-radius: 14px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-light);
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
}

.routine-item:hover {
  border-color: var(--blush);
  transform: translateX(-4px);
}

.routine-item.done {
  border-color: var(--blush);
  background: linear-gradient(to left, white, rgba(244, 167, 185, 0.08));
}

.routine-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: all 0.3s;
  color: transparent;
}

.routine-item.done .routine-check {
  background: var(--gradient-secondary);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
}

.routine-info {
  flex: 1;
}

.routine-info h4 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.routine-info p {
  font-size: 0.8rem;
  color: var(--mauve);
  font-weight: 300;
}

.routine-emoji {
  font-size: 1.4rem;
}

.progress-bar-wrap {
  background: rgba(244, 167, 185, 0.2);
  border-radius: 30px;
  height: 10px;
  margin: 1.5rem 0 0.5rem;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-secondary);
  border-radius: 30px;
  transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 0%;
}

.progress-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--mauve);
}
