/* Personal Account - Stats & Orders */

.stats-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(114, 47, 55, 0.12);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #722F37;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.orders-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  border: 2px solid #f0f0f0;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.order-item:hover {
  border-color: #722F37;
  background: #fafafa;
}

.order-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.order-number {
  font-weight: 700;
  color: #333;
  font-size: 1.1rem;
}

.order-date {
  font-size: 0.9rem;
  color: #666;
}

.order-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.order-status.pending {
  background: #fef3c7;
  color: #92400e;
}

.order-status.confirmed {
  background: #d1fae5;
  color: #065f46;
}

.order-status.completed {
  background: #dbeafe;
  color: #1e40af;
}

.order-status.cancelled {
  background: #fee2e2;
  color: #991b1b;
}

.order-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: #722F37;
}

.quick-actions {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(114, 47, 55, 0.05) 0%, rgba(90, 45, 74, 0.05) 100%);
  border-radius: 16px;
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.action-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.action-card:hover {
  border-color: #722F37;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(114, 47, 55, 0.15);
}

.action-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.action-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #722F37;
  margin-bottom: 0.5rem;
}

.action-desc {
  font-size: 0.9rem;
  color: #666;
}
