  :root {
    --es-theme-bg: #f9f9f9;
    --es-card-bg: #ffffff;
    --es-accent: #2c3e50; /* темно-синий */
    --es-text: #2c3e50;
    --es-muted: #7f8c8d; /* серый */
    --es-glow: rgba(44, 62, 80, 0.1); /* очень легкая тень */
    --es-border: #dcdcdc;
  }

  .es-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0 auto 30px;
    max-width: 800px;
    justify-content: center;
  }

  .es-filters select {
    padding: 10px 14px;
    border-radius: 6px;
    background: #fff;
    color: var(--es-accent);
    border: 1px solid var(--es-border);
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.3s ease;
  }

  .es-filters select:hover,
  .es-filters select:focus {
    border-color: var(--es-accent);
    outline: none;
  }

  .es-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
  }

  .es-card {
    background: var(--es-card-bg);
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--es-glow);
    padding: 24px 20px;
    text-align: center;
    border: 1px solid var(--es-border);
    transition: box-shadow 0.3s ease;
  }

  .es-card:hover {
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.15);
  }

  .es-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 2px solid var(--es-accent);
    transition: transform 0.3s ease;
  }

  .es-avatar:hover {
    transform: scale(1.05);
  }

  .es-name {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--es-accent);
    margin-bottom: 8px;
  }

  .es-specialty,
  .es-rating,
  .es-price,
  .es-status,
  .es-bio {
    margin: 6px 0;
    font-size: 0.95em;
    color: grey;
  }

  .es-status.online {
    color: #27ae60; /* ярко-зеленый для онлайн */
    font-weight: 600;
  }

  .es-status.offline {
    color: var(--es-muted);
    font-style: italic;
  }

  .es-rating {
    color: #f39c12; /* теплый золотистый */
    font-weight: 600;
  }

  .es-price {
    font-weight: 700;
    color: var(--es-accent);
  }

  .es-bio {
    font-size: 0.9em;
    color: var(--es-muted);
    line-height: 1.4;
  }