/* ========================================
   КОНТЕЙНЕР ПРОФИЛЯ
   ======================================== */
.profile-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 12px;
}

/* ========================================
   ШАПКА ПРОФИЛЯ
   ======================================== */
.profile-header {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.profile-avatar-large {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 32px;
}

.profile-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.profile-phone {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 12px;
}

.profile-stats {
  display: flex;
  justify-content: space-around;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-color);
}

.stat-label {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ========================================
   СЕКЦИИ ПРОФИЛЯ
   ======================================== */
.profile-section {
  background: var(--bg-primary);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}

.profile-section h3 {
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

/* ========================================
   ИЗБРАННЫЕ АДРЕСА
   ======================================== */
.favorite-addresses {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.favorite-address {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--bg-secondary);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.favorite-address:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}

.favorite-address i {
  font-size: 18px;
  color: var(--accent-color);
}

.favorite-address span {
  font-weight: 500;
  font-size: 13px;
}

.favorite-address p {
  color: var(--text-secondary);
  font-size: 11px;
  margin-top: 2px;
}

/* ========================================
   ПУСТОЕ СОСТОЯНИЕ
   ======================================== */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 15px;
  color: var(--text-secondary);
}

.empty-state i {
  font-size: 40px;
  margin-bottom: 10px;
  opacity: 0.3;
}

.empty-state p {
  font-size: 13px;
}